Code

Discussion on WP Taxonomy Glossary

Discussion on WP Taxonomy Glossary

Cart 169 sales
Recently Updated

wpinstinct supports this item

Supported

This author's response time can be up to 1 business day.

102 comments found.

Hi there,

By mistake, I bought the wrong plugin (WP Glossary – Taxonomy Terms Glossary) from you.

I need your plugin ‘WP Glossary- Encyclopedia / Lexicon / Knowledge Base’ instead in order to create posts on my website!

Is there a way we can resolve this?

Thank you! Michel

Hi Michel,

Thank you for reaching out regarding my plugin. I’ll be happy to help you switch to the correct one.

You can request a refund for your current purchase using the following link: https://codecanyon.net/refund_requests/new

At the same time, you may go ahead and purchase the correct plugin, “WP Glossary – Encyclopedia / Lexicon / Knowledge Base.” Once I receive your refund request, I will promptly approve it so you can complete the switch without any issues.

If you need any assistance with installation or setup afterward, please feel free to let me know.

Kind regards, WP Instinct Team

presale question – between 1 “WP Glossary – Encyclopedia / Lexicon / Knowledge Base / Wiki / Dictionary” and 2 “WP Taxonomy Glossary” – which are the differences – why did you make the second – is it more complete – or very different

Hi there,

Thanks for your interest in this plugin. I would be happy to assist you.

These two plugins are completely different in term of functionality. “WP Glossary” plugin is related to posts where “WP Taxonomy Glossary” plugin is based on categories ( taxonomies ).

First plugin shows a list of the posts, and the second one shows the list of the categories. I hope it make the things clear to you now.

Thanks, WP Instinct Team

does this work with taxonomy for post types?

Hi there,

Thanks for your interest in this plugin. I would be happy to assist you.

Yes, this plugin works with the taxonomies very well. Basically this plugin allows one to show a list of all the terms/categories from a custom taxonomy on a page and then clicking on a term leads to the term details page followed by active theme.

Thanks, WP Instinct Team

I am having issues here:

https://netistlexicon.com/the-lexicon/

This part works great but if you click on a term it leads only to a blank page. I have the content populated and followed all the Documents.

Hi there,

Thanks for reaching out to me regarding this plugin. I would be happy to assist you.

Please provide me following details so that I can troubleshoot the reason and fix it for you:

1. CodeCanyon purchase code

2. A screenshot from CodeCanyon downloads screen showing its effective support date

3. Admin login details

4. FTP credentials

You can email these details at wpinstinct@gmail.com

Thanks, WP Instinct Team

hello sir before i get it its include Arabic and rtl thanks

Hi there,

Thanks for your interest in this plugin. I would be happy to assist you.

This plugin works well with Arabic and RTL. Still if you face any issue after you setup it, you can reach out to me at this email ID: wpinstinct@gmail.com and I will troubleshoot it for you.

Thanks, WP Instinct Team

Hello,

After installing the plugin I see that the interface is not the same as the tutorial. For example, I cannot set an external url up.

If you need a screenshot or something, let me know.

Alfredo

Hi there,

Thanks for reaching out to me regarding this plugin. I would be happy to help you.

Please provide me following details so that I can look further into it and get back to you:

1. CodeCanyon purchase code

2. A screenshot from CodeCanyon downloads page showing effective support date for this plugin

3. Your website URL

4. Admin URL and login details

5. FTP credentials

6. Steps by following which I can see the issue on my end

You can email these details in private at this email ID: wpinstinct@gmail.com

Thanks, WP Instinct Team

