Forum Activity for @douglas

douglas
@douglas
04/29/16 09:00:34AM
2,812 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,812 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,812 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,812 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!
douglas
@douglas
04/27/16 11:33:51AM
2,812 posts

Configuring Contact Form


Using Jamroom

How are you adding the contact form?

You could use a template code widget and add this for the contact form.

{jrCustomForm_embed_form name="contact_roughneck_city"}
douglas
@douglas
04/27/16 11:30:58AM
2,812 posts

SEARCH ALL MODULES code needed


Using Jamroom

You should be able to use this for the site search form:

        {jrCore_lang module="jrSearch" id="1" default="Search Site" assign="st"}
        <h2>{$_conf.jrCore_system_name} {$st}</h2><br><br>
        {jrSearch_form class="form_text" value=$st style="width:70%"}

and to fix the no results issue, go to your ACP > Listing > Search > Tools and click the "Rebuild Index" button.
douglas
@douglas
04/25/16 02:54:17AM
2,812 posts

Bullets don't display


Using Jamroom

blindmime:
What about the bullets issue? Is this a skin formatting issue or something else. The bullets show in the editor but don't display on a page. The are bullets created in the editor.

I'm seeing the same issue and it has to do with Site Builder.

I'll get a ticket open for this.
updated by @douglas: 04/25/16 02:54:49AM
douglas
@douglas
04/21/16 07:03:12AM
2,812 posts

Bundle Images


Using Jamroom

You could also change the size of the div the images are in so they do not overlap the text on the right.

In your modules/jrFoxyCartBundle/templates/item_list.tpl, find this:

            <div class="row" style="margin-top:12px;">
                <div class="col3">
                    <div class="block_image">
                        {jrCore_module_function function="jrImage_stacked_image" module="{$item.stacked_image_module}" type="{$item.stacked_image_type}" item_id="{$item.stacked_image_item_id}" size="icon" alt="{$item.bundle_title}" border_width=0}
                    </div>
                </div>
                <div class="col8">
                    <div class="p5 pl10">
                        <h2>{jrCore_lang module="jrFoxyCartBundle" id="43" default="Includes the following items"}:</h2><br>
                        {if is_array($item.bundle_items)}
                        {foreach $item.bundle_items as $_i}
                            <div style="float:left; width:49%"><h3>&bull; <a href="{$_i.item_url}">{$_i.item_title}</a></h3></div>
                        {/foreach}
                        {/if}
                    </div>
                </div>
                <div class="col1 last">
                    <div class="p5 center">
                    {* show savings if we can *}
                    {if isset($item.bundle_item_savings) && $item.bundle_item_savings > 0}
                        <h2><b>{jrCore_lang module="jrFoxyCartBundle" id="44" default="Save"}<br>&#36;{$item.bundle_item_savings|number_format:2}</b></h2>
                    {/if}
                    </div>
                </div>
            </div>

and change it to this:

            <div class="row" style="margin-top:12px;">
                <div class="col4">
                    <div class="block_image">
                        {jrCore_module_function function="jrImage_stacked_image" module="{$item.stacked_image_module}" type="{$item.stacked_image_type}" item_id="{$item.stacked_image_item_id}" size="icon" alt="{$item.bundle_title}" border_width=0}
                    </div>
                </div>
                <div class="col7">
                    <div class="p5 pl10">
                        <h2>{jrCore_lang module="jrFoxyCartBundle" id="43" default="Includes the following items"}:</h2><br>
                        {if is_array($item.bundle_items)}
                        {foreach $item.bundle_items as $_i}
                            <div style="float:left; width:49%"><h3>&bull; <a href="{$_i.item_url}">{$_i.item_title}</a></h3></div>
                        {/foreach}
                        {/if}
                    </div>
                </div>
                <div class="col1 last">
                    <div class="p5 center">
                    {* show savings if we can *}
                    {if isset($item.bundle_item_savings) && $item.bundle_item_savings > 0}
                        <h2><b>{jrCore_lang module="jrFoxyCartBundle" id="44" default="Save"}<br>&#36;{$item.bundle_item_savings|number_format:2}</b></h2>
                    {/if}
                    </div>
                </div>
            </div>

Hope this helps!
douglas
@douglas
04/20/16 09:07:52AM
2,812 posts

Issue Tracker Menu Button not showing


Using Jamroom

Can you send us the URL and admin login so we can take a look?

Thanks!
  107