Homepage elementor issue

Home Forums Business Club Pro Homepage elementor issue

  • This topic is empty.
Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1213
    Anonymous
    Inactive

    Hi,

    I like to change the homepage of the website with elementor but i get an error like:
    Sorry, the content area was not found in your page. You must call ‘the_content’ funtion in the current template, inorder for Elementor to work on this page.

    Manual solution

    Add the_content function into the page template’s code.

    This is the line you need to add: <?php the_content(); ?>

    If you are not familiar with where to place this code or how to add it to the page, please contact your website developer so it can be implemented properly as we cannot provide full support for that.

    So my quesion is, how to place this line of code?

    Thanks,

    Michelle Hoenderboom

    #1246
    Axle Support
    Moderator

    In your child theme, copy front-page.php from parent theme. Then put the_content() just after get_header();.
    Another thing, by default that content area is hidden in the theme.So, use following CSS to display that area.

    
    .home.page #content {
        display: block;
    }
    

    PS: Officially our theme does not support Elementor. So, we would not be able to help much in this area of Elementor integration.

    Thanks

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.