• Resolved blueberry25

    (@blueberry25)


    Hello,
    I would like to insert unordered lists in the featured pages on the landing page.
    Thank you in advance!
    Regards

Viewing 4 replies - 1 through 4 (of 4 total)
  • Do you mean on an actual Page, or on the 3 zooms somewhere?

    Need to understand exactly what you mean.

    Link to site would help too.

    Thread Starter blueberry25

    (@blueberry25)

    3 zooms.
    I mean I would like to list few points in the featured text area like the middle one in this one:

    https://www.avgraphx.at/

    I`m sorry, my website on the local server for now.

    Try adding this to your child theme functions.php:

    add_filter('tc_fp_text_sanitize', 'custom_text', 10, 3);
    function custom_text($original_text, $fp_id, $page_id){
        if ( ! $fp_id == "two" ) //"one" or "two" or "three"
            return $original_text;
        $html = $original_text;
        $html .= '<ul class="featured">';
        $html .= '<li>SOMETHING</li>';
        $html .= '<li>SOMETHING ELSE</li>';
        $html .= '</ul>';
        return $html;
    }

    Hope this helps, to figure out how to do what you want.

    Thread Starter blueberry25

    (@blueberry25)

    Sorry for the late reply. It works great!
    Many thanks!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Featured pages custom text’ is closed to new replies.