winsa27
Forum Replies Created
-
Forum: Plugins
In reply to: [Tickera - WordPress Event Ticketing] PDF DownloadOk thank’s foru your reply
Forum: Plugins
In reply to: [Contact Form 7] Contact Form 7 conflicts with WooCommerce translationsThanks for your response, I’ll try that. ??
Forum: Plugins
In reply to: [Contact Form 7] Contact Form 7 conflicts with WooCommerce translationsHi,
Thank you for your answer.
Can you tell us more ?
In which file is the problematic code located?
Can you give us more details on how to resolve the problem?
Thank you for your help.
Julian
Forum: Plugins
In reply to: [Contact Form 7] Contact Form 7 conflicts with WooCommerce translationsHi,
Several of us have reported this translation problem on Woocommerce and the latest versions of Contact Form 7.
Have you planned an update of your plugin to resolve this problem?
Thanks for your feedback.
Julian
Forum: Plugins
In reply to: [Contact Form 7] Contact Form 7 conflicts with WooCommerce translationsThank you for your response, I will test 5.6.4.
Forum: Plugins
In reply to: [Contact Form 7] Contact Form 7 conflicts with WooCommerce translationsHi,
I confirm, I have also noticed this problem on several of my sites.
So I downgraded the contact form 7 version to 5.6.
Can you tell me if there is a version higher than 5.6 that does not generate this translation problem?
I don’t understand why the editors of the Contact form 7 plugin haven’t implemented a fix because the bug has been present for a while…
Forum: Plugins
In reply to: [Import any XML or CSV File to WordPress] Date format problem in CSV fileHi,
I have the premium version of your plugin.
Can you tell me how to do it because I read a similar request on another topic and there seems to be a solution.
Forum: Plugins
In reply to: [Woocommerce Customers Order History] Problem with label colorsthank you for your reply
Hi,
Thank you very much for the tip that worked.
Indeed after the infection, even if the plugin is updated it still remains in the database and the malicious code is still active.
With the solution you gave it worked for me.
Julian
Thank you for your reply.
I have indeed made this setting.
However I think that an email notification only for suspicious files would be a good thing in Wordfence.
If this can be integrated into the next updates of your plugin that would be good.
Forum: Plugins
In reply to: [Salon Booking System] My site no longer works due to 9.3.I had the same error installing version 9.3. On the other hand, when I updated from version 8.8.1 to 9.3 it worked correctly
Forum: Plugins
In reply to: [Customer Reviews for WooCommerce] Customer consent checkbox questionVery good, thanks for the confirmation.
Forum: Plugins
In reply to: [Customer Reviews for WooCommerce] Customer consent checkbox questionIn fact I’m talking about the display consent box in the plugin administration page.
If on the order validation page I do not ask the visitor for authorization, do they still receive the review request after order validation?
Hi,
I have the same problem with a theme that uses templates for product sheets.
I created a small piece of code that solved my problem.
Code to add at the end of the file in /plugins/woo-quote-or-enquiry-contact-form-7/woocommerce-quote-or-enquiry-contact-form-7.php
function wqoecf_render_enquiry_button_shortcode($atts) { global $product; $product_id = null; if ($product) { $product_id = $product->get_id(); } if (isset($atts['product_id'])) { $product_id = $atts['product_id']; } if (!$product_id) return ''; // retournez rien si l'ID du produit n'est pas fourni $disable_form = get_option_quote_wqoecf_disable_form($product_id); $btntext = ""; $options = wqoecf_quote_enquiry_options(); if (isset($options['button_text'])) { $btntext = $options['button_text']; } if ($disable_form != 'yes') { $pro_title = get_the_title($product_id); return '<a class="wqoecf_enquiry_button" href="javascript:void(0)" data-product-title="' . $pro_title . '">' . $btntext . '</a>'; } return ''; } add_shortcode('wqoecf_enquiry_button', 'wqoecf_render_enquiry_button_shortcode');
Tell me if it works for you. ??
Forum: Plugins
In reply to: [GDPR Data Request Form] Update TranslationsHi Nico,
in fact the translation is missing for the confirmation button.
Here’s how I fixed that:
Edit the wp-frontend-delete-account.pot file in /plugins/wp-frontend-delete-account/languages
Add the following code after line 38:
#:functions.php:60 msgid "Confirm" msgid ""
However, you will then have to delete the two .po and .mo files and recreate them so that this new label is taken into account in your translation tool (loco translate for example).
Hoping this will help you.
++
- This reply was modified 1 year, 2 months ago by winsa27.