Forum Activity for @garymoncrieff

gary.moncrieff
@garymoncrieff
06/22/15 03:13:58AM
865 posts

Form Designer Suggestions


Suggestions

Hey Guys

Having added quite a few fields thorugh form designer already and I am not have done way done I would like to suggest these usability improvements.

Click and drag to sort fields
Clone Field option
1 field type that allows multiple image uploads.
updated by @garymoncrieff: 08/05/15 03:36:19PM
gary.moncrieff
@garymoncrieff
06/22/15 03:05:07AM
865 posts

Profile Layouts


Design and Skin Customization

I have it working now using static images, using the three fields.

Probably not the best implemtation and still have to perform a check to see if any cover images are present, if not hide slider.

            <script type="text/javascript">
                $(function () {
                    $("#slider1").responsiveSlides({
                        auto: true,          // Boolean: Animate automatically, true or false
                        speed: 400,          // Integer: Speed of the transition, in milliseconds
                        timeout: 4000,       // Integer: Time between slide transitions, in milliseconds
                        pager: true,         // Boolean: Show pager, true or false
                        random: true,        // Boolean: Randomize the order of the slides, true or false
                        pause: true,         // Boolean: Pause on hover, true or false
                        maxwidth: 1120,       // Integer: Max-width of the slideshow, in pixels
                        maxheight: 400,       // Integer: Max-height of the slideshow, in pixels
                        namespace: "rslides" // String: change the default namespace used
                    });
                });
            </script>



            {* Profile Cover Image Slider *}
            <div class="block_content">
                <div style="padding-top: 0px">
                    <div class="callbacks_container">
                        <div class="">
                            <ul id="slider1" class="rslides callbacks">
                                {if isset($profile_cover_image_name)}
                                {jrCore_module_function function="jrImage_display" module="jrProfile" type="profile_cover_image" item_id=$_profile_id size="xxlarge" class="img_scale img_shadow" alt=$profile_name width=false height=false}
                                {/if}
                                {if isset($profile_cover_image2_name)}
                                {jrCore_module_function function="jrImage_display" module="jrProfile" type="profile_cover_image2" item_id=$_profile_id size="xxlarge" class="img_scale img_shadow" alt=$profile_name width=false height=false}
                                {/if}
                                {if isset($profile_cover_image3_name)}
                                {jrCore_module_function function="jrImage_display" module="jrProfile" type="profile_cover_image3" item_id=$_profile_id size="xxlarge" class="img_scale img_shadow" alt=$profile_name width=false height=false}
                                {/if}
                            </ul>
                        </div>
                    </div>
                    <div class="clear"></div>
                </div>
            </div>

One field for multiple images would be nice and given how many things I have now added to form designer, I have some suggestions for it, which I will put in a different thread as well.

Click and drag to sort fields
Clone Field
1 field that allows multiple uploads.
gary.moncrieff
@garymoncrieff
06/22/15 01:52:52AM
865 posts

Profile Layouts


Design and Skin Customization

Hey

My thought now is to repurpose the elastic slider and then somehow pass the images uploaded to the specfic fields in profile to this slider.

So for example, profile_coverimage, profile_coverimage2, profile_coverimage3.


    <script type="text/javascript">
        $(function () {
            $("#slider1").responsiveSlides({
                auto: true,          // Boolean: Animate automatically, true or false
                speed: 400,          // Integer: Speed of the transition, in milliseconds
                timeout: 4000,       // Integer: Time between slide transitions, in milliseconds
                pager: true,         // Boolean: Show pager, true or false
                random: true,        // Boolean: Randomize the order of the slides, true or false
                pause: true,         // Boolean: Pause on hover, true or false
                maxwidth: 1120,       // Integer: Max-width of the slideshow, in pixels
                namespace: "rslides" // String: change the default namespace used
            });
        });
    </script>

        {* Profile Cover Slider *}
        <div class="block_content">
            <div style="padding-top: 0px">
                <div class="callbacks_container">
                    <div class="ioutline">
                        <ul id="slider1" class="rslides callbacks">
         {* code to loop through images*}
                        </ul>
                    </div>
                </div>
                <div class="clear"></div>
            </div>
        </div>

Any tips using this method before I start?
gary.moncrieff
@garymoncrieff
06/21/15 09:57:42AM
865 posts

Profile Layouts


Design and Skin Customization

Here is an very early preview of my one of my business profile layouts.

Still needs a lot of work. This is where I want to make the cover image a slider on this particular layout.
corporate profile 1.png corporate profile 1.png - 883KB

updated by @garymoncrieff: 06/21/15 09:58:20AM
gary.moncrieff
@garymoncrieff
06/21/15 07:44:11AM
865 posts

Possible playlist bug for admins only?


Using Jamroom

You can add youtube videos to playlist but they dont show in the video player, just in the list of what's available in the playlist and like above there is no way to remove them from the playlist.
gary.moncrieff
@garymoncrieff
06/21/15 02:44:26AM
865 posts

Hide footer blocks in media pro


Design and Skin Customization

Think I found a solution for me.

{if $current_url != "{$jamroom_url}/{$profile_url}"}
shoe something
{/if}
gary.moncrieff
@garymoncrieff
06/20/15 12:09:57PM
865 posts

How To Make SEARCH actually search entire site?


Design and Skin Customization

It appears site builders widgets arent getting searched, this raises another important question, how does one enable search on templates manually added. since search only checks through datastores?
updated by @garymoncrieff: 06/20/15 12:11:42PM
gary.moncrieff
@garymoncrieff
06/20/15 08:44:06AM
865 posts

How To Make SEARCH actually search entire site?


Design and Skin Customization

How are you selling these? Though the merchandise module? If so try adding these to your additional search fields

product_title
product_body
gary.moncrieff
@garymoncrieff
06/20/15 06:32:41AM
865 posts

How To Make SEARCH actually search entire site?


Design and Skin Customization

enable full text search in admin panel, it will take a while to index the site after you enable.

Easiest way to find it is just to type 'search' in the search box in admin
updated by @garymoncrieff: 06/20/15 06:32:58AM
gary.moncrieff
@garymoncrieff
06/19/15 02:30:42AM
865 posts

Hide footer blocks in media pro


Design and Skin Customization

Hey Guys

I need to hide the footer (sidebar) blocks which are contained in the profile_footer template on the profile_index page.

Have tried various things, ie

{if $jr_template != "profile_index.tpl"}
show
{/if}

But am at a blank at the moment and cant get this to work.
updated by @garymoncrieff: 07/23/15 09:32:33PM
  37