Home › Forums › Product Support Forums › Ajax Search Pro for WordPress Support › Tablepress table not showing preview › Reply To: Tablepress table not showing preview
January 14, 2021 at 11:08 am
#31128
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.