Forum Replies Created

Viewing 14 replies - 16 through 29 (of 29 total)
  • Vanoisbe

    (@lepapefrancois)

    This occurs because CF7 now adds <p> tag on every line return.

    You can disable this behaviour :

    • open your wp-config.php file in the WordPress root installation directory.
    • add a line with define('WPCF7_AUTOP', false ); in the beginning of the file.

    WPCF7_AUTOP is an official constant of CF7, you can learn more here : https://contactform7.com/controlling-behavior-by-setting-constants/

    Vanoisbe

    (@lepapefrancois)

    @dominikkucharski Thank you very much! This works perfectly

    Vanoisbe

    (@lepapefrancois)

    Thanks laCabriole!

    Your solution works like a charm.

    For those who don’t know what to do ; in your form, add the “exclusive” word in the checkbox tag, like so :

    change

    [checkbox my_name "value1"]

    into

    [checkbox my_name exclusive "value1"]

    The exclusive checkbox with a single value is passed into the html.
    The non-exclusive checkbox with a single value is not passed into the html.

    Finally, note that if you use “id” and “class”, the “exclusive” word come after them, like so :

    [checkbox my_name id:my_id class:my_class exclusive "value1"]

    Enjoy

    • This reply was modified 6 years, 8 months ago by Vanoisbe.
    Vanoisbe

    (@lepapefrancois)

    Hi,

    Same problem here, still without solution either.

    But after looking in the html code generated by [chekbox], it seems that the name attribute output with a “[ ]”.

    [checkbox my_checkbox "value1"]

    will render in html

    <input name="my_checkbox[]" value="" type="checkbox">

    By adding “[ ]” in the name attribute of the input tag, I suppose it break the output in the html email. I presume [my_checkbox] look after the <input name=”my_checkbox”> but can’t find it as it is not the right name …

    I’m waiting like you for a solution.
    Maybe Takayuki Miyoshi will answer…

    • This reply was modified 6 years, 9 months ago by Vanoisbe.
    • This reply was modified 6 years, 9 months ago by Vanoisbe.
    • This reply was modified 6 years, 9 months ago by Vanoisbe.
    • This reply was modified 6 years, 9 months ago by Vanoisbe.
    Thread Starter Vanoisbe

    (@lepapefrancois)

    Je viens de tester et tout fonctionne très bien à présent.
    Merci pour votre excellent plugin. Bon courage dans la suite de son développement.

    Thread Starter Vanoisbe

    (@lepapefrancois)

    Bonjour Florent,

    Merci beaucoup pour ce retour positif ??
    J’attends avec impatience la nouvelle version. une idée de date ?

    Thread Starter Vanoisbe

    (@lepapefrancois)

    Bonjour Florent,

    Je viens de créer mon environnement de test et j’arrive à reproduire le bug.

    test environnement
    ——————
    WP :
    fresh wp install (wp v4.7.3 – latest)
    official wp “twenty sixteen” theme (v1.3 – latest)

    Plugins : only these two
    Contact Form 7 (v4.7 – latest)
    Send PDF for Contact Form 7 (v0.58 – latest)

    Plugin configuration :
    Contact form 7 : default configuration and form
    Send PDF for Contact Form 7 : only change these two options
    – Désactiver l’insertion dans une base de données ? OUI
    – Désactiver la génération d’un fichier CSV ? OUI

    Frontend :
    One page with a CF7 form that need the “send pdf” option
    One page with an other CF7 form that don’t need the “send pdf” option.

    Bug description
    —————

    The CF7 form that use the “send PDF” option behave normally : the success message is shown on frontend, the message is send and received, the pdf is attached to the email.

    The CF7 form that do NOT use the “send PDF” option is freezing when sending.
    The message is sent and receive but the ajax-loading icon is turning endlessly and the “success message” never show. For the end-user the form look like he has to wait until sending is complete.

    Next
    – – –
    I can send you the test url in private (even admin access if you want). Tell me if interested and how-to contact you in private.

    Thank for your support

    Thread Starter Vanoisbe

    (@lepapefrancois)

    Bonjour Florent,

    Oui je parle fran?ais, je m’exprime en anglais pour la communauté ??

    J’ai effectivement qq extensions installées mais rien qui n’ait jamais posé problème depuis plus de 6ans maintenant. Voici la liste :

    Akismet
    Contact Form 7
    Contact Form DB (peut-être ici que le conflit ce situe)
    Send PDF for Contact Form 7 (désactivé pour l’instant)
    Duplicate post
    Wp-pagenavi

    Je vais investiguer la piste d’un conflit avec une autre extension et créer un environnement de test. Je vous reviens avec les résultats.

    Merci,

    – – – – –

    Hi Florent,

    I’ve got several extension installed, but none of them have cause problem since 6 years. Here’s the list :

    Akismet
    Contact Form 7
    Contact Form DB (maybe a conflict here)
    Send PDF for Contact Form 7 (deactivated for now)
    Duplicate post
    Wp-pagenavi

    I will create a test environment, check the conflicts with other plugin, and come back here to post the result.

    Thank you

    Thread Starter Vanoisbe

    (@lepapefrancois)

    Hi Florent,

    Any news about this ?
    Thanks for your support,

    Vanoisbe

    (@lepapefrancois)

    My install :
    – PHP 7.0.6
    – WP v4.5.2
    – Contact form DB 2.10.13
    – Contact Form 7 v4.4.2

    Everything seems to work :
    – CF7 field are well catched in CFDB database
    – Excel export in CFDB works
    – CSV UTF-8 export in CFDB works

    I didn’t test further.
    Hope this can help someone

    Thread Starter Vanoisbe

    (@lepapefrancois)

    Dear Mikko from Relevanssi,
    thank you very much for your time and your correct answer.
    see : https://www.ads-software.com/support/topic/plulang-relevanssi?replies=5#post-7190347

    For other users, here’s more details.
    =====================================
    My search was restricted to custom post type (no page, no post in the index search). I didn’t set polylang to be active on this custom post type (cpt) because I didn’t need to (my clients needs force me to set one cpt per language).

    As I didn’t activate polylang, the pll_is_translated_post_type() function returns “false” causing the serach to fail.

    So :
    1) activate polylang to the cpt, you want to be indexed for search
    2) set your cpt to a language

    And it works !

    Thread Starter Vanoisbe

    (@lepapefrancois)

    Dear Mikko, thank you very much for your time and your correct answer.

    For other users, here’s more details.
    =====================================
    My search was restricted to custom post type (no page, no post in the index search). I didn’t set polylang to be active on this custom post type (cpt) because I didn’t need to (my clients needs force me to set one cpt per language).

    As I didn’t activate polylang, the pll_is_translated_post_type() function returns “false” causing the serach to fail.

    So :
    1) activate polylang to the cpt, you want to be indexed for search
    2) set your cpt to a language

    And it works !

    Thread Starter Vanoisbe

    (@lepapefrancois)

    Access send to your email address. Thank you.

    Thread Starter Vanoisbe

    (@lepapefrancois)

    scweber, you’re the one !
    Thank you for your update.

    Long life to “Custom Comment Notifications”.
    Regards,

Viewing 14 replies - 16 through 29 (of 29 total)