• An observation and I am not sure why it happens…

    When I entered “featured text” for the Feature Front page I can enter HTML and on the live preview screen it showed HTML. I thought “WOW AWESOME!”.

    But then when I go to save it the formatting is ignore and the HTML is ignored.

    Is there anyway to make the featured text HTML? It seems that there is a hook in there but someone it gets lost once it is saved.

    thank you
    George

Viewing 2 replies - 1 through 2 (of 2 total)
  • Theme Author presscustomizr

    (@nikeo)

    Hi, here’s a quick fix for that to allow HTML tags in your featured text :
    Copy/paste in your functions.php

    add_filter( '__featured_page_text' , 'keep_html', 10, 2);
    function keep_html( $__options, $area ) {
    	return html_entity_decode((esc_html( $__options['tc_featured_text_'.$area] )));
    }

    Hope this helps

    Just tried that and is still ignoring my HTML. I am basically adding an image instead of the text for the featured page. I designed the image and added it with a simple html tag <img src=”file location”>. In the live preview it shows it beautifully but after save and publish the images do not show on the website.
    Same happens after I added your code to functions.php…

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘"Featured Page" on front page – HTML in featured text’ is closed to new replies.