• Resolved PollyPirate

    (@pollypirate)


    Hello,

    I am trying to add some content before the featured pages on the home page. I used the following code in the child theme functions file but my website just goes completely white.

    // Add text before features pages
    add_filter('tc_fp_block_display', 'content_before_fp');
    function content_before_fp($html) {
    $before_fp = ‘<h2 style="text-align: center;">Importing Fine Wines From South Africa to Grenada</h2>
    &nbsp;
    <p style="text-align: center;">Wine and More Grenada Ltd. imports fine wines from South Africa to Grenada in the West Indies. We offer our wines at wholesale prices to restaurants, bars, hotels, and individuals.</p>
    &nbsp;
    <p style="text-align: center;">Visitors and residents of Grenada are welcome to purchase our wines. If you are in the South of Grenada, we are happy to deliver to you for free.?For companies or individuals on?Carriacou or Petite Martinique, we will arrange delivery or collection on request.</p>';
    return $before_fp.$html;
    }

    Would love it if someone could assist me: https://www.pollyphilipson.com/WM

Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Add Content Before Featured Pages’ is closed to new replies.