hi,
i have a view with filter on ajax for categories for posts.
All works fine, but if i do a filter or two filters it shows divi Code in List.
It look like: Image
What is the problem? - My view looks so:
<h3>[wpv-post-link]</h3>
<p>[wpv-post-excerpt]</p>
<small>[wpv-post-author]</small>
weiterlesen
but in excerpt is no DiviBuilder active. - How can it be?
thx in advance - best regards - alex

Minesh
Supporter
Languages:
English (English )
Timezone:
Asia/Kolkata (GMT+05:30)
Hello. Thank you for contacting the Toolset support.
Can you please check now: hidden link
I've added the following filter to your theme's functions.php file:
The following filter is used to register the ajax actions that should be allowed by divi go render the divi shortcodes.
function func_register_toolset_ajax_action_to_divi( $actions ) {
$actions[] = 'wpv_get_view_query_results';
return $actions;
}
add_filter( 'et_builder_load_actions', 'func_register_toolset_ajax_action_to_divi' );
hi minesh - thx a lot! - best regards, alex
My issue is resolved now. Thank you!