cip
Forum Replies Created
-
Forum: Plugins
In reply to: [Enhanced Category Pages] Custom taxonomy not workingHi Luigi!
Indeed we offer premium paid support. If you were interested, drop us an email at [email protected] to discuss details.
Cheers,
CiprianHi ggglyke!
I am glad that’s all sorted now.
It would mean a lot to us if you could also rate the plugin so others could know about it’s usefulness :). Just share your experience so others could benefit.
Cheers!
Hi abhibaranwal!
I am glad that’s all sorted now.
It would mean a lot to us if you could also rate the plugin so others could know about it’s usefulness :). Just share your experience so others could benefit.
Cheers!
Forum: Plugins
In reply to: [Enhanced Category Pages] Fatal Error messageHi!
I shall investigate the matter and get back ASAP with a solution.
Thank you for the heads up.
Resolved via FTP.
Forum: Plugins
In reply to: [Enhanced Category Pages] 2.2.1 Error ReportingHi everyone!
This has been solved from version 2.2.2.Hi!
I see the problem, the fastest way to solve this would be, if possible to send me some FTP and wp-admin credentials to take a look, identify and solve the issue. We have done this for other users and worked perfectly.
Please use our support email address: [email protected]
All the best!
Forum: Plugins
In reply to: [Enhanced Category Pages] fatal error when usedStarting with version 2.2.0 (released today) this issue is solved.
Forum: Plugins
In reply to: [Enhanced Category Pages] fatal error when usedWe have identified the problem to be an incompatibility with “All in One SEO Pack”. We are working on finding a solution to this issue.
Hi!
We understand the issue, but the option to directly link to the custom post that it is used behind the scenes to enhance categories it is not visible when selecting a link on a fresh WP install and no other plugins.
In order to help, please mention us:
- what version of WordPress are you using
- what version of Enhaned Category Pages plugin are you using
- what other plugins do you have installed
- if you had done any modifications to alter the plugin
We are here to solve any issue.
Best regards!
Forum: Plugins
In reply to: [Enhanced Category Pages] Move Content to below PostsHi!
We have solved the issue via FTP: https://www.adityastonex.com/category/marble/Forum: Plugins
In reply to: [Enhanced Category Pages] Move Content to below PostsCould you send via email the theme to take a look or send FTP access?
Please use this email address: [email protected]
Forum: Plugins
In reply to: [Enhanced Category Pages] Can't get page layout rightHi DaveWP196!
This should not happen at all, could you give us some context that we could understand the issue and solve the issue if there is something we could do?
Forum: Plugins
In reply to: [Enhanced Category Pages] Move Content to below PostsHi!
Thank you for your kind words and that you found the plugin useful. We would appreciate you spend 30s and show your gratitude by rating our plugin.
Please note that the link you have provided does not work.
I do not know what template your are using, but it probably contains a file category.php or archive.php that tackles the display of categories. Search for a call to
category_description()
in there. You should move it bellow the code that shows the posts.Forum: Plugins
In reply to: [Enhanced Category Pages] setup_ec_data and wordpress functionsHi!
Thank you for finding the plugin useful.
To answer your questions now, we are setting the current post, so all functions/template tags that are available in “the loop“. Here is the reference of WordPress Post tags: https://codex.www.ads-software.com/Template_Tags#Post_tags
So, once you call
setup_ec_data
the current post is set to the custom post type associated with the category/term. Then you can call template tags/functions such as:- the_ID()
- post_class()
- the_post_thumbnail
- the_content()
- the_title()
- the_meta()
- the_date()
- comments_template()
- etc.
To get the first two posts from current category:
$enhanced_category->setup_ec_data(); //optionally you can send a category ID $filter = array( 'category' => get_the_ID(), 'posts_per_page' => 2 ); $posts = get_posts($filter);
Also you can use
views/ecp_category_description.php
as a source of inspiration.I hope this answers your questions and would appreciate showing your gratitude by rating our plugin.
Cheers!