Dani Llewellyn
Forum Replies Created
-
Forum: Plugins
In reply to: [A-Z Listing] URGENT! NEW FEATURE NEEDED – A-Z by posts with ThumbnailsThis is a side-effect of my attempting to save a bit of memory and generation time. I purposely don’t load the full post object, so the thumbnail isn’t in memory.
Try with the following instead:
<?php $post = $a_z_query->get_the_item_object( 'I understand the issues!' ); if ( has_post_thumbnail( $post->ID ) ) : the_post_thumbnail( 'thumbnail' ); endif; ?>The text
I understand the issues!must be exactly that, to confirm that you do understand that on a large collection of posts you might hit slowness or memory usage problems.Forum: Plugins
In reply to: [A-Z Listing] After update, the field ACF not appear in pageThis is a side-effect of my attempting to save a bit of memory and generation time. I purposely don’t load the full post object, so the thumbnail isn’t in memory.
Try with the following instead:
<?php $post = $a_z_query->get_the_item_object( 'I understand the issues!' ); if ( has_post_thumbnail( $post->ID ) ) : the_post_thumbnail( 'thumbnail' ); endif; ?>The text
I understand the issues!must be exactly that, to confirm that you do understand that on a large collection of posts you might hit slowness or memory usage problems.Forum: Plugins
In reply to: [A-Z Listing] Multiple titles are on one lineoops, you’re right, that’s a bug 🙂
I’ll fix it and release a new version today.. Thanks for letting me know.
Forum: Plugins
In reply to: [A-Z Listing] Fatal error in wordpressYou might need to make sure that the “target page” is selected in the widget admin. It is possible that the update has forgotten about it.
Otherwise, I’ve screwed up and didn’t get that feature working properly, in which case I’ll try to get it fixed asap.
Forum: Reviews
In reply to: [A-Z Listing] Great plugin and Excellent support from the developerThank you for the glowing review 🙂
If you need any more help in the future, please come back and I’ll try my best to assist.
Forum: Plugins
In reply to: [A-Z Listing] Can this plugin organize tags?Awesome 🙂
Forum: Plugins
In reply to: [A-Z Listing] Can this plugin organize tags?Hi,
I bring good news 🙂 Try the following:
[a-z-listing display="terms" taxonomy="post_tag"]Forum: Plugins
In reply to: [A-Z Listing] How to disable back to top (with shortcode)?I’m glad you got it going 🙂
I need to add a configuration setting to allow removing or hiding it in a future release.
Forum: Plugins
In reply to: [A-Z Listing] Top Buttons issueThanks for the prod, @commandrea 🙂
it looks like I mistyped a name. 2.0.3 release incoming (I seem to have failed at releasing this major version 2.0 :-p)
- This reply was modified 7 years, 8 months ago by Dani Llewellyn. Reason: Fix commandrea's name
Forum: Plugins
In reply to: [A-Z Listing] Top Buttons issueThe styling might be caught up in your caching plugin. Try clearing your caching plugin’s styles cache, if it allows that granularity, or the whole cache if not.
Forum: Plugins
In reply to: [A-Z Listing] Top Buttons issueHopefully, if I’ve not broken it, you can revert to single-column by copying a file from the plugin at
templates/a-z-listing.example.phpinto your theme and renaming it toa-z-listing.php. It need to be in the top-level of your theme, so for your site:copy
./wp-content/plugins/a-z-listing/templates/a-z-listing.example.php
to./wp-content/themes/colormag-pro/a-z-listing.phpForum: Plugins
In reply to: [A-Z Listing] Top Buttons issueI’m just rolling a .2 with those changes 🙂
Thanks for guinea-pigging :-p
Forum: Plugins
In reply to: [A-Z Listing] Top Buttons issueOk, I think I’ve got it…
Try replacing that css I just had you try with:
.letter-section ul, .letter-section ul li { padding: 0; } .letter-section ul.columns li { display: inline-block; } .letter-section ul.columns.max-0-columns, .letter-section ul.columns.max-1-columns { column-count: 1; max-width: 10.6em; }- This reply was modified 7 years, 8 months ago by Dani Llewellyn. Reason: got the css wrong
Forum: Plugins
In reply to: [A-Z Listing] Top Buttons issueHi,
Looks like I might have gotten some of the styling wrong. The multi-column is now default, but there’s a glitch which you’ve highlighted.
Can you try adding this css (e.g. via the theme customizer) to see if it fixes the layout to be more-reasonable?
.letter-section ul.columns li { display: inline-block; } .letter-section ul.columns.max-1-columns { column-count: 1; max-width: 10em; }Forum: Plugins
In reply to: [A-Z Listing] Woocommerce SupportThis can now be done in version 2.0.1 using
parent-term:[a-z-listing display="terms" taxonomy="product_cat" parent-term="5"]parent-termis a single numeric term-ID.