Qwhat
Forum Replies Created
-
J’avais le problème de permaliens qui sautait sur les 2 sites. C’est juste une politique générale qu’on passe tous les sites en Rank Math dorenavant. C’était la seule différence notable entre les 2 sites. Le problème de permalien a disparu sur le site casart.fr donc c’est juste une hypothèse.
Effectivement, mes variations ne sont pas publiés en anglais. Ce n’est pas automatique? pourtant les libellés des variations apparaissait bien en anglais (attributs).
J’ai pris la version pro et j’ai publié 1 variation et cela fonctionne. Merci.





J’ai remplacé récemment Yoast par Rank Math qui avait resolu le pb sur un autre site.
Lien vers une page exemple du pb : https://www.3p-france.com/en/products/1kg-refrigerating-gel-0c/Forum: Plugins
In reply to: [Packlink PRO for WooCommerce] pickup address not updating on orderUnfortunately, we reached out to the developers, who told us that our theme was not compatible (Divi). We decided to use another solution for pick-up deliveries and we only use packlink pro for home deliveries.
Forum: Plugins
In reply to: [Falang multilanguage for WordPress] Falang stopped working with page contentMerci beaucoup ! Thank you very much. Cela a fonctionné.
On va retester Falang for Divi. Je tente à faire casquer les bosses pour prendre le licence pro.
Encore merci. Problème resolu.Forum: Plugins
In reply to: [Falang multilanguage for WordPress] Falang stopped working with page contentLes captures semblent ne pas fonctionner dans ce chat. Je les ai mis pourtant.
Pour le front, vous pouvez simplement aller sur la page :
https://www.3p-france.com/en/about-us/
J’ai fait une capture du back, dites moi si vous le voyez.
Forum: Plugins
In reply to: [Falang multilanguage for WordPress] Falang stopped working with page contentQuand j’active Falang pour Divi Lite le texte disparaît dans le back.
Mais toujours présent dans le debug :
J’ai le même problème sur toutes les Pages.
Forum: Plugins
In reply to: [Falang multilanguage for WordPress] Falang stopped working with page contentStéphane,
Merci d’avoir repondu si vite.
Nous avons installé Falang pour Divi mais c’est désactivé.Forum: Plugins
In reply to: [Falang multilanguage for WordPress] Falang stopped working with page contentBonjour Stéphane,
Oui, on peut le faire en français si vous le souhaitez. Oui, les pages sont fait avec le Divi Builder, mais nous n’utilsons pas le plugin divi. Il fonctionné au debut. En fin compte c’est depuis milieu 2023 que cela a cessé de fonctionner. Mais comme j’ai indiqué, le header, footer et produits woocommerce continue à fonctionner, mais pas les pages. WordPress, Divi et plugins sont à jour.We installed the plugin divi-contact-module-pro and the problem has disappeared. You can consider this as resolved.
No, I’m back to work today. Please don’t close the thread yet. I will try to let you know tomorrow at the latest if I found a solution or I will open a ticket as you suggested.
I have the same problem. I’ve noticed that the values are not even written to the database in the postmeta table where they should be. There seems to be a lot of questions about this problem. Have you ever found a solution for this problem?
Thanks for your help.Little add on:
If I put a default value the fields work. I must leave these fields with a default value because otherwise the form doesn’t work and my client is getting orders everyday. So you might not see the problem.- This reply was modified 4 years, 4 months ago by Qwhat.
Thanks for you answer. Sorry, I hadn’t seen your question. I will take a look and let you know if it worked.
Forum: Plugins
In reply to: [Crelly Slider] Something went wrong messageHello Fabio,
Sorry if I wasn’t clear. In the javascript console it showed that admin-ajax.php loaded correctly. That’s all.
After reading other posts I noticed that it was one of the things you asked people to verify.
Like jermilbfc, my version is also French.
I don’t use a compression tool at the moment. I have flushed the browser’s cache.
Sometimes the error message appears, sometimes not. If I can pinpoint the actions that provoke the error message I will let you know.
Thanks for answering.Forum: Plugins
In reply to: [Post My CF7 Form] Insert array data in post_contentSorry to bother you, I figured it out :
I used your example of creating post content with multiple fields where you use
// $form_data is the submitted form data as an array of field-name=>value pairs
so
$value = ‘<div id=”form-field-content”>’;so I should have put something like this:
if(isset($form_data[‘menu-319’])){
$value .= ‘<div class=”type_de_piece”><i>Couleur(s) souhaité(s) :</i> <br />’;
foreach ($form_data[‘menu-319’] as $couleurs) {
$value .= $couleurs. ‘<br />’;
}
‘</div>’;
}
I’ll probably have other questions later. Thanks anyways