Simone

Forum Replies Created

Viewing 15 posts - 61 through 75 (of 2,874 total)
  • Author
    Posts
  • in reply to: My Dashboard layout: width #44445

    Simone
    Expired Member
    Post count: 3515

    You can put the widget Login box in GD Home Right section, if you want that to appear in the homepage,..or in the Details sidebar if you want to it toappear in the listing detail page..it depends on where you want it…if you pace it in Top section or Content, it will be wider because those are content area (in the center of the website)

    in reply to: Background Header Image Size (GDF) #44444

    Simone
    Expired Member
    Post count: 3515

    to be honest, in a dynamic-width website, an image would not be ok because if you expand/stretch the width of th window, the image could be not what you expect..it is good to use a pattern or something similar.
    You can, however, use the cover attribute, in css, as explained here
    http://www.w3schools.com/cssref/playit.asp?filename=playcss_background-size&preval=cover

    in reply to: Background Header Image Size (GDF) #44435

    Simone
    Expired Member
    Post count: 3515

    Hello, the GDF Modern uses a responsive (and so dynamic) width, so there isn’t a fixed resolution. The height is 147px (for the #inner-header id).

    On linux you can use Gimp as free image editor http://www.gimp.org/downloads/


    Simone
    Expired Member
    Post count: 3515

    YEs, I would either use multi categories or creating a custom field (with checkboxes)

    in reply to: My Dashboard layout: width #44432

    Simone
    Expired Member
    Post count: 3515

    Hello, have you placed the widget in the TOP section area rather than the Sidebar?


    Simone
    Expired Member
    Post count: 3515

    Hi Alex, this is not possible.
    Different CPTs cannot be “linked” between each other

    in reply to: Disable Add Listing Right Sidebar #44377

    Simone
    Expired Member
    Post count: 3515

    With the following you can achieve the full width for the add listing page, add the blocks in your functions.php

    
    
         remove_action('geodir_add_listing_sidebar', 'geodir_action_add_listing_sidebar', 10);
          add_filter('body_class', 'gd_cat_body_class');
          
          function gd_cat_body_class($classes) {
          
            global $post; if (geodir_is_page('add-listing') ) { $classes[] = 'add-listing';
          
                  return $classes;}  return $classes;
          
          }

    the code says, get rid to the sidebar and add a body class “add-listing” only for the add listing page, so once removed the sidebar, we will add the class in the style.css

    
    
    .add-listing #geodir_content {
        width: 100%;
    }

    *boom* here you go.

    Thanks to Paolo 🙂

    in reply to: Disable Add Listing Right Sidebar #44364

    Simone
    Expired Member
    Post count: 3515

    Hello, If you go to Geodirectory/Permalinks you will see that you can choose your own page for the add listing page. Then you can edit the page with your own template (e.g. full width), it depends on your theme..or you can create a new template by your own

    in reply to: Last Uploaded (and approved) Images #44362

    Simone
    Expired Member
    Post count: 3515

    I guess the plugin allows you to choice/exclude the ID of the image too..So you can exclude all the images you don’t want to be displayed.
    This plugin is just an example, I believe there are others.

    in reply to: newest update #44361

    Simone
    Expired Member
    Post count: 3515

    HI Darren, I can understand your frustration… I don’t know if you’re aware,but this tool ( Diffmerge https://sourcegear.com/diffmerge/downloads.php ) can be helpful when finding the difference between your “new” files and what you’ve done so far.

    in reply to: newest update #44341

    Simone
    Expired Member
    Post count: 3515

    Hi Darren, the geodir avada child theme had only a modified header, so you can still use the same customisations.

    in reply to: Minimum Length review #44339

    Simone
    Expired Member
    Post count: 3515

    It is a tested code, so if you’re pasting it in the right way (in the functions.php, inside your child theme’s folder), it must work 🙂

    You can test it here
    http://test.simonetambasco.com/gd/annunci/italy/calabria/catanzaro/device

    in reply to: Listing containing elements #44333

    Simone
    Expired Member
    Post count: 3515

    hmmm..maybe adding an HTML field would be ok? or a combination of more custom field (one for title one for image..)

    in reply to: Listing containing elements #44331

    Simone
    Expired Member
    Post count: 3515

    HI Maurizio, artworks would be images? In that case you could add custom fields with images..and they will appear as a tab or in the sidebar

    in reply to: Last Uploaded (and approved) Images #44330

    Simone
    Expired Member
    Post count: 3515

    HI, you can try some of the plugins such as https://wordpress.org/plugins/easy-image-display/

Viewing 15 posts - 61 through 75 (of 2,874 total)