Clayton Chase
Forum Replies Created
-
Forum: Plugins
In reply to: [A-Z Listing] Tabbed ContentI’ll keep an eye out for the update!
Forum: Plugins
In reply to: [A-Z Listing] Tabbed ContentI figured it out for myself.
Just wrap the shortcode in a div and give it the id you want for your tabs.
<div id="az-tabs">[a-z-listing taxonomy="conditions" display="terms"]</div>
Then write your script:
//jquery-ui-tabs jQuery(document).ready(function($) { jQuery( "#az-tabs" ).tabs(); });
Now each letter will load as it’s own tab with jQuery.
- This reply was modified 6 years, 6 months ago by Clayton Chase.
Forum: Plugins
In reply to: [A-Z Listing] Add numbers in the list and changed letters sizePut it in the head of your website. In WordPress, these is a built-in Custom CSS section in the customizer.
Forum: Plugins
In reply to: [A-Z Listing] Add numbers in the list and changed letters sizeYou can change the size of the letters via CSS. As far as changing the listings to numbers one thing you could do is create a custom taxonomy named whatever you are using the numbers to display and then create a term for each number.
This would be the shortcode to display that:
[a-z-listing taxonomy="custom-taxonomy-name" display="terms"]
<style>
.letter-section h2 {
font-size: 20px;
color: #E97E44;
}</style>
- This reply was modified 6 years, 6 months ago by Clayton Chase.
Forum: Plugins
In reply to: [WordPress Popular Posts] Some Featured Thumbnails are not DisplayingI’ll give both of those a try! Thanks Hector!
Forum: Plugins
In reply to: [A-Z Listing] Load Posts Only Under Certain CategoriesI figured it out. Custom taxonomy ?? Thanks for the info and for developing such a solid plugin!
Forum: Plugins
In reply to: [A-Z Listing] Load Posts Only Under Certain CategoriesI see. Darn it. I know it’s pretty unusual to use this plugin like this but it’s the best I’ve been able to find. Any other suggestions?
Forum: Plugins
In reply to: [A-Z Listing] Load Posts Only Under Certain CategoriesSo if I want to show the name
Of the terms I select I just remove the display=terms and then I can list the terms via the terms= parameters?Forum: Plugins
In reply to: [A-Z Listing] Load Posts Only Under Certain CategoriesHaven’t heard anything back and just wanted to see if anyone has had luck doing this?
Forum: Plugins
In reply to: [WordPress Infinite Scroll - Ajax Load More] Load Related Posts?Hey @dcooney,
This is amazing! Thank you for adding it to your code samples as well!
Forum: Plugins
In reply to: [WordPress Popular Posts] Display popular posts of the current categoryThanks for the reply! I’ll give it a shot.
Forum: Plugins
In reply to: [A-Z Listing] Load Posts Only Under Certain CategoriesAlright, so I figured out I wasn’t using the right term slug so I got that fixed. Is it possible to only display the terms I specify in the shortcode? This is my shortcode: [a-z-listing post-type=”post” taxonomy=”post_tag” display=”terms” terms=”good,paris”] – I’d like to only show the “good” and “paris” tags but instead I am getting all the post tags.
I hope that makes sense.
URL: https://dev.kaolincreative.com/dev/#letter-WThanks for the help!
Forum: Plugins
In reply to: [A-Z Listing] Load Posts Only Under Certain CategoriesOkay, that makes sense. Thanks for the in-depth reply. So I’d like to sort by tag. I’m getting this error with this shortcode: [a-z-listing post-type=”post” taxonomy=”tag” display=”terms” terms=”good, paris”]
Here is a screenshot of the error: https://imgur.com/a/Wbw4JVV
https://dev.kaolincreative.com/dev/I’m sure I’m just missing something simple.
Thanks!Forum: Plugins
In reply to: [A-Z Listing] Load Posts Only Under Certain CategoriesThanks for responding!
I’m not too familiar with what a term in WordPress is. I’d like to show only certain categories. I’ll hopefully be using this for a conditions table. So if I can apply a certain category to a post (for example Antibiotics) then I can load all the specific categories I want to be displayed in the table. Here is the page which might help: https://dogsnatu.staging.wpengine.com/dev/
I read up on terms but still don’t understand how those work.