Forum Replies Created

Viewing 5 replies - 1 through 5 (of 5 total)
  • Youdemus

    (@youdemus)

    +1, I’ve got this infinite redirect loop too.

    Plugin Author Youdemus

    (@youdemus)

    Hi,

    You can already do that using additional fields feature

    Here is an example :
    Add that your Contact Form :

    [hidden your-page “Page contact”]

    Then on the plugin settings page :

    Add in “Secondary parameters” a label for example “Page” on “1 – Label” and in the “1 – Contact form 7 field” add “your-page”

    This data associated to “your-page” (-> “Page contact”) will be added to Mailjet and you will be able to use it in Mailjet like any additional value on a contact.

    Hope my explanation is clear… ?? !

    hi,

    i just went through this problem and here is my solution : add on frontend/cm-tooltip-glossary-frontend.php line 44 :

    # add by Youdemus
    add_filter(‘do_shortcode_tag’, array(self::$calledClassName, ‘cmtt_glossary_parse’), 9999, 1);
    add_filter(‘do_shortcode_tag’, array(self::$calledClassName, ‘cmtt_glossary_createList’), 9998, 1);
    add_filter(‘do_shortcode_tag’, array(self::$calledClassName, ‘cmtt_glossary_addBacklink’), 10000, 1);

    I don’t know if there is some aftereffect but it seems to work nice on my project.

    Hope you can add it in your next update.

    Plugin Author Youdemus

    (@youdemus)

    Hi Colir,

    Thanks for your help. That was indeed a bug with copy/paste.

    Fixed in 1.7.5

    I didn’t found a solution but here is something interesting :

    add_filter( ‘pll_get_post_types’, ‘remove_cpt_to_pll’, 10, 2 );

    function remove_cpt_to_pll( $post_types, $is_settings ) {

    unset ($post_types[‘post’]);

    return $post_types;
    }

    That’s help a little. The problem is that it’s not working on blog page…

    Any idea ?

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