Julien
Forum Replies Created
-
Hi,
The issue is appearing again and again.. I have to delete elementor’s cache every day to make it disappear, so that’s obviously not a long term solution .. could you please check what’s going on ?
[ redundant link deleted ]
ThanksHi,
Sorry I didn’t see your previous answer.
Looks like it’s a cache issue because it went back normal. However, i’ll let you know if the issue appears again.Thank you π
Hi,
The issue is apperaing again today. Can you please check further ? It’s a conflict between your plugin abd elementor native sliders.
[ redundant link deleted ]Thanks and regards,
JulienHi,
Thank you for your answer. For some reasons I don’t get, sometimes it goes back to normal and sometimes it breaks.I’ll let you know when it happens again so you can investigate further.
Best regards,
JulienThe support has solved this issue that was due to WP Rocket
Hi,
Thank you for your answer. I’ve just opened a ticket :ID isΒ #94120
Best regards,Julien
Forum: Plugins
In reply to: [WooCommerce PayPal Payments] Issue Paypal Pay Later / Mondial RelayHi,
Thanks for your answer. I’ve opened a ticket on the link you provided.
Have a good day,Julien
Found out the solution : I’ve just seen a settings to select specific filters taxonomy.
Forum: Plugins
In reply to: [Ultimate Addons for Elementor] Change menu hamburger iconOh thank you!
Forum: Plugins
In reply to: [WP Store Locator] Line break between adressesHi,
That’s perfect! Thank you for your fast help πForum: Plugins
In reply to: [WooCommerce PayPal Payments] Add Pyapl logo in chckoutPerfect ! Thank you so much for your fast help.
Have a nice day.Best regards
Julien
Forum: Plugins
In reply to: [YITH WooCommerce Product Slider Carousel] Display issue with sliderThank you so much Alberto for your fast answer & help!
Have a great day.
Best regardsJulien
Thanks for your answer.
One last thing, about the checkout button, how can I add a border-radius to get the same button shapes that I have on my website please ?Never mind, I’ve used another plugin that works fine.
Hi,
Thanks. I’ve tried to use this code to add a negative margin top to the body.
Because there’s a huge gap between the main title and the first content image, but that won’t work.
Can you please help me ? Thanks/* * The woo_ca_email_template_table_style filter allows you to change the default styles of * product table & product image provided by WooCommerce Cart Abandonment Recovery plugin. * */ add_filter( ‘woo_ca_email_template_table_style’, ‘wcar_product_table_styles’, 10 ); function wcar_product_table_styles( $style ){ $style[‘product_image’][‘style’] = ‘height: 42px; width: 42px;’; $style[‘table’][‘style’] = ‘color: #636363; border: 1px solid #e5e5e5; width:250px;margin-top: -90px;’; $style[‘table’][‘attribute’] = ‘align=”center” ‘; return $style; }