Dani Llewellyn
Forum Replies Created
-
Forum: Plugins
In reply to: [A-Z Listing] Single voice for Number Listing (0-9)I’m glad your problem is fixed by the new release 🙂 Sorry I didn’t get here to alert you about the new release promptly.
Forum: Plugins
In reply to: [A-Z Listing] Posts of a certain category typeI can’t see any reason for a blank listing to be returned. As the letters are unlinked then it seems that somehow the query against your database is returning an empty set of posts. Can you try your shortcode as below specifying the post-type of “post”, which I believe is the post-type your review posts are filed under:
[a-z-listing post-type="post" taxonomy="category" terms="horror-reviews"]Forum: Plugins
In reply to: [A-Z Listing] Need to show category under custom post typeHi,
The way you have the shortcode above will display:
- Posts of the type “employer”
- Who have a category of “staffing-profile”
However, if no employers have the category “staffing-profile” then it will display every employer and NOT an empty list. You must have at least one employer assigned the term to filter at all. This is a limitation of WordPress itself.
If you have assigned some employers the term “staffing-profile” then either my plugin has issues with hyphens or you might have the “slug” mis-typed. Can you double check that the term you want to filter-by has the slug “staffing-profile” and that it is in the taxonomy “category”. If you have staffing-profile in a different taxonomy, such as tags you will need to replace the word “category” with the correct taxonomy slug.
Forum: Plugins
In reply to: [A-Z Listing] Order by postnameThanks for the ideas, I’ll look to incorporate them, or a variant, in a future iteration.
I’m sorry I didn’t get to your query before you’d found a workaround that works for you. Good work on getting everything working! 😀
Forum: Plugins
In reply to: [A-Z Listing] Give me an example how to use itThe plugin cannot currently show only terms with a common parent term. For this I would recommend a taxonomy specifically to hold cancer types. You would then show the cancer types directly from the cancer-type taxonomy and also apply the category of “cancer”.
So you would have two taxonomies: Cancer-Type and Category
In the Category taxonomy you’d have a single term labelled “Cancer” which you apply to all cancers.
In the Cancer-type taxonomy you’d list each of the types of cancer and show this using the shortcode:
[a-z-listing taxonomy="cancer-type" display="terms"]Forum: Plugins
In reply to: [A-Z Listing] number listingYou got to it before I managed to let you know it was available 🙂
I’m glad it’s working for you!
Forum: Plugins
In reply to: [A-Z Listing] A-Z Listing second nameThat is certainly a strange behaviour. Can you show me the code you used in both cases? Hopefully it’s a simple fix, but I don’t seem to be able to reproduce the behaviour you describe.
Forum: Plugins
In reply to: [A-Z Listing] Additional Shortcode paramsHi, presently the plugin is set up to display children pages of a top-level page when:
– the post-type selected for display is “page” (this is set by default)
– the a-z-listing shortcode is on a child page of that top-level page
– the a-z-listing is NOT on a top-level page
– the children to be shown share the same top-level ancestor with the page upon which the shortcode is used.The way it currently works is a throw-back to the requirements I had when developing the initial functionality for a client site I haven’t developed a good plan to re-work it to be more friendly, without breaking sites already using it as is, yet.
- This reply was modified 8 years, 8 months ago by Dani Llewellyn.
- This reply was modified 8 years, 8 months ago by Dani Llewellyn.
Forum: Plugins
In reply to: [A-Z Listing] Posts of a certain category typeThe
termsattribute takes the slug rather than the title, so in your case it should behorror-reviews. I’m unsure why it would be returning a blank listing with those correctly set, however, so I might need to do some digging and replicating on my system.Forum: Plugins
In reply to: [A-Z Listing] Can’t edit page with widget activeThat sounds suspiciously like you’re missing the
mbstringor some other PHP module on your server, which my plugin depends upon (the usual suspect is mbstring). If I’m right then there should be a message in the server’s error_log which details why the page died.Forum: Plugins
In reply to: [A-Z Listing] number listingThis got wrapped-up in another issue which is taking me longer than I had hoped. I’m still working to get this fixed for you ASAP, however.
Forum: Plugins
In reply to: [A-Z Listing] Vehicle A-Z ListingHi,
The WordPress.org forum guidelines prohibit the discussion of jobs, payments, and direct access to other people’s sites. Therefore I cannot accept payment for helping you with this issue. I am willing to help as much as I can through these forums, though, without you paying a single penny 🙂
Forum: Plugins
In reply to: [A-Z Listing] Single voice for Number Listing (0-9)Hi,
Currently this is only possible by using the filter provided by the plugin to add the numbers, and a custom template which replaces the call
$a_z_listing->the_letter_title();but this requires knowledge of PHP programming. Specifically the filter:a-z-listing-alphabetto add the numbers as a single group, and in the template replacing the call to$a_z_listing->the_letter_title()with something like:$title = $a_z_listing->get_the_letter_title(); if ( '0' === $title ) { echo '0-9'; } else { echo esc_html( $title ); }I am working on an update to the shortcode that will include this functionality out of the box, without any additional programming by the site-owner. I still need to test it more before I’m happy to release it, but please know that it is in the pipeline :-).
Forum: Plugins
In reply to: [A-Z Listing] number listingThanks for the followup, the extra diagnostics you did to narrow down the problem really helped me see the issue. I’ll try to get a fixed version out for you sometime tomorrow (Sunday).
Forum: Plugins
In reply to: [A-Z Listing] number listingAre you getting the listing just without numbers or are you not getting the listing at all? Are there any errors listed in your web server’s error log file from around the time that you request the page which contains the shortcode? (If you are using a web hosting service then your host’s control panel should provide a logs facility to view or download the error log)
As a debugging test could you try
numbers="before"to see if the numbers are broken entirely on your site or just theaftervariant.