Dani Llewellyn
Forum Replies Created
-
Forum: Plugins
In reply to: [A-Z Listing] Authors by SurnameHi,
WordPress users are currently not listable with this plugin.
The header on the
/skindexpage has no content. You will need to contact colibri for help regarding the appropriate use and application of the header.Forum: Plugins
In reply to: [A-Z Listing] Letters display properly only to logged-in usersHi,
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.phpfile? Please copy and paste the lines so that transcription errors are avoided. Also, when writing your reply, please select the pasted code and click thecodeoption in the compose pane so that formatting doesn’t get mangled by the forum.Forum: Plugins
In reply to: [A-Z Listing] Issue with plugin – showing critical errorHi,
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.
Forum: Plugins
In reply to: [A-Z Listing] Font size for permalink entriesHi,
You can place the CSS in the theme customiser. Navigate to
wp-adminand find theAppearancemenu 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.Forum: Plugins
In reply to: [A-Z Listing] How to insert html code between letterHi,
To alter the output of the plugin you need to copy the template from the plugin’s
templatesdirectory/folder into your theme and modify to suit. The template is atwp-content/plugins/a-z-listing/templates/a-z-listing.phpand should be copied into your theme or child theme (a child theme is advised so that updates don’t erase your changes) atwp-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.Forum: Plugins
In reply to: [A-Z Listing] Shortcode variable to hide the A-Z (title) ?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.phpinto your theme or child theme (a child theme is recommended to prevent updates overwriting your changes) atwp-content/themes/your-theme/a-z-listing.phpand 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.txtwhich is also shown at https://wordpress.org/plugins/a-z-listing/.Forum: Plugins
In reply to: [A-Z Listing] Permalink Change is Breaking up the A-Z shortcodeHi,
The plugin uses the URL as provided by the WordPress function
get_the_permalink()for posts andget_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.Forum: Plugins
In reply to: [A-Z Listing] Hide Pages titeled with numbers from listingHi,
You will need to write some customised PHP code to achieve this goal. There is a filter called
a-z-listing-filter-itemsthat can be used somewhere like your theme’sfunctions.phpfile: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 ) ); } ); }Forum: Plugins
In reply to: [A-Z Listing] Font size for permalink entries@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.
Forum: Plugins
In reply to: [A-Z Listing] list by post categoryHi,
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"]Forum: Plugins
In reply to: [A-Z Listing] Terms in specific categoryHi,
I think you want the
parent-termattribute:[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
Forum: Plugins
In reply to: [A-Z Listing] A – Z not going to letterHi,
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.
Forum: Plugins
In reply to: [A-Z Listing] Index tab verticalYes, 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
Forum: Plugins
In reply to: [A-Z Listing] Hide categoriesHi,
You cannot hide categories in the manner that you describe. The only way to hide categories in the list is with the
exclude-termsattribute:`[a-z-listing display=”terms” taxonomy=”category” exclude-terms=”2,5,8″
]