Sauter la navigation

[Résolu] in view after filter it comes the divi code

This support ticket is created Il y a 1 année et 11 mois. 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.

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)

Ce sujet contient 2 réponses, a 2 voix.

Dernière mise à jour par alexd-6 Il y a 1 année et 11 mois.

Assisté par: Minesh.

Auteur
Publications
#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

Les langues: Anglais (English )

Fuseau horaire: Asia/Kolkata (GMT+05:30)

Hello. Thank you for contacting the Toolset support.

Can you please check now: lien caché

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!