marco80
Forum Replies Created
-
Hi Maybellyne,
I finally managed to fix it. The issue was with the Google Tag Manager code being placed wrongly in the <head>. I simply moved the code a bit down before the </head> and everything is working well now
Marco
This issue is still ongoing.
I read in other forum that FB only checks the first 50kb and the tags should be placed in the HAED and not the BODY. How do I change that with Yoast? Would that really fix the issue?
I tried to deactivate all plugin and cleared all cached and CDN but still nothing
Any help is welcome
Forum: Themes and Templates
In reply to: Add new SidebarHi and thanks for your quick reply.
THis is the code I put in sidebar10-page.php
<?php
/**
* Template Name: Sidebar Template
* Description: A Page Template that adds a sidebar to pages
*
* @package WordPress
* @subpackage Twenty_Eleven
* @since Twenty Eleven 1.0
*/get_header(); ?>
<div id=”primary”>
<div id=”content” role=”main”><?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( ‘content’, ‘page’ ); ?>
<?php comments_template( ”, true ); ?>
<?php endwhile; // end of the loop. ?>
</div><!– #content –>
</div><!– #primary –><?php get_sidebar(); ?>
<?php get_footer(); ?>