How to show module only in article view,not in category blog - Joomla! Forum - community, help and support
hi,
i show module in article view. don't want use {loadposition modulename} on every article, "tell" joomla not show module unless article view shown.
i've read somewhere insert code, think not ok that
if ($option == "com_content" , $view == "article") return xxx;
where xxx module number.
any suggestion?
thanks!
i show module in article view. don't want use {loadposition modulename} on every article, "tell" joomla not show module unless article view shown.
i've read somewhere insert code, think not ok that
if ($option == "com_content" , $view == "article") return xxx;
where xxx module number.
any suggestion?
thanks!
code: select all
<?php if( jrequest::getvar( 'view' ) == 'article' ): ?>
<jdoc:include type="modules" name="position-xxx" />
<?php endif; ?>
Comments
Post a Comment