Hi -- I downloaded and installed the one mentioned on this page, at the third bullet point in the content area: http://www.tipsandtricks-hq.com/ecommerce/wp-estore-shortcodes-and-functions-reference-460
Is there another more updated version?
Hi -- I downloaded and installed the one mentioned on this page, at the third bullet point in the content area: http://www.tipsandtricks-hq.com/ecommerce/wp-estore-shortcodes-and-functions-reference-460
Is there another more updated version?
The one you used the correct one. Please post a link to the page where you are using it. Also please post the exact shortcode you have placed on the page (maybe there is a typo).
Do you have categories with products configured in eStore?
Here is the shortcode: [wp_eStore_list_categories count=true]
Here is the page: http://www.spinozarods.com/test-page/
Everything looks fine to me so it's really strange.
I will take a look at your site to see what is going on.
Is there a way to list these categories with counts alphabetically? Thanks!
You can tweak the extra eStore shortcodes plugin to order however you want.
Open the "shortcode_include.php" file and search for the following line:
$wp_eStore_cat_db = $wpdb->get_results("SELECT * FROM $cat_table_name ORDER BY cat_id ASC", OBJECT);
The categories are ordered by category ID but you should be able to change it to something like the following to sort it by category name:
$wp_eStore_cat_db = $wpdb->get_results("SELECT * FROM $cat_table_name ORDER BY cat_name ASC", OBJECT);Is it possible to list the categories alphabetical in the ADMIN view in WORDPRESS? I have many categories and it's hard to find as I think they're listed by id number instead of title.
thanks!
I added an option to sort the category list by category name. Please get a new build of the plugin from here:
http://support.tipsandtricks-hq.com/update-request
You will see a clickable triangle icon next to the "Category Name" which will let you sort the list.
Fantastic! You're awesome and so quick too!
It would also be very very helpful to have a similar way of sorting from the Manage Products window so that when I'm assigning categories, I can see them in alphabetical order. Right now it's a mess.
You must log in to post.