Select All, "Popular Post Category"

This topic contains 7 replies, has 3 voices, and was last updated by  Paolo 8 years, 6 months ago.

We have moved to a support ticketing system and our forums are now closed.

Open Support Ticket
  • Author
    Posts
  • #60268
    #60317

    Guust
    Moderator
    Post count: 29970

    “Select all” would be the same as a link to the Places or other Custom Post page.
    You can use the GD>GD Listings widget for that if you have more than one Custom Post Type.
    You can also add links in the menu using GD > design > navigation
    https://wpgeodirectory.com/docs/places-categories-and-listings/

    #60369

    Shane
    Buyer
    Post count: 149

    Many thanks.

    GD>GD Listings widget is exactly what I needed.

    A follow on question.
    I wish to edit the CSS for how icons and labels are displayed.
    In what file is GD Listings widget?
    I see the file “geodirectory_cpt_categories_widget.php” for the categories display, but not for listings.

    Any pointers would be a great help, thank you so much again.

    And while I am here, another question?

    How do I change the tab order on the profile pages?
    Currently Reviews is the default 1st Tab.
    I would like to change.

    Thanks again (again)

    #60389

    Paolo
    Site Admin
    Post count: 31206

    Hi Shane,

    if the changes you want to make are css only, you shouldn’t change anything in the core files (actually you should NEVER edit the core files or you will lose all your customizations after every update). TO edit css you should use a code inspector like firebug if you are using firefox or developer tools if using Chrome and than add your custom css to GeoDirectory >> design >> Scripts >> Custom css. This way your css changes are safe from updates. More info about this: https://wpgeodirectory.com/docs/customizing-your-style/

    If the 1st tab is Reviews, I guess you are using Whoop theme. In that case please follow this.

    https://wpgeodirectory.com/support/topic/possible-to-re-order-tabs-in-whoop/#post-55104

    Thanks

    #60431

    Shane
    Buyer
    Post count: 149

    Many thanks Paolo,

    Indeed I did create a child theme first, thank you for your concerns.

    I am well familiar with code inspector.

    Regarding CSS changes, here is my output:
    HTML Source

    
    
    <div class="gd-cpt-wrow" style="width:52px;height:52px;">
    <a href="http://www.fitloyal.com/facilities/" title="Facilities">
    <img src="http://fitloyal.com/wp-content/uploads/2015/11/Map-Icon-Facilities.png" />
    <div class="gd-cpt-name">Facilities</div>
    </a>
    </div>

    From Inspector:

    
    
    element.style {
        width: 52px;
        height: 52px;
    }
    www.mydomain.com/media="all" (index)
    .gd-cpt-widget-list .gd-cpt-wrow {
        position: relative;
        float: none;
        display: inline-block;
        overflow: hidden;
        margin: 3px;
        border: solid 1px #e1e1e1;
        text-align: center;
    }

    The styling appears to be dynamically set by the plugin rather than through a CSS file so this is why asking which file contains the output code.

    Regarding Tab Order, I found the article on rearranging about 10 minutes after I posted the question, however too much time elapsed to allow me to edit my query.

    Many thanks Again

    Shane

    #60477

    Paolo
    Site Admin
    Post count: 31206

    Hi,

    the only inline css is for width and height that you can override with the !important tag.

    
    
    .gd-cpt-widget-list .gd-cpt-wrow {
        width: 100px !important;
        height: 100px !important;
    }

    Thanks

    #60498

    Shane
    Buyer
    Post count: 149

    Many thanks.
    Worked a charm!

    #60569

    Paolo
    Site Admin
    Post count: 31206

    You are welcome 🙂

Viewing 8 posts - 1 through 8 (of 8 total)

We have moved to a support ticketing system and our forums are now closed.

Open Support Ticket