Youdemus
Forum Replies Created
-
+1, I’ve got this infinite redirect loop too.
Forum: Plugins
In reply to: [Contact Form 7 to Mailjet] Additional fieldsHi,
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… ?? !
Forum: Plugins
In reply to: [CM Tooltip Glossary] Support of Oxygen Builderhi,
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.
Forum: Plugins
In reply to: [Contact Form 7 to Mailjet] Fix the custom propertiesHi Colir,
Thanks for your help. That was indeed a bug with copy/paste.
Fixed in 1.7.5
Forum: Plugins
In reply to: [Polylang] Make post available in all languagesI 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 ?