Forum Activity for @derrickhand300

derrickhand300
@derrickhand300
11/12/15 07:00:23PM
1,353 posts

Creating Default Galleries


Using Jamroom

Still trying to solve this..
Here is the code I have on a page to collect "Basketball" photos
{jrCore_list module="jrGallery" search1="gallery_title = Basketball" order_by="_created desc" limit="20" pagebreak="20" pager="true" page=$_post.p group_by="gallery_title"}<br>

Attached is a screenshot from the datastore of an image with the gallery_title of 'basketball"

but NONE of these images with the gallery_title Basketball are displaying in the item list gallery-they are still being displayed off in a gallery the platform is creating....
Capture.JPG.jpg Capture.JPG.jpg - 26KB

updated by @derrickhand300: 11/12/15 07:00:44PM
derrickhand300
@derrickhand300
11/12/15 06:53:20PM
1,353 posts

Trying to add a java slider to a blog post...strips out code


Using Jamroom

Have you tried adding
<div id="comslider_in_point_823921"></div>
in the Template editor then create a template called comslider.tpl and add this code in the template
<script type="text/javascript">var oCOMScript823921=document.createElement('script');
oCOMScript823921.src="http://commondatastorage.googleapis.com/comslider/
target/users/1447352950xa2b1470221aa399daeca6cffd78d9e61/comslider.js?timestamp=1447360143";oCOMScript823921.type=
'text/javascript';document.getElementsByTagName("head").item(0).appendChild(oCOMScript823921);
</script>
so the code in the editor would look like
<div id="comslider_in_point_823921"></div>{jrCore_include template="comslider.tpl"}

I know its not the answer you want or the outcome you expect-but it seems like I had to do this once awhile back to keep a script in there...just a thought
derrickhand300
@derrickhand300
11/12/15 12:29:19PM
1,353 posts

Help making a grid layout template


Design and Skin Customization

Actually just changed the 12 column to 3 in the above snippet and it works! Thanks a million man-I would have never got it without you :)
updated by @derrickhand300: 11/12/15 12:29:42PM
derrickhand300
@derrickhand300
11/12/15 12:26:41PM
1,353 posts

Help making a grid layout template


Design and Skin Customization

Thanks Douglas- yes its something I added...I just changed the template code to this
   <!--members_page_photos.tpl -->
    
   <div class="item">
    <div class="container">
        {if isset($_items)}
        {foreach from=$_items item="item"}
            {if $item@first || ($item@iteration % 36) == 1}
        <div class="row">
        {/if}
            <div class="col12"{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="medium" crop="portrait" class="iloutline img_scale" alt=$item.profile_name title=$item.profile_name}</a>
                </div>
                <div class="center mb10">
                  <a href="{$jamroom_url}/{$item.profile_url}" class="media_title">@{$item.profile_name}</a>
                </div>
            </div>
            {if $item@last || ($item@iteration % 4) == 0}
        </div>
        {/if}
            {/foreach}
        {/if}
    </div>
</div>
    <!--members_page_photos.tpl -->
but its still displaying the same :(
derrickhand300
@derrickhand300
11/12/15 08:32:50AM
1,353 posts

ERROR-invalid jrCore_checktype:....How to fix it?


Design and Skin Customization

Thank you Brian- this seems to have fixed it for me
I appreciate your help man
derrickhand300
@derrickhand300
11/12/15 08:18:03AM
1,353 posts

Jamroom 5.3 Beta Kickoff


Announcements

Yes "Calendar View" was the part that kept showing past events...

Well I am trying to make default galleries so that anytime someone uploads an image it has to go in one of the default galleries.
To do this I made 6 categories to choose from in the form designer ( in the gallery_title field)

Then I used item list code to display each gallery by gallery title...but when someone uploads an image and selects a gallery- the image still creates its own gallery and does not display in the default gallery that was made for it
updated by @derrickhand300: 11/12/15 08:18:55AM
derrickhand300
@derrickhand300
11/12/15 07:46:39AM
1,353 posts

Help making a grid layout template


Design and Skin Customization

Here is a link to where the code works and the profile layout I am after- http://drillingahead.com/members
Here is a link to the site where I placed the code hoping for the same layout ( but just a single column)- http://sayreeagles.net/profile
derrickhand300
@derrickhand300
11/12/15 07:44:39AM
1,353 posts

Help making a grid layout template


Design and Skin Customization

I have the following template code on one site- I use the code to make the profiles page display profile images in a grid that is 4 images wide and 36 or so on a page

   <!--members_page_photos.tpl -->
   <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}
            <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="medium" crop="portrait" class="iloutline img_scale" alt=$item.profile_name title=

$item.profile_name}</a>
                </div>
                <div class="center mb10">
                  <a href="{$jamroom_url}/{$item.profile_url}" class="media_title">@{$item.profile_name}</a>
                </div>
            </div>
            {if $item@last || ($item@iteration % 4) == 0}
        </div>
        {/if}
            {/foreach}
        {/if}
    </div>
</div>
    <!--members_page_photos.tpl -->
When I add this code to a different site I am only getting 1 single column of very large images?

Here is the code I am using to include the template on the page

<div class="block">
    <div class="title">
       <div style="float:right; margin-right: 0px; margin-top: 0px;">{jrSearch_form class="form_text" value="Search Profiles" module="jrProfile" fields="profile_name,profile_url" }</div>
        <h2 style=" margin-left:12px;">Search Our Members</h2>
    </div></div></div>
<br></br>
<br></br>
    <div class="block_content">
        {jrCore_list module="jrProfile" order_by="_item_id desc" search1="profile_active = 1" pagebreak="36" page=$_post.p pager=true template="members_page_photos.tpl"}

    </div>

I was wondering if anyone would suggest to me why I am getting different results and how to correct it?
Thank you!
updated by @derrickhand300: 02/14/16 10:49:37PM
derrickhand300
@derrickhand300
11/11/15 04:49:59PM
1,353 posts

Jamroom 5.3 Beta Kickoff


Announcements

It never worked "stock" either as the check box for stop showing events that have past never worked.
I really thought the form designer was supposed to be the trick to modifying everything including the event module...I also cannot get it to work with the photo galleries...sorry I dont understand
derrickhand300
@derrickhand300
11/11/15 03:33:55PM
1,353 posts

Jamroom 5.3 Beta Kickoff


Announcements

No Never saw that- just days of the calendar were wrong- event times were wrong- would not remove past events etc etc...I just removed it...Im going to try and find a 3rd party event calendar that's easier to work with -I have SEVERAL long days of work in creating this one...Im not wasting another minute in it. :)
updated by @derrickhand300: 11/11/15 03:36:44PM
  63