Skip Navigation

[Gelöst] in view after filter it comes the divi code

This support ticket is created vor 1 Jahr, 8 Monaten. There's a good chance that you are reading advice that it now obsolete.

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.

Heute stehen keine Supporter zur Arbeit im Werkzeugsatz-Forum zur Verfügung. Sie können gern Tickets erstellen, die wir bearbeiten werden, sobald wir online sind. Vielen Dank für Ihr Verständnis.

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)

Dieses Thema enthält 2 Antworten, hat 2 Stimmen.

Zuletzt aktualisiert von alexd-6 vor 1 Jahr, 8 Monaten.

Assistiert von: Minesh.

Author
Artikel
#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

Sprachen: Englisch (English )

Zeitzone: Asia/Kolkata (GMT+05:30)

Hello. Thank you for contacting the Toolset support.

Can you please check now: versteckter 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!