Okay
  Public Ticket #2975790
Elementor Template / Blog Page
Closed

Comments

  •  16
    manningstinson started the conversation

    Hello, 

    I have an Elementor Template (for email opt-in) that I would like to put at the base of the main and single page blog pages.  If I try and create a blog page in Elementor (prior to selecting it in Settings>Reading>Blog), I can add the template just fine.  However, after I set it as the Blog template, my opt-in template disappears.  

    I do have the option of using Visual Composer (backend editor)  but it puts it at the top above the blog content. 

    Is their a function that I can add to my code snippets that would allow me to move it to the bottom? 

    Here is the page with the elementor template at the top. 

    https://www.staging2.manningstinson.com/blog/

    Any help is greatly appreciated and thanks in advance. 

    Thanks, 

    Manning

  •  16
    manningstinson replied

    Hi, 

    Was this one overlooked? Or is it not possible? 

    Please advise. 

  • [deleted] replied

    Hi Manning,

    I have forwared this ticket to our main developer (Arlind) so he will check this question for you.

    You should receive a reply tomorrow.

    Thanks for your understanding.

  •  16
    manningstinson replied

    Hi Ylli, 

    Thanks so much.  You've been a tremendous help on all my tickets.  Look forward to hearing from him tomorrow. 

    Have a great day! 

    Thanks, 

    Manning

  • [deleted] replied

    Hi Manning,

    When you set a page as Posts page the content editor of that page is not allowed counted anymore and this way I believe Elementor follows these rules too.

    If you want to add something ad hoc in "Posts page" then you can use this script to add content below blog posts:

    add_action( 'kalium_blog_archive_content', function() {
        echo do_shortcode( '[elementor-template id="20429"]' );
    }, 25 );

    I have added the shortcode "[elementor-template id="20429"]" from Elementor Saved Templates:

    medium
    (view large image)

    This code should be added in functions.php of child theme (or parent theme).