maaw
Forum Replies Created
-
Forum: Plugins
In reply to: [Easy Hotel - Powerful Hotel Booking] Several bugs system when bookingHi thank you for your quick reply and sorry for my late one.
Okay, first i’ll do the update and then testing again for doing a ticket on your website support.
Thank you again !Hi !
Thank you so much looks like working great now without any custom css ! And thanks a lot for your plugin i’ll convince my customer to take the premium pack ! I continue to setup it. Once i finish the setup i’ll give you 5 stars everywhere !
Best regards,
RogerThanks a lot for your quick reply and this effort to take it into account.
If it’s working well i’ll probably buy the addons !
Best regards
RogerHello,
Thank you a lot for your quick feedback !
I am still working on it searching solution and i did to force some css on my custom css theme field :
CSS Kanaya
/* Centrage .row AUTO via container Bootstrap / .row, [class="row"] {
margin-left: auto !important;
margin-right: auto !important;
justify-content: center !important; /* Contenu centré dans row */
}
/* Padding symétrique = centrage parfait */
.header_2 .row {
padding-left: 0px !important;
padding-right: 0px !important;
max-width: calc(100% - 0px) !important;
}
/* Responsive : adapte à viewport */
@media (min-width: 1200px) {
.row {
padding-left: 0rem !important;
padding-right: 0rem !important;
}
}
@media (max-width: 768px) {
.row {
padding-left: 0rem !important;
padding-right: 0rem !important;
}
}
/* Ton code + cleanup / .row, [class="row"] {
margin-left: auto !important;
margin-right: auto !important;
justify-content: center !important;
padding-left: 0 !important;
padding-right: 0 !important;
max-width: 100% !important; /* Simplifié */
}
/* Spécifique header si besoin / .header_2 .row { / Déjà couvert ci-dessus / } / Supprime translate3d du slider/carrousel / [class="swiper"] *,
.swiper-slide,
.carousel-item,
.element-with-transform {
transform: none !important;
transform: translate3d(0, 0, 0) !important;
}
/* Si c'est un slider spécifique Easy Hotel / .easy-hotel .swiper-wrapper, [class="ehb"] [style*="translate3d"] {
transform: none !important;
}But this is not perfect, still have some element displaced like the gallery room inside the booking page détails :https://www.kanaya.maaw.fr/eshb_accomodation/accomodation-2/?nonce=a40bd16965&start_date&end_date&adult_quantity&children_quantity
I use this theme : https://xtratheme.com/
And this template : https://xtratheme.com/elementor/architect-3/
If you need i can delete temporarily that css.
Thank you !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://ww.wp.xz.cn/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 👍
Forum: Plugins
In reply to: [Query Monitor] External object cache not in use – Now what?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 5 years, 9 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 5 years, 12 months ago by maaw.
😀
HI,
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
Hi,
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 !