• Hi Folks

    I need some inspiration to solve an issue for my page https://www.motoriklegetoj.dk

    I would like to add at text only on the front page (forside) but below the 3 videos in the bottom of the page. The text should only be displayed on the front page (forside).

    The three videos is placed in the widget Footer banner area.

    I would like the text to appear between the two grey lines under the videos.

    Im using the theme templatemela with woocommerce.

    Thanks
    Soendergaard

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi, I’m not familiar with the templatemela theme. However it sounds to me that you might want to use the is_front_page function.
    https://codex.www.ads-software.com/Function_Reference/is_front_page

    If you access Appearance > Editor you could modify the template file (possibly footer) to include the text.

    <?php
    if( is_front_page() ) {
        echo '<p>My Front Page Text</p>';
    }
    ?>

    @matthew Denton:Thank you contributing to the forums but please do not encourage people to edit theme files directly. At best, they will lose all of their changes when they update the theme. At worst, they could bring their site down. They should be recommended to create a child theme or use a custom CSS plugin for their changes.

    Hi – @esmi is correct – don’t edit theme files directly – use a child theme.

    Hard coding text in themes is also a no-no, in my book. It looks like you have another widget area that will work for this purpose. Unfortunately you won’t be able to but it between the two lines without some style mods, but you can put it below the video thumbs. The widget area I’m referring to appears to have a blank text widget in it currently. Is that what you’re seeing on you’re end?

    Once we confirm that I can help you get the styles in order.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Adding text in bottom of the front page?’ is closed to new replies.