Quote:
Originally Posted by keyness
I can't make this mod work  What's wrong with my code?
I put this code to above of <vb:if condition="$show['attachments']"> in postbit:
Code:
<vb:if condition="$post[postcount] == 1">
<vb:if condition="$show['guest']">Show this to guest only</vb:if>
<script type="text/javascript"><!--
google_ad_client = "pub";
/* 728x90, 11.11.2010 */
google_ad_slot = "XXXXXXXXX";
google_ad_width = 728;
google_ad_height = 90;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></vb:if>
But nothing is shown. What's wrong?
|
try this
Code:
<vb:if condition="$post[postcount] == 1">
<vb:if condition="$show['guest']">
<script type="text/javascript"><!--
google_ad_client = "pub";
/* 728x90, 11.11.2010 */
google_ad_slot = "XXXXXXXXX";
google_ad_width = 728;
google_ad_height = 90;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></vb:if></vb:if>