maaw
Forum Replies Created
-
Forum: Plugins
In reply to: [Custom Post Type UI] Display “-” on the term of custom taxonomyOmg thx ! i did not noticed the “str_replace(“-“, ” “, ”
The first solution worked fine.
You save me ! ??
Thx so much !!
Forum: Plugins
In reply to: [Custom Post Type UI] Display “-” on the term of custom taxonomyHi Michael,
Thank you for your reply. And thanks so much for trying to help me even if it’s not tour business i really appreciate it.
Indeed my PHP skill is really limited and i took the code from here: https://www.ads-software.com/support/topic/display-2-different-custom-taxonomy-terms-on-single-product-page/
(the last code on the bottom of page) and modify it for my website.
There is my php code :
/////////////AFFICHE LA MARQUE AU DESSUS DU TITRE DANS PAGE PRODUIT/////////////////////// function display_single_product_taxonomy_terms() { global $post; $tax_terms = get_the_terms( $post->ID , array( 'les_marques' ) ); //for development, print the terms object if you want to see the full WP_Term Object //echo '<div>Here is the terms object for reference:</div>'; //echo ("<pre>".print_r($tax_terms,true)."</pre>"); // create the markup variables $marque_markup = ''; // init counters $marque_counter = 0; foreach ( $tax_terms as $tax_term ) { if( $tax_term->taxonomy == 'les_marques' ) { // this is a marque term; increment size counter $marque_counter++; // add to marque markup $marque_markup .= ($marque_counter > 1)? "; " : ""; $marque_markup .= '<a href="/les_marques/' . $tax_term->slug . '">' . str_replace("-", " ", $tax_term->slug) . '</a>'; } }; echo '<div class="single-product-taxonomy-terms">' . PHP_EOL; if ( $marque_counter > 0 ) { echo '<p>'. __("","") . $marque_markup . '</p>' . PHP_EOL; }; echo '</div>' . PHP_EOL; }; add_action( 'woocommerce_before_single_product_summary', 'display_single_product_taxonomy_terms', 101, 0 );
Thanks…
Forum: Plugins
In reply to: [Contact Form 7 - PayPal & Stripe Add-on] Multiply the priceOh great! Thx for your reply and you found a new customer ??
Hi,
Same for me i have wprocket for cache and Cloudflare but no object cache. So i ask the same question than Forest Skills ??
Thank you very much
- This reply was modified 4 years, 7 months ago by maaw.
Forum: Plugins
In reply to: [Customer Email Verification for WooCommerce] Some troubleHi,
All work fine now ??
Thanks for this great, must have and really clean plugin !
Forum: Plugins
In reply to: [Customer Email Verification for WooCommerce] Some troubleHi,
Thank you for your reply and support. No problem i understand.
I will make all the test when i’ll can and will come back to you.
Thanks again
Done ! ??
Yes exactly :/
I want especially use your plugin for logged in user because diffcult to find preloading cache for logged in user (there no personal files on the website).
So the solution is use preload resources
Thanks
- This reply was modified 4 years, 10 months ago by maaw.
Forum: Plugins
In reply to: [Super Page Cache] Dynamic purge??
Forum: Plugins
In reply to: [Super Page Cache] Dynamic purgeHI,
Thanks a lot i will try.
For Preload i mean even the manual one does not work at my side. But yes the automatic preload is a must use feature.
I will have a lot of connected customer that they just need to load fast all the common menu items. I have a lot of menu items (Megamenu) and all are common for all. Only Cart and My account need to stay dynamic. That’s why i try to cache too logged users.
Have a great days
Forum: Plugins
In reply to: [Super Page Cache] Dynamic purgeHi,
Yes i just installed it and tested it.
-For automatic purge product cache when changing stock number :
randomly it seems that the purge does not reach all related content. For exemple i have product who is related on two category and one category was purged but not the other one and sometimes it’s the single product page who’s not purged.-Preload : Seems still not work at my side (tested on two different website with all not must use plugin deactivate). Never preloaded and i waited more than 15 minutes.
-Cache for user logged in : no cache for logged user. Even “Bypass the cache for logged-in users” is off, Cache statut stay on “Expire”
Thank you very much !
Forum: Plugins
In reply to: [Super Page Cache] Dynamic purgeHI, i will install again your plugin and make some others test. I will give you feedback soon !
Thank you for your work !Forum: Plugins
In reply to: [Super Page Cache] Dynamic purgeHi Salvatore !
Really sorry for my delay !
I just tried but know the automatic purge does not work anymore at all anymore :/
If you need access to my staging website don’t hesitate.
Thank you for your concern !
Forum: Plugins
In reply to: [Super Page Cache] Dynamic purgeHI,
Thank you for let my trying the new features.
Automatic purge for single product page works good after product was purchased but not the loop page (who where appears status stock too).
And i think it’s better to triggering just the fact that the stock number has changed (or any others change) and not the fact that the product was purchased because when the admin change the stock number (or title) from dashboard the cache should be purge too and it’s more convenient. Then with that, purchased product and changing stock from admin should triggering the purge. What do you think ?
And preload cache does not work at all at my side (cache work correctly) :/
Thanks you very much
- This reply was modified 4 years, 10 months ago by maaw.
Forum: Plugins
In reply to: [Super Page Cache] Dynamic purgeHi,
Yes