Hello, since this morning the wp taxonomy glossary plugin causes errors on my website (https://octaedro.com/), when I disconnect it they are solved. I use it mainly in these two URLs: https://octaedro.com/autores/ and https://octaedro.com/colecciones/

I have version 1.2 of the plugin, how can I add the access passwords securely so you can take a look? Thank you so much

Hi there,

Thanks for purchasing this plugin. I would be happy to help you.

Please provide me following details so that I can troubleshoot the reason and fix it for you:

1. Admin login details

2. FTP credentials

3. Steps/screenshots by following which I can see the issue on my end

You can email these details at wpinstinct@gmail.com

Thanks, WP Instinct Team

Can we use a collection of parent term/ category filter instead of alphabetical filter just like the main plugin “WP Glossary – Encyclopedia / Lexicon / Knowledge Base / Wiki / Dictionary” ?

Thanks. i just dropped a mail with screenshot.

any update please?

Hi there,

I have sent you a reply. I am typing the same here as well:

Looking at the screenshot, this is something not possible directly until there is some customization within it.

Currently, without any customization, you can show the categories as filters on top but in the bottom, it will show the posts list only.

If you want to go with the customization work, it will cost you some additional charges and also, in future you wouldn’t be able to update this plugin.

Thanks!

Hi, I’m trying to update sitemap each time we add glossary term. I’m trying to use get_the_post_permalink($post_id) or get_permalink($post) but the functions return guid instead of permalink. Here is sample of my code. Please guide me how to get glossary term permalink. Thank you. The function (write data to file) and add_action at the bottom of the function :

function handle_blog_post_for_sitemap($post_id, $post, $update) { $now = date_create()->format(‘Y-m-d H:i:s’); if ($post->post_type 'post') { //add_post_to_sitemap($post); file_put_contents("a_update_sitemap.txt", "---- NEW : " . $now . " ----------- \n", FILE_APPEND); file_put_contents("a_update_sitemap.txt", "POST title : " . $post->post_title . " \n", FILE_APPEND); file_put_contents("a_update_sitemap.txt", "POST date : " . $post->post_date . " \n", FILE_APPEND); file_put_contents("a_update_sitemap.txt", "POST date_modified : " . $post->post_modified . " \n", FILE_APPEND); file_put_contents("a_update_sitemap.txt", "POST url : " . get_permalink($post->ID) . " \n", FILE_APPEND); file_put_contents("a_update_sitemap.txt", "POST url : " . print_r($post, true) . " \n", FILE_APPEND); file_put_contents("a_update_sitemap.txt", "\n", FILE_APPEND); } if ($post->post_type ‘glossary’) { file_put_contents(“a_update_sitemap.txt”, “-- NEW : ” . $now . ” ----- \n”, FILE_APPEND); file_put_contents(“a_update_sitemap.txt”, “GLOSSARY title : ” . $post->post_title . ” \n”, FILE_APPEND); file_put_contents(“a_update_sitemap.txt”, “GLOSSARY date : ” . $post->post_date . ” \n”, FILE_APPEND); file_put_contents(“a_update_sitemap.txt”, “GLOSSARY date_modified : ” . $post->post_modified . ” \n”, FILE_APPEND); file_put_contents(“a_update_sitemap.txt”, “GLOSSARY url : ” . get_permalink($post->ID) . ” \n”, FILE_APPEND); file_put_contents(“a_update_sitemap.txt”, “POST Object : ” . print_r($post, true) . ” \n”, FILE_APPEND); file_put_contents(“a_update_sitemap.txt”, ”\n”, FILE_APPEND); } } add_action(‘wp_insert_post’, ‘handle_blog_post_for_sitemap’, 10, 2);

Hi there,

Thanks for reaching out to me regarding this plugin. I would be happy to assist you.

I don’t see a reason it should respond with guid instead of permalink until there is any custom code going on. Can you please provide me following details so that I can troubleshoot it on my side:

1. CodeCanyon purchase code for this plugin

2. Effective support date from CodeCanyon

3. Your website URL

4. Admin login details

5. FTP credentials

6. A few steps including some screenshots which can help me to see the issue on my end.

You can email these details at wpinstinct@gmail.com

Thanks, WP Instinct Team

Hola, las palabras que comienzan con una vocal acentuada (con tilde) aparecen en la lista como si fueran símbolos desconocidos, no en su letra correspondiente. El idioma es Español. Gracias.

Hi there,

Thanks for using this plugin. I would be happy to help you.

I would require following details in order to troubleshoot the reason and fix it:

1. The page URL where you have added the glossary index page

2. Website backend/admin login details

3. FTP credentials

4. A few screenshots/steps by following which I can see the error on my end also

5. CodeCanyon purchase code with effective support date for this plugin.

You can share these details at wpinstinct@gmail.com

Thanks, WP Instinct Team

Hi, i am interested in this plugin (WP taxonomy glossary). But i cannot call live preview… also website is not working…. Is this plugin still supported?

Hi there,

Thanks for your interest in this plugin. I would be happy to assist you.

Yes, this plugin is still supported. I am able to access the live preview on my end. Please try this direct URL for the live preview: http://wptg.wpinstinct.com/

If it doesn’t work for you, can you please share a screenshot for the error at wpinstinct@gmail.com

Thanks, WP Instinct Team

is it still working? i want to display all my tags to a pages. and tags will be listing a-z

Hi there,

Thanks for your interest in this plugin. I would be happy to assist you.

Yes, this plugin should work well for your requirements. You can give it a try and let me know if you face any issues.

Thanks, WP Instinct Team

I have already created many subpages and always entered them manually via a link on the main page.

Can I only use this page with your plugin, e.g. B. by tag, or do I now have to copy all pages into one post?

Hi there,

Thanks for purchasing this plugin. I would be happy to help you.

Please provide me following details so that I can troubleshoot the reason and guide you in the correct directions:

1. CodeCanyon purchase code

2. Your website URL

3. Admin/Backend login details

4. FTP credentials if possible

5. Explain me with a few screenshots/steps the exact issue you are facing. I don’t know what you mean from manual creating many pages and inserting those to a page using a link.

You can share these requested details at wpinstinct@gmail.com

Thanks, WP Instinct Team

Hello,

I have just purchased the wrong plug in. I wanted to purchase your other plug in WP Glossary – Encyclopedia / Lexicon / Knowledge Base / Wiki / Dictionary but I have instead bought WP Glossary – Encyclopedia / Lexicon / Knowledge Base / Wiki / Dictionary but I have instead bought the plug in WP Taxonomy Glossary.

Is there a way I can get a refund, so that I buy the other plugin.

Please let me know if able to do that.

Hi there,

Thanks for reaching out to me regarding my plugin. I would be happy to help you.

I have approved your refund request. You can purchase the correct one now.

Thanks, WP Instinct Team

Hello , need to ask 2 things : 1. How can i make a page like in the demo which , category and tag post (titles ) in the same page ? 2. İs it possible to put search box at the top of the page like in glossary plugin for taxonomies?

Hi there,

Thanks for purchasing this plugin. I would be happy to help you.

1. If I look at this page: http://wptg.wpinstinct.com/ it shows only post categories and not the tags. For this, I have used this shortcode:

[wptg id="{GLOSSARY_ID}"]

2. Not at the moment. I will plan to have this feature within this plugin also but wouldn’t promise until I release it.

Thanks, WP Instinct Team

Hi there,

Please contact me at wpinstinct@gmail.com if you still need any help with this.

Thanks, WP Instinct Team

How can I create a glossary of pages with a specific tag or category? For instance, I only want the pages with the category, “current cases” to show.

Hi there,

Thanks for purchasing this plugin. I would be happy to help you.

From your requirements, it seems you have purchased the wrong plugin. This plugin is about showing the glossary of taxonomy terms and not of posts/pages.

In case if you want to show a glossary of posts/pages, I would suggest you to purchase this plugin instead: https://codecanyon.net/item/wp-glossary-encyclopedia-lexicon-knowledge-base-wiki-dictionary/16101768

Please contact me at wpinstinct@gmail.com so that I can guide you in correct direction.

Thanks, WP Instinct Team

can i add filter for post author ?

Hi there,

Thanks for your interest in this plugin. I would be happy to assist you.

As the authors don’t fall under any custom post type or taxonomy, it would require a complete custom work in order to show authors glossary on a page.

Please contact me at wpinstinct@gmail.com if you want to discuss it further.

Thanks, WP Instinct Team

Hi, i want to know if with your plugin its possible to have a glossary with all my titles pages already published ? I dont want to use glossary terms

Perfect it works very well! Thanks

hi, I have a problem on mobile, it’s not responsive and the letters of the alphabet go way beyond the screen

Please provide me the page URL where you face this issue so that I can troubleshoot it and fix. You can share these details at wpinstinct@gmail.com

Thanks!

Hello, this is pre-sale question. I need it for WooCommerce brand attribute. It should list alphabetical brands added in the woocommerce attributes. This is the only taxonomy which I want to display. Is this possible? + is it possible to use search field in the same listing page? Simmilar to this page: https://www.farfetch.com/hr/designers/women

Hi there,

Please add following code snippet to your current active child theme based functions.php file and let me know if it helps or not:

function wptg_setting_taxonomies_args ( $args ) {
    if ( isset ( $args['public'] ) ) {
        unset ( $args['public'] );
    }

    return;
}
add_filter ( 'wtgm_setting_taxonomies_args', 'wptg_setting_taxonomies_args' );

I will wait for your feedback.

Thanks!

Thanks! Snippet helps!

Great! You are welcome.

Please leave a 5 star rating on CodeCanyon if you like my plugin and support.

by
by
by
by
by
by

Tell us what you think!

We'd like to ask you a few questions to help improve CodeCanyon.

Sure, take me to the survey