Jump to content

detail view // widgets // custom_module_links


n00bster

Recommended Posts

where can i setup in the custom_links in the widgets?

i'm searching for a way to include on some widgets links like "view all listings of this ..." and i found this file "module_links.thtml" with this code for custom links, but i do not know where i should set here the links to use this!?
or is that only possible if i use jReviews Modules instead Widgets?!

<ul class="jrModuleLinks <?php if(in_array($custom_link_position,['top-right','bottom-right'])):?>jrRightAlign<?php endif;?>">

	<?php if($custom_link_1_text):?>

		<li><a href="<?php echo $custom_link_1_url;?>"><?php echo $custom_link_1_text;?></a></li>

	<?php endif;?>

	<?php if($custom_link_2_text):?>

		<li><a href="<?php echo $custom_link_2_url;?>"><?php echo $custom_link_2_text;?></a></li>

	<?php endif;?>

	<?php if($custom_link_3_text):?>

		<li><a href="<?php echo $custom_link_3_url;?>"><?php echo $custom_link_3_text;?></a></li>

	<?php endif;?>

</ul>

<?php endif;?>

 

Link to comment
×
×
  • Create New...