This website uses cookies to personalize your experience. By using this website you agree to our cookie policy.

Reply To: Tablepress table not showing preview

Home Forums Product Support Forums Ajax Search Pro for WordPress Support Tablepress table not showing preview Reply To: Tablepress table not showing preview

#31128
Ernest MarcinkoErnest Marcinko
Keymaster

In that case I’m afraid this is probably not possible. The tablepress shortcode is very likely not registered in that context of execution. Maybe one last chance via forceful shortcode execution with this code:

add_filter( 'asp_results', 'asp_force_execute_shortcodes', 10, 1 );
function asp_force_execute_shortcodes( $results ) {
	foreach ($results as $k=>&$r) {
		if ( isset($r->post_type) ) {
			$r->content = do_shortcode(apply_filters('the_content', get_post_field('post_content', $r->id)));
		}
	}

	return $results;
}

But very likely this variation will not change anythig, if the shortcode does not exist yet.