hi - want find way make "related items module" appear when click "read more" , go main story page of article.
as of now, have set appear on home page well. if so, on home page "related items" title shown without links there may many "intro" items on home page.
could please me find way on come problem?
thanks in advance
parajoom
as of now, have set appear on home page well. if so, on home page "related items" title shown without links there may many "intro" items on home page.
could please me find way on come problem?
thanks in advance
parajoom

the way on 1 site use php conditionally show module position depending on if page content item
here code
which few things, checks page view of content item , if modules set right col. if so, output mainbody right column , call right module (where show related items) else show mainbody
you use simpler form tahn shows principal
here code
code: select all
<?php if ( moscountmodules ('right') && $_request['task'] == "view" ) {?>
<div id="center_content">
<?php mosmainbody(); ?>
</div>
<div id="rightcol">
<?php mosloadmodules ( 'right', -2 ); ?>
</div>
<?php }
else {
mosmainbody();
} ?>
which few things, checks page view of content item , if modules set right col. if so, output mainbody right column , call right module (where show related items) else show mainbody
you use simpler form tahn shows principal
Comments
Post a Comment