• after updating mee news to the latest version, i’ve noticed that sending a form (contact form 7) doesn’t work anymore. The arrow keeps spinning and that’s it. Deactivating Mee News solves this problem, but does anyone have an idea how both can work at the same time?

Viewing 15 replies - 1 through 15 (of 17 total)
  • Hi Ronald,

    The same thing happened to me.. Did you find a solution? Thanks in advance. K

    A mi tambien me ha pasado lo mismo. ¿han encontrado una solución?

    Ya tengo la solucion. He contactado con el soporte del plugin Meens news, la versión Premium y me han mandado otro, lo he instalado y funciona perfectamente.
    Saludos

    I’ve exactly the same problem, CF7 forms does not submit when Mee News is activated.
    Form @mara Jess’ message it seems that Mee News developers can solve the problem.
    Let’s hope they solve the problem in next version.

    Mara Jess , dime como has contactado con el soporte, por favor ?
    Tengo el mismo problema!

    Tienes que contactar con
    Daniel Perez Pinazo
    Comercial@tierravirtual.net

    Saludos

    Gracias,
    Con la version que me han pasado se soluciona el problema.
    Un saludo!

    Hola!

    Yo estoy teniendo el mismo problema y he contactado con Daniel Pérez.
    ¿Podrías enviarme dicha versión?

    Gracias!

    Es la versión de pago. Si la has comprado tienes que contactar con comercial@tierravirtual.net
    Saludos

    in file /wp-content/plugins/meenews-newsletter/inc/init_meenews.php
    put the code inside this condition.

    if ($_POST[“_wpcf7”] != 1) {

    }

    It’s work for me.

    kimipooh

    (@kimipooh)

    Thank you for the information. I could resolve this issue.

    I set it as follows.

    if ( !isset($_POST[‘_wpcf7’]) || $_POST[‘_wpcf7’] != 1){

    // Mee News Process
    foreach(….){

    }

    }

    I understand that Mee News ignores when the data of Contact Form is posted.

    gcacar

    (@gcacar)

    Thank you simplementNat,
    Your solution also worked for me…

    Alain

    (@alainotjens)

    This solution is not working for me unfortunately.

    Are there other possible solutions?

    If the solution above did not work for you (as for me) you can change the if statement to check for the pagename where the contactform is on:

    if ($_SERVER[‘REQUEST_URI’]!=’/pagename/’ ) {

    //meenews stuff

    }

    I’m sorry for my post mistake. I thought that I updated the revised information, but it was actually not updated…

    *Corrent
    if ( !isset($_POST[‘_wpcf7’]) || $_POST[‘_wpcf7’] == “”){

    // Mee News Process
    foreach(….){

    }

    }

    $_POST[‘_wpcf7’] != 1 means all targets except first contact form.
    Thus, if plural contact forms are used, the fix code disables.

    In case of !isset($_POST[‘_wpcf7’]):
    Contact form plugin is disabled or not installed.

    In case of $_POST[‘_wpcf7’] == “”:
    Contact form plugin is enabled and the contact form is used in the page.

    Concretely, when contact form is not used in the page, Mee News plugin runs.

Viewing 15 replies - 1 through 15 (of 17 total)
  • The topic ‘[Plugin: Contact Form 7] conflict mee news and contact form 7’ is closed to new replies.