thomasmi87
Forum Replies Created
-
Forum: Plugins
In reply to: [Easy Table of Contents] Highlight TOC titles when used as shortcodeHej Steven,
Thank you for your reply!
It did not seem to work. However i made i work using boostrap bootstrap spyscroll and adding “nav” class to the ul containing the toc list.
However, i needed to to it by editing the class.post.php, as i could not find a filter to edit:
$html = '<ul class="ez-toc-list ez-toc-list-level-1">' . $html . '</ul>';
Could this possibly be added in an update, so updates dont overwrite the extra class?
Thanks!
Forum: Plugins
In reply to: [Easy Table of Contents] jQuery error on WP 4.5 and jQuery version 1.11.2Hi Steven,
I have looked more into this, and it turns out that we for some reason got leftover code from the plugin in one of our template-files.
When removing this code, everything works fine.
Thank you for your time!
Forum: Plugins
In reply to: [Easy Table of Contents] jQuery error on WP 4.5 and jQuery version 1.11.2Hi Steven,
Ah i just saw that i wrote wp 4.5…we are using 5.4…sorry.
Still the same jquery version.
When updating to 2. 0.9 we get the Error as described.
Any ideas?
I will try disabeling smooth scrool.
Forum: Plugins
In reply to: [Easy Table of Contents] jQuery error on WP 4.5 and jQuery version 1.11.2Hi Steven,
Thanks for the fast reply.
What jQuery version would you recommend for ezTOC 2.0.9? We should be able to change easily.
Thanks!
Forum: Plugins
In reply to: [WooCommerce] Sort list of products by product attributeHI @anphira,
Thank you for your reply.
I already tried to change it to order by meta_value, but unfirtunatly it seems like woocommerce attributes are not considered a meta_value, so it does not seem to work.
this is what i have tried:
$args = array( 'posts_per_page' => $atts['number_of_posts'], 'offset' => 0, 'post_status' => 'publish', 'post_type' => 'product', 'product_cat' => $atts['category'], 'order' => 'ASC', 'orderby' => $atts['meta_value'], 'meta_key' => $atts['pa_stoerrelse'] );
Forum: Fixing WordPress
In reply to: Sort list of posts/products by product attributeHi Josh,
Thanks alot!
I will give it a try and let you know if I get it to work ??