Skip Navigation

[Resolved] in view after filter it comes the divi code

This is the technical support forum for Toolset - a suite of plugins for developing WordPress sites without writing PHP.

Everyone can read this forum, but only Toolset clients can post in it. Toolset support works 6 days per week, 19 hours per day.

Sun Mon Tue Wed Thu Fri Sat
- 10:00 – 13:00 10:00 – 13:00 10:00 – 13:00 10:00 – 13:00 10:00 – 13:00 -
- 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 -

Supporter timezone: Asia/Kolkata (GMT+05:30)

This topic contains 2 replies, has 2 voices.

Last updated by alexd-6 1 year, 8 months ago.

Assisted by: Minesh.

Author
Posts
#2563871
Bildschirm­foto 2023-03-01 um 14.54.26.jpg

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

#2564629

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' );
#2564717

hi minesh - thx a lot! - best regards, alex

My issue is resolved now. Thank you!