echappee06
Forum Replies Created
-
Forum: Plugins
In reply to: [LiteSpeed Cache] Webp images loaded on non compatible browsersThank you !
Here is the report number : DYLWAQKL.If this can be related to an additional cache layer, then you should know that I always have to empty all cache entries (the last button from the toolbox menu) if I change a CSS file, otherwise the new file is not loaded if I just hit the “Purge all” button.
Hi,
Thank you for your help.
After clearing my whole browser cache, the error disappeared.
Problem solved ??Hi,
Even if I select “No” in “Send direct Mail”, the “Buyer Email Body for Bank Transfer” e-mail is sent, with the attachments.
And for the issue with the name and the email address, here are the images : https://imgur.com/a/XcOJKp4
I have this issue on 2 different websites.Forum: Plugins
In reply to: [Smart Slider 3] Block Youtube CookiesThank you ! Embedding videos with Vimeo seems to be a good option too, because it might not set cookies if the privacy enhanced mode is on.
Forum: Plugins
In reply to: [Smart Slider 3] Block Youtube CookiesThank you for your quick answer !
So as I understand, Youtube, even with the privacy enhanced mode, is not conform with the GDPR, because some cookies are still set without consent.
I think I will use a cookie blocker plugin. Is there one that can work with Smart Slider 3, so I can still use it to display Youtube videos (I thought about Borlabs Cookie plugin or Cookiebot) ?Same for me too !
Hi,
Thanks a lot for your help !
I enabled the error log file and found this :PHP Fatal error: Uncaught Error: Class 'MailPoet\Logging\LogHandler' not found in /wp-content/plugins/mailpoet/lib/Logging/LoggerFactory.php:65 Stack trace: #0 /wp-content/plugins/mailpoet/lib/Newsletter/Scheduler/PostNotificationScheduler.php(60): MailPoet\Logging\LoggerFactory->getLogger('post-notificati...') #1 /wp-includes/class-wp-hook.php(287): MailPoet\Newsletter\Scheduler\PostNotificationScheduler->transitionHook('normal', 'new', Object(WP_Post)) #2 /wp-includes/class-wp-hook.php(311): WP_Hook->apply_filters(NULL, Array) #3 /wp-includes/plugin.php(484): WP_Hook->do_action(Array) #4 /wp-includes/post.php(4902): do_action('transition_post...', 'normal', 'new', Object(WP_Post)) #5 /wp-includes/post.php(4209): wp_transition_post_status('normal', 'new', Object(WP_Post)) #6 /wp-content/plugins/secupress-pro/core in /wp-content/plugins/mailpoet/lib/Logging/LoggerFactory.php on line 65
Is it a compatibility issue with SecuPress ?
Forum: Plugins
In reply to: [iCalendrier] CSS file missingThank you for the quick fix !
Thanks for your answer.
I’m sorry, but I don’t understand what I need to do to display the buyer’s name as Recipient Name when someone buys a gift form himself.I managed to get the € symbol by changing the line 88 from receipt.php with :
$receipt->Cell(0,0,' '.wpgv_em($currency),0,1,'L',0);
I found some other bugs or improvements ideas :
– The amount format should be set in the parameters (for ex., in France, the amount should be 5,00 € and not 5.00 €). I edited the wpgv_price_format function to do it but I know this is not a good solution …
– When someone buys a gift card for himself, the {recipient_name} field doesn’t show in the email.
Ex : I put this in the email parameters : “La carte cadeau a bien été transmise par e-mail à : {recipient_name}”. but I get this in my email : “La carte cadeau a bien été transmise par e-mail à : .”Hi,
I only get an “€” symbol (but not the amount) if I put :
define(‘EURO’,chr(128));
on top of style1.php, style2.php and style3.php and then replace the line 90 of receipt.php with the following :
$receipt->Cell(0,0,' '.EURO.$wpgv_add_extra_charges,0,1,'L',0);
Is there any solution for the single quotes issue while waiting for the new update ?
- This reply was modified 4 years, 5 months ago by echappee06.
Forum: Plugins
In reply to: [Smart Slider 3] Block Vimeo CookiesHi Gabor,
Thank you very much ! It works perfectly.
- This reply was modified 5 years, 1 month ago by echappee06.
Thanks for your answer.
I wonder if it might be related to Woocommerce.
I am looking forward to testing the website with the new version of the plugin !Forum: Plugins
In reply to: [MetaSlider Lightbox] Use with premium themeI finally made it work with this code :
function metaslider_add_full_url_to_slides($attributes, $slide, $slider_id) { $thumbnail_id = ('attachment' === get_post_type($slide['id'])) ? $slide['id'] : get_post_thumbnail_id($slide['id']); if (empty($attributes['href'])) { $attributes['href'] = wp_get_attachment_url($thumbnail_id); $attributes['class'] = 'lightbox-gallery'; } return $attributes; } add_filter('metaslider_flex_slider_anchor_attributes', 'metaslider_add_full_url_to_slides', 10, 3);
Hope this will help somebody !
Forum: Plugins
In reply to: [MetaSlider Lightbox] Use with premium themeI would like to add a link to the slides so the lightbox could work.
I can send you a link in a private message if you want.