theotheo
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Terms and conditions on checkout issueUnfortunately changing the theme to storefront didn’t fix the issue.
Forum: Plugins
In reply to: [WooCommerce] Terms and conditions on checkout issueHmm so weird then. I use a custom checkout template. While having a custom template it worked as you say by showing terms text on checkout. I didn’t touch anything and from one day to another it just started doing this.Check here, try buying the item to go to checkout check and see how terms text behaves when clicked. (*also remove the link i added once you have checked, thanks).
Forum: Plugins
In reply to: [Digital License Manager] Issue with test order. I can’t make the plugin workHello? Can you help?
Consider adding a feature where you can select which user roles can manage the plugin.
Thank you
Forum: Plugins
In reply to: [Advanced AJAX Product Filters] Layout shift from active filters filterAs you saw i eliminated the shift by adding an element(product sort by) in the same div so that it always takes the needed space making active filters appear without an issue but a slight flash. Though problem is still there on mobile devices where there is no space to do this trick. I will try eliminating the issue for mobile devices too as well as eliminating the flash and i will post my solution here if i achieve it.
Thank you again.
Forum: Plugins
In reply to: [Advanced AJAX Product Filters] Layout shift from active filters filterHmm in sidebar the rest of the filters would shift so still an issue. How about a solution where i can load the javascript responsible fast enough so that i don’t get the shift?
note: even when i disable my caching plugin wprocket it still happens
note2: Even when i enable option to always show active filters label even when it’s empty it shifts.Forum: Plugins
In reply to: [Advanced AJAX Product Filters] Layout shift from active filters filterWhat i mean by layout shift is not that the styles are not loaded in time…the styles are there but the div instead of being already loaded/displayed..it loads/displays after a moment which causes the div under it to shift too.
Check it out here to get a better understanding: [ redundant link removed ]
Select a filter and then reload the page.Thanks
- This reply was modified 2 years, 2 months ago by Jan Dembowski.
Yes it doesn’t work.
What i want is each attribute/taxonomy value/term to have its image and display it in content-single-product.php
- This reply was modified 2 years, 2 months ago by theotheo.
I use this function
function woo_new1_product_tab_content() { global $product; $tax = 'champions'; // your taxonomy name $terms = get_terms( $tax, ['hide_empty' => true] ); echo '<h4 class="widget-title">Champs</h4>'; foreach( $terms as $term ) { echo '<div class="taxo-text">' . $term->name . '</div>'; // display taxo text echo '<img src="' . get_taxonomy_image( $term_id ) . '">'; // display taxo image } }
It is actually possible by editing the place of this string
<?php do_action( 'woocommerce_thankyou', $order->get_id() ); ?>
in woocommerce’s thankyou.php file.Forum: Plugins
In reply to: [Advanced AJAX Product Filters] Wp rocket breaks plugin functionalityThat’s true, wp rocket combining javascript feauture caused the issue. Maybe you can make your filters work even when wp rocket combines your js as an improvement of course if it is possible.
Forum: Plugins
In reply to: [License Manager for WooCommerce] Rename “Your license key(s)”Would also like to request this feature, just letting you know!
Forum: Themes and Templates
In reply to: [GeneratePress] Dequeue parent theme certain css fileok…i don’t know what happens in my case.
Btw when you have a functions.php in the child theme is it overriding the parent functions.php or is parent still loaded?
Forum: Themes and Templates
In reply to: [GeneratePress] Dequeue parent theme certain css fileIt doesn’t work either way that’s why i tried dequeue script too.
Forum: Themes and Templates
In reply to: [GeneratePress] Dequeue parent theme certain css fileHello?