Home Forums WoodMart support forum Intro-Text on blog page

Intro-Text on blog page

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #47542

    getimo
    Participant

    Hi,

    how can I place some seo text on the blog page at the position as marked in the image?

    Attachments:
    You must be logged in to view attached files.
    #47554

    Artem Temos
    Keymaster

    Hi,

    Sorry, but there is no area in WordPress to place your text on the blog posts page. It may be possible with additional code customization only.

    Kind Regards

    #241323

    benrich
    Participant

    Semi-tested:

    add_action( 'woodmart_main_loop', 'before_woodmart_main_loop', 9 );
    
    function before_woodmart_main_loop() {
      if(is_home()) {
        echo 'YOUR CONTENT GOES HERE';
      }
    }
    
Viewing 3 posts - 1 through 3 (of 3 total)