intrinicity
Member
Posted 6 months ago #
Before installation, this works
<ul class="alt-tabs">
Houses
Units
Land
Townhouses
Supplying the #Units after the URL, takes you to that tab.
After installation, GA changes the href to
<ul class="alt-tabs">
Houses
Units
Land
Townhouses
Search
And the named anchor (tab) no longer is selected.
I can understand the need for the plugin to do this to unqualified hrefs - I am just wondering whether there is a way to selectively avoid it
Dave
http://wordpress.org/extend/plugins/google-analytics-for-wordpress/
intrinicity
Member
Posted 6 months ago #
Sorry, that was ...
<ul class="alt-tabs">
<li><a href="#Houses">Houses</a></li>
<li><a href="#Units">Units</a></li>
<li><a href="#Land">Land</a></li><li>
<a href="#Townhouses">Townhouses</a></li>
<li><a href="#Search">Search</a></li>
</ul>
and
<ul class="alt-tabs">
<li><a href="http://mydomain.com.au/for-sale#Houses" >Houses</a></li>
<li><a href="http://mydomain.com.au/for-sale#Units" >Units</a></li>
<li><a href="http://mydomain.com.au/for-sale#Land" >Land</a></li>
<li><a href="http://mydomain.com.au/for-sale#Townhouses" >Townhouses</a></li>
<li><a href="http://mydomain.com.au/for-sale#Search" >Search</a></li>
</ul>