Question Regarding Seamless Module Function
Using Jamroom
Easier for me because I am using Site Builder in this instace BUT Site Builder does not function on EVERY page- for instance when I add it to the PROFILE page there is no site builder there to help- so i will add it to the template ( which I am thinking is what you have to do everywhere?)
I don't know if this will help you but I made it up myself a few years ago because I cant quickly read code and tell where stuff goes so I type a crap load of
ZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZ
YYYYYYYYYYYYYYYYYYYYYYYYYYYY
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXX in places all over the template- then publish- here is an example
<div class="item">
<div class="container">
{if isset($_items)}
{foreach from=$_items item="item"}
{if $item@first || ($item@iteration % 4) == 1}
<div class="row">
{/if}
ZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZ
<div class="col-lg-3{if $item@last || ($item@iteration % 4) == 0} last{/if}">
<div class="img-profile">
<a href="{$jamroom_url}/{$item.profile_url}">{jrCore_module_function function="jrImage_display" module="jrProfile" type="profile_image" item_id=$item._profile_id size="large" crop="portrait" class="iloutline img_scale" alt=$item.profile_name title=$item.profile_name}</a>
</div>YYYYYYYYYYYYYYYYYYYYYYYYYYYYYYY
<div class="center mb10">
<a href="{$jamroom_url}/{$item.profile_url}" class="media_title">@{$item.profile_name}</a>
</div>
</div>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
{if $item@last || ($item@iteration % 4) == 0}
</div>
{/if}
{/foreach}
{/if}
</div>
</div>Then I go look at the page I published and look for the ZZZZ-YYYYYY-XXXXXX (easy to spot) and see which one is in the place where I want the code....then go back and remove all the ZZZYYYXXX and add my html code in the spot I found
Its also how I identify if i am even in the correct template or not..
I figure everyone has a system like this...but this is how I would find where to add it on your site
It's kinda REDNECK but thats how we roll
updated by @derrickhand300: 03/15/15 06:02:06PM