nbh
Forum Replies Created
-
Thank you @kbat82, that’s help me, i solve it.
Forum: Plugins
In reply to: [amr shortcode any widget] load shortcode via ajaxFor a custom needs, i should load content of some posts via ajax into a custom template page. i used apply_filters( ‘the_content’, $key->content ); and it was working perfect on my wordpress pages. But when i have update the version of WP to 4.9.8 it has stopped and ajax response is just an empty string for some shortcodes or a non completely loaded content for some others.
after some search i add this snippet
/* — Necessary since Visual Compoer V 4.9 — */ if ( class_exists( ‘WPBMap’ ) && method_exists( ‘WPBMap’, ‘addAllMappedShortcodes’ ) ) {
WPBMap::addAllMappedShortcodes();
}
else{
do_action( ‘template_redirect’ );}
but the problem was not solved!Forum: Plugins
In reply to: [Contact Form 7] Send values of jquery clone and prepend fieldshi !
i have the same problem .
i have cloned fields type file and others type text but when submit i get text’s values stored in flamingo but not the uploaded files ‘s value. they are not known as post when i check with php
how to do ?
do you get the solution ? help me please!