Forum Activity for @douglas

douglas
@douglas
05/02/16 12:06:15PM
2,807 posts

RSS Feeds Not Updating


Using Jamroom

This should be fixed for the next release.

Thanks!
douglas
@douglas
05/02/16 09:52:41AM
2,807 posts

Configuring Contact Form


Using Jamroom

This should be fixed for the next release of the custom forms module.
douglas
@douglas
05/02/16 03:42:53AM
2,807 posts

Site News text and images out of alignment


Using Jamroom

Hello,

I've been trying to replicate what your screen shots are showing and I have not been able to do that, have you modified the templates for that section or am I misunderstanding what you've done.

To me it looks like a list of news titles, in which case the Nova skin was not setup that way, or is it just a single news entry with embedded images?

Thanks!
douglas
@douglas
05/02/16 02:54:57AM
2,807 posts

RSS Feeds Not Updating


Using Jamroom

I see feeds without issues on both of your links...

http://roughneckcity.com/roughneck-city/blog/feed
http://roughneckcity.com/feed/oilfieldnews/

Are you still having an issue with this?

Thanks!
douglas
@douglas
04/29/16 09:54:42AM
2,807 posts

How To Change Image Gallery Order?


Using Jamroom

It looks like the last image uploaded becomes the first image in the Gallery, so you shouldn't have to move the last image uploaded if you want it to be the first image in the Gallery.

I'm not sure what you mean by number 2. Are you wanting a way to turn off pagination?

Thanks!
douglas
@douglas
04/29/16 09:00:34AM
2,807 posts

How To Change Image Gallery Order?


Using Jamroom

Using that code will display the first image in the Gallery, if you want to modify the first image in the Gallery, you'll want to change the order on the profiles gallery detail page, ie. http://roughneckcity.com/roughneck-city/gallery/oilfield-photos/all . Just drag-n-drop the images in the order you want them to show.

Hope this helps!
douglas
@douglas
04/28/16 06:36:22AM
2,807 posts

User Defined Limit - Assign Variable From Form?


Design and Skin Customization

If the $item.sales_videos_limit variable is available in the template your jrCore_list call is in, then you don't need the capture part, you can just do this:

{if isset($item.sales_videos_limit) && $item.sales_videos_limit > 0}

<div class="title">        
         <h1>Video</h1> <input type="button" value="View All" class="form_button" style="float: right;" onclick="jrCore_window_location('{$jamroom_url}/{$_post.module_url}/uploaded_video');">          
        <div class="block_content">       
    {jrCore_list module="jrVideo" profile_id=$item._profile_id search1="video_file_item_price > 0" order_by="video_display_order numerical_asc" limit=$item.sales_videos_limit}
   </div>          
</div> 
{/if}

Hope this helps!
douglas
@douglas
04/27/16 12:39:44PM
2,807 posts

Configuring Contact Form


Using Jamroom

Your right, I just checked out your site and for some reason the custom form fields you've added with the form designer do not show when embedding the form.

I'll get a ticket open for it to see if it can be fixed.

Thanks!
douglas
@douglas
04/27/16 12:15:25PM
2,807 posts

User Defined Limit - Assign Variable From Form?


Design and Skin Customization

This might work as long as $item._profile_id is available in the template where your jrCore_list call is located.

Assign the limit variable:
{capture name="limit_template" assign="limit_template_row"}
    {literal}
        {if isset($_items)}
            {foreach $_items as $item}
                {$item.sales_videos_limit}
            {/foreach}
        {/if}
    {/literal}
{/capture}
{jrCore_list module="jrVideo" profile_id=$item._profile_id limit="1" template=$limit_template_row assign="svl"}

jrCore_list function:
{if isset($svl) && $svl > 0}
    {jrCore_list module="jrVideo" profile_id=$item._profile_id search1="video_file_item_price > 0" order_by="video_display_order numerical_asc" limit=$svl}
{else}
    {jrCore_list module="jrVideo" profile_id=$item._profile_id search1="video_file_item_price > 0" order_by="video_display_order numerical_asc" limit="2"}
{/if}

Hope this helps!
  106