Forum Replies Created

Viewing 15 replies - 61 through 75 (of 927 total)
  • Plugin Author Dani Llewellyn

    (@diddledani)

    Hi,

    WordPress users are currently not listable with this plugin.

    Plugin Author Dani Llewellyn

    (@diddledani)

    The header on the /skindex page has no content. You will need to contact colibri for help regarding the appropriate use and application of the header.

    Plugin Author Dani Llewellyn

    (@diddledani)

    Hi,

    Your site isn’t sending the stylesheet at all. This doesn’t look to be a cache issue because I bypassed WPFC when testing. Can you show me what you wrote in your functions.php file? Please copy and paste the lines so that transcription errors are avoided. Also, when writing your reply, please select the pasted code and click the code option in the compose pane so that formatting doesn’t get mangled by the forum.

    Plugin Author Dani Llewellyn

    (@diddledani)

    Hi,

    Unfortunately the plugin is quite naive in the way it builds the listing due to being a shortcode. This means that the more posts you are displaying in the listing the greater the likelihood of running into either time or memory limits of your server. It is difficult to predict with any accuracy wether a particular listing will be a problem without actually trying it. This is due to different servers and sites having wildly disparate data and hardware profiles.

    Plugin Author Dani Llewellyn

    (@diddledani)

    Hi,

    You can place the CSS in the theme customiser. Navigate to wp-admin and find the Appearance menu item on the left. Hover over that item and in the submenu choose “Customise”. The page will reload into the theme customiser where you need to select the “Additional CSS” item. The screen show update to offer a text area input box that you can paste the CSS and finally click the “Publish” button at the top.

    Plugin Author Dani Llewellyn

    (@diddledani)

    Hi,

    To alter the output of the plugin you need to copy the template from the plugin’s templates directory/folder into your theme and modify to suit. The template is at wp-content/plugins/a-z-listing/templates/a-z-listing.php and should be copied into your theme or child theme (a child theme is advised so that updates don’t erase your changes) at wp-content/themes/your-theme/a-z-listing.php. Editing the template requires knowledge of how WordPress theming works as the plugin’s template is designed to be very similar.

    Plugin Author Dani Llewellyn

    (@diddledani)

    Hi,

    The only way to hide the letter titles is to copy the template from wp-content/plugins/a-z-listing/templates/a-z-listing.example.php into your theme or child theme (a child theme is recommended to prevent updates overwriting your changes) at wp-content/themes/your-theme/a-z-listing.php and edit it to remove the bits that output the title.

    However, doing this will mean that the links at the top of the list won’t work. I recommend you look into using a different plugin, because this one is not really designed to do what you desire.

    The full documentation on the available shortcake options is in the readme.txt which is also shown at https://wordpress.org/plugins/a-z-listing/.

    Plugin Author Dani Llewellyn

    (@diddledani)

    Hi,

    The plugin uses the URL as provided by the WordPress function get_the_permalink() for posts and get_term_link() for terms. These functions should return the correct URL when you update the permalink structure of your site. The listing should therefore show the correct link at the time it is generated. If you have any caching mechanisms on your site then these will need to be cleared for the listing to be updated and show the correct links.

    Plugin Author Dani Llewellyn

    (@diddledani)

    Hi,

    You will need to write some customised PHP code to achieve this goal. There is a filter called a-z-listing-filter-items that can be used somewhere like your theme’s functions.php file:

    add_filter( 'a-z-listing-filter-items', 'filter_a_z_listing_numbered_posts', 10, 3 );
    function filter_a_z_listing_numbered_posts( $items, $this->type, (array) $query ) {
        return array_filter( $items, function( $item ) {
            // negate because we want all the posts that do *not* start with a number
            ! in_array( mb_substr( $item->post_title, 0, 1, 'UTF-8' ), range( 0, 9 ) );
        } );
    }
    Plugin Author Dani Llewellyn

    (@diddledani)

    @jedijoe the WordPress.org forum rules state that you should not join somebody elseโ€™s thread with your own issue. Please start your own thread.

    Plugin Author Dani Llewellyn

    (@diddledani)

    Hi,

    I think this will do the job that you want to achieve (you nearly got it right first try ๐Ÿ™‚ ):

    [a-z-listing display="posts" taxonomy="category" terms="legislacao"]
    
    Plugin Author Dani Llewellyn

    (@diddledani)

    Hi,

    I think you want the parent-term attribute:

    [a-z-listing display="terms" taxonomy="pa_marca" parent-term="5"]
    

    You need to supply the term id to parent-term, not the slug.

    • This reply was modified 4 years, 10 months ago by Dani Llewellyn. Reason: clarify parent-term takes an ID
    Plugin Author Dani Llewellyn

    (@diddledani)

    Hi,

    This is due to javascript that is included in your Divi theme. There is nothing I can do to override Divi’s interception of native browser features disabling functionality that should be available in all browsers.

    Plugin Author Dani Llewellyn

    (@diddledani)

    Yes, you can change font and such with CSS. This can be placed into the “Additional CSS” box when you navigate to themes -> customize in the admin area. You want the following selectors:

    .az-letters > ul.az-links > li,
    .a-z-listing-widget .az-letters > ul.az-links > li,
    .a-z-listing-widget.widget .az-letters > ul.az-links > li {
        /* This selects the letters along the top of the page */
    }
    
    .az-letters > ul.az-links > li a,
    .a-z-listing-widget .az-letters > ul.az-links > li a,
    .a-z-listing-widget.widget .az-letters > ul.az-links > li a {
        /* This selects the letters if they are links - i.e. there are entries for the letter
           (if you want to remove the underline, you need to use this selector) */
    }
    
    .letter-section h2.letter-title {
        /* This is the heading of each letter indicating the list of items for the letter */
    }
    
    .letter-section ul.columns {
        /* This is the list of items for each letter */
    }
    
    .letter-section ul.columns > li a {
        /* This is the link to each item's page in the list of items
           (if you want to remove the underline, you need to use this selector) */
    }
    • This reply was modified 4 years, 10 months ago by Dani Llewellyn. Reason: remove immediate descender in items' link selector
    Plugin Author Dani Llewellyn

    (@diddledani)

    Hi,

    You cannot hide categories in the manner that you describe. The only way to hide categories in the list is with the exclude-terms attribute:

    `[a-z-listing display=”terms” taxonomy=”category” exclude-terms=”2,5,8″
    ]

Viewing 15 replies - 61 through 75 (of 927 total)