Hi,
Add this code from the snippet mentioned above to your child theme’s functions.php
$hook_prefix = 'tc_fp_';
add_action('after_setup_theme', 'rich_featured_pages_text', 50);
function rich_featured_pages_text(){
global $hook_prefix;
$hook_prefix = ( class_exists('TC_fpu') && version_compare( TC_fpu::$instance->plug_version, '1.4', '>') ) ? 'fpc_' : $hook_prefix;
// Increase the default text length
add_filter($hook_prefix.'text_length', 'my_fp_text_length');
function my_fp_text_length(){
return 9999; /* 9999 means ~ infinite */
}
// Allow html entities
add_filter($hook_prefix.'text_sanitize', 'no_sanitize_text', 20, 3);
function no_sanitize_text($text, $fp_single_id, $fp_id){
global $hook_prefix;
$option_prefix = ( $hook_prefix == 'fpc_') ? $hook_prefix : '';
// grab the original text and leave the filter hook on it
$featured_text = apply_filters( $hook_prefix.'text', tc__f( '__get_'. $option_prefix .'option' , 'tc_featured_text_'.$fp_single_id ), $fp_single_id, $fp_id );
// return un-sanitized text with html tags
return html_entity_decode($featured_text);
}
// Allow shortcodes
add_filter($hook_prefix.'text_block', 'do_shortcode');
}