idinteractive
Forum Replies Created
-
Nobody ?
Forum: Fixing WordPress
In reply to: “Add To Menu” not workingHello,
I added
php_value post_max_size 20M
or
php_value max_input_vars 10000
in the .htaccess of WordPress!Try one or the other, or both, I’m not sure
Forum: Fixing WordPress
In reply to: “Add To Menu” not workingNobody can help me ?
Forum: Fixing WordPress
In reply to: “Add To Menu” not workingHello,
I encounter exactly the same problem on a WordPress 4.9.8 (multisite).
I have the same bug as in the @ yush91 video.
I have no log on the server and no error with WordPress logs.
Only one thing I noticed is that this problem only arises when the content of my page exceeds about 2300 characters …
I have already done several wordpress (multisite or not) with much larger content without encountering any problem.
Another thing, adding menu works from the menu Appearance > Customize…
An idea can be?
Thank you
All right, I opened a new issue:
https://github.com/wcvendors/wcvendors/issues/499
If it can be added in the next update, it’s great!
We use 7.0.32 on our prod environment and 5.6.38 on our dev environment. The problem is present on both servers.
Our problem is perhaps isolated, but since in this function we know the types of the variables, it might be interesting to implement this modification in the next version of the plugin. This will only affect people in the same situation as me.
Do you prefer that I create a new issue on GitHub?
Hello,
We did tests on a development version. We managed to fix the problem by modifying the “insert_new_commission()” function in the “class-commission.php” class.
Indeed, in this function when calling the “insert()” and “update()” functions of WordPress (wpdb), no format is specified. Therefore, WordPress considers all fields as “string”, so it uses “%s” in the SQL statement before the “prepare()” function.
So I add a variable “$format” which simply modifies the formats of “total_due” and “tax” to consider them like float (“%f”):
$format = array(“%s”, “%s”, “%s”, “%f”, “%s”, “%f”, “%s”, “%s”, “%s”);So I changed the call to both functions to use this variable:
$update = $wpdb->update( $table, $order, $where, $format );
if ( !$update ) $insert = $wpdb->insert( $table, $order, $format );The final result here is as follows:
$format = array(“%s”, “%s”, “%s”, “%f”, “%s”, “%f”, “%s”, “%s”, “%s”);
$update = $wpdb->update( $table, $order, $where, $format );
if ( !$update ) $insert = $wpdb->insert( $table, $order, $format );I checked your old versions and it’s exactly the same. So I can not tell you what has changed, but with this correction everything works again correctly.
Can be a server update at our host …
Good day to you,
Forum: Plugins
In reply to: [WooCommerce Login Popup and Shortcodes] Conflict with WP RocketHello,
I allow myself to revive you by giving some indications.
It seems that the problem comes from the nonce of your plugin. I do not know what difference there is with others, but what is on it is that the classic WordPress connection / disconnection / reconnection works, and that the connection / disconnection / reconnection through WooCommerce also works (page my account).
The problem arises only on your pop-up.
Do you have a solution to bring us?
Thanks
Hello,
We tested with version 2.1.0 and it does not work better.
I checked again on the side of WooCommerce and Mangopay, these two plugins display the good value (29 €).
There must be a problem in WC Vendors or an incompatibility with another plugin.
Yours,
Hello,
The currency is the euro (€). We did the update (so we have latest version 2.1.1).
The problem is still here. Order at 29 €, 24 € commission and 4 € tax.
Sincerely,
Forum: Plugins
In reply to: [MANGOPAY for WooCommerce] Changer les tags automatiquesBonjour,
Je reviens vers vous afin de savoir si vous avez trouvé une solution à notre problème. Si c’est le cas, d’ici combien de temps pourrions nous la mettre en place d’après vous ?
Merci de votre aide,
Forum: Plugins
In reply to: [MANGOPAY for WooCommerce] Changer les tags automatiquesMerci de votre rapidité. Je vous avoue que c’est assez fastidieux de faire sans cesse la liaison entre les commandes WooCommerce dans WordPress et les données dans le Dashboard Mangopay. Ce serait plus simple si nous pouvions faire facilement le lien. Par des tags ou tout autre moyen que vous proposerez.
Forum: Plugins
In reply to: [MANGOPAY for WooCommerce] Activer 3D SecureJe viens de tester avec deux commandes, une à plus de 50€ et une autre à moins de 50€, toujours le même problème, aucun 3DS, aucun password demandé.
Forum: Plugins
In reply to: [MANGOPAY for WooCommerce] Activer 3D SecureBonjour,
Oui j’ai testé avec des paniers à plus de 50€, et qui plus est, je suis encore en mode sandbox, donc je devrai pouvoir tester le 3DS à moins de 50€, non ?
Oui, c’est avec cette page de documentation que je travaille, les cartes avec ou sans 3DS, à plus ou moins de 50€, on ne me demande jamais le code de confirmation.