• Resolved easytour

    (@easytour)


    Vorrei modificare l’header delle pagine, inserendo l’header pensato per il sito. Come devo procedere?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author refreshthemes

    (@refreshthemes)

    Hello @easytour,

    To get the Header and footer as the Homepage, You need to update the page template via the child theme.

    Here are the steps below to resolve your issue:

    1. Create a child theme and activate it.
    2. in the child theme create a directory called tripzzy. Let’s assume you created ‘twentytwentyfour-child’ as a child then you need to create a directory named ‘tripzzy’ inside the above directory. i.e. ‘twentytwentyfour-child/tripzzy’.
    3. Copy the template files from the plugin and paste them into a child theme’s ‘tripzzy’ directory
      I. from plugins/tripzzy/templates/single-tripzzy.php to themes/twentytwentyfour-child/tripzzy/single-tripzzy.php
      iI. from plugins/tripzzy/templates/archive-tripzzy.php to themes/twentytwentyfour-child/tripzzy/archive-tripzzy.php
    4. Open both files and replace the following code below:
      I. Find a get_header(); in both files and replace it with the code below:
      if (function_exists(‘block_header_area’) ) {
      wp_head();
      echo ”; block_header_area(); } else { get_header(); } I. Find a get_footer(); in both files and replace it with the code below: if (function_exists(‘block_footer_area’) ) { wp_footer(); block_footer_area(); echo ”;
      } else {
      get_footer();
      }

      above code will fix the header and footer layout as per FSE theme.

      Thank You!
    Plugin Author refreshthemes

    (@refreshthemes)

    Hello?@easytour,

    Thank you for your patience,
    We have fixed the header and footer layout issue with Full site editing themes.


    Please update the plugin and verify the fixes. Suppose you are still not getting the header layout properly. Please write back to us, and we’ll fix the issue for you.

    Thank you!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Template’ is closed to new replies.