websupporter
Forum Replies Created
-
Thanks a lot ?? You are welcome.
Thanks a lot ??
If you don’t mind, I am always happy about nice reviews ??
Hi rivkasa,
how embarrassing. Of course, this is a feature in the free version, I completly forgot. I am very sorry.Yes, actually this is a bug. I fixed it in the 1.04 version. It will be available in about 30 minutes i guess.
Thanks for pointing me to this problem and sorry for the strange reply before ??
Hi rivkasa,
thanks for the kind words ??Since you are using the premium plugin, please contact me through CodeCanyon: https://codecanyon.net/user/websupporter
Thank you ??
Forum: Plugins
In reply to: [Filter Custom Fields & Taxonomies Light] Template pageHi mjoret,
the question is, how do you produce usually the URL to your product? When you use #the_permalink#, my plugin is simply using get_permalink() in order to link to the post.If I understand you correctly, you are using another URL, in order to advise your theme to display another template? In this case, you have to explain my plugin how the link shall be constructed.
You can use PHP in the template editor. So you can explain here in plain PHP, how the link shall be constructed instead of relying on #the_permalink#.
What I mean: At the position where you write #the_permalink# you use PHP instead:
<?php the_way_you_construct_the_link(); ?>
I hope, this helps you.
Forum: Plugins
In reply to: [Filter Custom Fields & Taxonomies Light] Turn off AJAX functionallityHi yanakieff,
unfortunatly this is not possible in the free version. With the PRO version, you could place a widget in the sidebar in order to achieve this. So, if you could place a sidebar in the header of the homepage, you could place the widget of the PRO-version in there.In this video, I demonstrate, how you can configure the widget: https://www.youtube.com/watch?v=7rYIW1dnaR0
All the best,
David.Hi norikun,
so you are actually using the PRO version ?? Thanks!Unfortunatly the widget runs only via POST, so it needs to reload the whole page. Only the shortcode is using Ajax.
Sorry :/
————————————————————-
Short note:
To not confuse the users of the free version about the abilities of the light version, please restrict the www.ads-software.com-forum to questions regarding the light version and the CodeCanyon-forum for the pro version.Forum: Reviews
In reply to: [Filter Custom Fields & Taxonomies Light] works great!Thanks. I really appreciate this ??
Hi norikun,
you can use PHP in the template file editor. So lets say, the URL to your image is in a custom field called ‘image’:<?php $src = get_post_meta( get_the_ID(), 'image', true ); ?> <img src="<?php echo $src; ?>" />
More on this topic can be found in the FAQ-section with the Tag PHP.
All the best,
David.Forum: Plugins
In reply to: [Filter Custom Fields & Taxonomies Light] no result display..You’re welcome ??
Forum: Plugins
In reply to: [Filter Custom Fields & Taxonomies Light] Not showing child termsHi rahulvijayan900,
usually child terms should show up to, when posts are attached to them. Are posts attached to the child terms?Forum: Plugins
In reply to: [Filter Custom Fields & Taxonomies Light] no result display..It looks like your theme is missing important action hooks, which are necessary for WordPress to load the scripts. Do you use in your header.php
wp_head()
andwp_footer()
in your footer.php? It looks like they are missing.More information on Theme development can be found here: https://codex.www.ads-software.com/Theme_Development
I hope this helps you ??
Forum: Plugins
In reply to: [Filter Custom Fields & Taxonomies Light] How to change order of resultsIf you just need to change the order by (and not develop a complete orderby-field), take a look into the filter
sf-filter-args
.You could consider something like this:
<?php add_filter( 'sf-filter-args', 'my_orderby' ); function my_orderby( $args ){ //More information on order by: https://codex.www.ads-software.com/Class_Reference/WP_Query#Order_.26_Orderby_Parameters $args['order'] = 'asc'; $args['orderby'] = 'title'; return $args; } ?>
If you plan to get the PRO version, please let me know. The recent version has actually a small bug in the orderby, which is fixed in my dev version, but not uploaded yet.
All the best,
David.Forum: Plugins
In reply to: [Filter Custom Fields & Taxonomies Light] How to change order of resultsHi greedsy,
you might want to have a look into the PRO version
https://codecanyon.net/item/filter-custom-fields-taxonomies/6964843?ref=websupporterIn this PRO version an order-by field is included.
Hi teng.long,
right now, this is unfortunatly not possible :/