SOLVED RT_Afterburner2 Analytics position showing markup
Posted 7 years 8 months ago
Hi, I'm implementing microdata on a site that uses RT_Afterburner2
Afterburner2 v1.5
Gantry v4.1.32
I created a custom HTML module and placed it in the "analytics" position. For some reason, it's showing at the bottom position of my template with the text.
Here's the markup microdata I'm implementing
<div itemscope itemtype="
schema.org/Restaurant
">
<h1 itemprop="name">resturaunt</h1>
<p itemprop="description">this is a restuarunt!</p>
<p>View <a itemprop="menu" href="
amenu.com/menu
">our menu</a>.</p>
</div>
So, I just don't want this text to show up on my site, I want it hidden. IN the past, this seems to have worked fine.
Re: SOLVED RT_Afterburner2 Analytics position showing markup
Posted 7 years 8 months ago
you could set:
#rt-analytics { display:none; }
in your custom CSS
SEARCH the forum first! These boards are rich in knowledge and vast in topics. This includes searching just the 'Solved' forums, using Google, and using ChatGPT
Re: SOLVED RT_Afterburner2 Analytics position showing markup
Posted 7 years 8 months ago
post a link to your page and I'll check it out
SEARCH the forum first! These boards are rich in knowledge and vast in topics. This includes searching just the 'Solved' forums, using Google, and using ChatGPT
Re: SOLVED RT_Afterburner2 Analytics position showing markup
Posted 7 years 8 months ago
I don't see any "analytics" position loading... put something in the module I guess so I can see it on the frontend and inspect the code... make sure you're only using Positions listed under Afterburner in the Module's admin
SEARCH the forum first! These boards are rich in knowledge and vast in topics. This includes searching just the 'Solved' forums, using Google, and using ChatGPT
Re: SOLVED RT_Afterburner2 Analytics position showing markup
Posted 7 years 8 months ago
It's simply rendering below your normal positions like:
<div class="custom">test</div>
... in that it's not really rendering in any position...
I'm assuming you wrapped that "test" in that <div> manually inside of the custom html module... go ahead and give it a class that's a little more unique... like "custom-ganalytics" or something and set that to display:none;
SEARCH the forum first! These boards are rich in knowledge and vast in topics. This includes searching just the 'Solved' forums, using Google, and using ChatGPT