Dreampixdev
Forum Replies Created
-
Forum: Plugins
In reply to: [3CX Free Live Chat, Calls & WhatsApp] Chat translationAs I told you, I already navigated in wp-live-chat-support/languages/.
I checked the document wplivechat-fr_FR.po, “Type here…” is translated in french, I found also “type” and “here” separately, “type” wasn’t translated so I did this, “here” was. I saved again, uploaded via FTP .po and .mo updated… And nothing changes !Forum: Plugins
In reply to: [3CX Free Live Chat, Calls & WhatsApp] Chat translationError messages are not translated either (“Please enter your email address”, etc)
Try Bookly, very good plugin. I think you can synchronize with Google.
Don’t buy this plugin. Many problems and poor support.
Forum: Plugins
In reply to: [The Awesome Designer] Syntax errorThat’s right ??
Perfect support !Forum: Plugins
In reply to: [The Awesome Designer] Syntax errorSorry for the delay, but it’s not fixed… I’ve other error messages…
@hypno_guru, not yet.
Interesting ??
Thank you very much !
Forum: Fixing WordPress
In reply to: Remove product images on some single product pageThis is my code (it can be useful)
add_filter( 'woocommerce_single_product_image_html', 'filter_woocommerce_cpproduct_image_html', 10, 2 ); function filter_woocommerce_cpproduct_image_html($gallery, $id){ $product=wc_get_product($id); if($product->is_type('composite')){ $gallery=''; } return $gallery; }
Thank you bcworkz.
Perfect, thank you !
Or if it is not possible, maybe in another mail…?
Forum: Fixing WordPress
In reply to: Remove product images on some single product pageThank you for you answer, I try this.