Title: idinteractive's Replies | WordPress.org

---

# idinteractive

  [  ](https://wordpress.org/support/users/idinteractive/)

 *   [Profile](https://wordpress.org/support/users/idinteractive/)
 *   [Topics Started](https://wordpress.org/support/users/idinteractive/topics/)
 *   [Replies Created](https://wordpress.org/support/users/idinteractive/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/idinteractive/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/idinteractive/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/idinteractive/engagements/)
 *   [Favorites](https://wordpress.org/support/users/idinteractive/favorites/)

 Search replies:

## Forum Replies Created

Viewing 14 replies - 1 through 14 (of 14 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Salon Booking System - Free Version] The calendar does not display on Firefox](https://wordpress.org/support/topic/the-calendar-does-not-display-on-firefox/)
 *  Thread Starter [idinteractive](https://wordpress.org/support/users/idinteractive/)
 * (@idinteractive)
 * [5 years, 4 months ago](https://wordpress.org/support/topic/the-calendar-does-not-display-on-firefox/#post-13997187)
 * Nobody ?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [“Add To Menu” not working](https://wordpress.org/support/topic/add-to-menu-not-working-2/)
 *  [idinteractive](https://wordpress.org/support/users/idinteractive/)
 * (@idinteractive)
 * [7 years, 5 months ago](https://wordpress.org/support/topic/add-to-menu-not-working-2/#post-11078553)
 * Hello,
 * 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](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [“Add To Menu” not working](https://wordpress.org/support/topic/add-to-menu-not-working-2/)
 *  [idinteractive](https://wordpress.org/support/users/idinteractive/)
 * (@idinteractive)
 * [7 years, 6 months ago](https://wordpress.org/support/topic/add-to-menu-not-working-2/#post-10894076)
 * Nobody can help me ?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [“Add To Menu” not working](https://wordpress.org/support/topic/add-to-menu-not-working-2/)
 *  [idinteractive](https://wordpress.org/support/users/idinteractive/)
 * (@idinteractive)
 * [7 years, 7 months ago](https://wordpress.org/support/topic/add-to-menu-not-working-2/#post-10872283)
 * Hello,
 * 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
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WC Vendors - WooCommerce Multivendor, WooCommerce Marketplace, Product Vendors] Commissions are calculated on integers](https://wordpress.org/support/topic/commissions-are-calculated-on-integers/)
 *  Thread Starter [idinteractive](https://wordpress.org/support/users/idinteractive/)
 * (@idinteractive)
 * [7 years, 8 months ago](https://wordpress.org/support/topic/commissions-are-calculated-on-integers/#post-10746184)
 * All right, I opened a new issue:
 * [https://github.com/wcvendors/wcvendors/issues/499](https://github.com/wcvendors/wcvendors/issues/499)
 * If it can be added in the next update, it’s great!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WC Vendors - WooCommerce Multivendor, WooCommerce Marketplace, Product Vendors] Commissions are calculated on integers](https://wordpress.org/support/topic/commissions-are-calculated-on-integers/)
 *  Thread Starter [idinteractive](https://wordpress.org/support/users/idinteractive/)
 * (@idinteractive)
 * [7 years, 8 months ago](https://wordpress.org/support/topic/commissions-are-calculated-on-integers/#post-10745847)
 * 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?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WC Vendors - WooCommerce Multivendor, WooCommerce Marketplace, Product Vendors] Commissions are calculated on integers](https://wordpress.org/support/topic/commissions-are-calculated-on-integers/)
 *  Thread Starter [idinteractive](https://wordpress.org/support/users/idinteractive/)
 * (@idinteractive)
 * [7 years, 8 months ago](https://wordpress.org/support/topic/commissions-are-calculated-on-integers/#post-10745633)
 * 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce Login Popup and Shortcodes] Conflict with WP Rocket](https://wordpress.org/support/topic/conflict-with-wp-rocket-4/)
 *  Thread Starter [idinteractive](https://wordpress.org/support/users/idinteractive/)
 * (@idinteractive)
 * [7 years, 8 months ago](https://wordpress.org/support/topic/conflict-with-wp-rocket-4/#post-10741805)
 * Hello,
 * 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
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WC Vendors - WooCommerce Multivendor, WooCommerce Marketplace, Product Vendors] Commissions are calculated on integers](https://wordpress.org/support/topic/commissions-are-calculated-on-integers/)
 *  Thread Starter [idinteractive](https://wordpress.org/support/users/idinteractive/)
 * (@idinteractive)
 * [7 years, 8 months ago](https://wordpress.org/support/topic/commissions-are-calculated-on-integers/#post-10741669)
 * 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,
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WC Vendors - WooCommerce Multivendor, WooCommerce Marketplace, Product Vendors] Commissions are calculated on integers](https://wordpress.org/support/topic/commissions-are-calculated-on-integers/)
 *  Thread Starter [idinteractive](https://wordpress.org/support/users/idinteractive/)
 * (@idinteractive)
 * [7 years, 8 months ago](https://wordpress.org/support/topic/commissions-are-calculated-on-integers/#post-10709345)
 * 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[MANGOPAY for WooCommerce] Changer les tags automatiques](https://wordpress.org/support/topic/changer-les-tags-automatiques/)
 *  Thread Starter [idinteractive](https://wordpress.org/support/users/idinteractive/)
 * (@idinteractive)
 * [8 years ago](https://wordpress.org/support/topic/changer-les-tags-automatiques/#post-10303637)
 * Bonjour,
 * 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[MANGOPAY for WooCommerce] Changer les tags automatiques](https://wordpress.org/support/topic/changer-les-tags-automatiques/)
 *  Thread Starter [idinteractive](https://wordpress.org/support/users/idinteractive/)
 * (@idinteractive)
 * [8 years ago](https://wordpress.org/support/topic/changer-les-tags-automatiques/#post-10291452)
 * Merci 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[MANGOPAY for WooCommerce] Activer 3D Secure](https://wordpress.org/support/topic/activer-3d-secure/)
 *  Thread Starter [idinteractive](https://wordpress.org/support/users/idinteractive/)
 * (@idinteractive)
 * [8 years, 2 months ago](https://wordpress.org/support/topic/activer-3d-secure/#post-10123239)
 * Je 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[MANGOPAY for WooCommerce] Activer 3D Secure](https://wordpress.org/support/topic/activer-3d-secure/)
 *  Thread Starter [idinteractive](https://wordpress.org/support/users/idinteractive/)
 * (@idinteractive)
 * [8 years, 2 months ago](https://wordpress.org/support/topic/activer-3d-secure/#post-10123159)
 * Bonjour,
 * 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.

Viewing 14 replies - 1 through 14 (of 14 total)