Forums › Forums › Search & Filter Pro › Ajax Results don’t interpret Divi shortcode content
Tagged: ajax, results, shortcode not interpreted
- This topic has 3 replies, 2 voices, and was last updated 5 years ago by
Trevor.
-
Anonymous(Private) February 13, 2020 at 9:01 am #233836
Hi,
i try to use Divi snippets as search results.This works fine, when i don’t use the search filter pro ajax option.
Without Ajax the searchform seems to be send by post. So the result is as wanted an interpreted Divi shortcode.After turning on the ajax option the results are imported “inline”, which means the site isn’t reloaded. The result is the same Divi shortcode, but this time it isn’t interpreted.
Is there any way to show the searchresults correctly when using ajax? Could you please explain howto?
Best, wp-teo
Screenshots:
Trevor(Private) February 14, 2020 at 12:37 pm #233949Before you try the second option (below), can you edit the child theme functions.php file and add this code:
function ddtest_et_builder_load_actions( $actions ) { $actions[] = 'ddtest_handle_divi_section_shortcode'; return $actions; } add_filter( 'et_builder_load_actions', 'ddtest_et_builder_load_actions' );
If that does not work, you may need to use our Divi integration method (unless you know that using their Blog Grid will no work for you), as described in this post:
https://support.searchandfilter.com/forums/topic/divi-4-templates-blog-module/#post-226630
-
AuthorPosts