Forum Activity for @douglas

douglas
@douglas
03/15/16 08:48:25AM
2,812 posts

Having a problem with Playlists


Using Jamroom

Just posting here so it might help others.

The issue was your custom skin config.php was missing the new player settings.
douglas
@douglas
03/14/16 09:24:56AM
2,812 posts

Site Builder Image Slideshow


Using Jamroom

Are you using the Site Builder module?

If so, you can add this to the "Template Code" widget:

{capture name="slider_template" assign="slider_template"}
    {literal}
    	{if isset($_items)}
		    {foreach from=$_items item="row"}
        		<li><a href="{$jamroom_url}/{$row.profile_url}/{jrCore_module_url module="jrGallery"}/{$row._item_id}/{$row.gallery_title_url}">{jrCore_module_function function="jrImage_display" module="jrGallery" type="gallery_image" item_id=$row._item_id size="xxlarge" crop="auto" alt=$row.gallery_image_name title=$row.gallery_image_name style="max-width:725px;"}</a><p class="caption"><a href="{$jamroom_url}/{$row.profile_url}/{jrCore_module_url module="jrGallery"}/{$row._item_id}/{$row.gallery_title_url}"><span style="color:#FFF;">{$row.gallery_image_name}</span></a></p></li>
		    {/foreach}
		{/if}
    {/literal}
{/capture}    

<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
            maxwidth: 725,       // Integer: Max-width of the slideshow, in pixels
            pause: true,         // Boolean: Pause on hover, true or false
            namespace: "rslides" // String: change the default namespace used
        });
    });
</script>

<div class="block_content">
    <div id="swrapper" style="padding-top:10px;">
        <div class="callbacks_container">
            <div class="ioutline">
                <ul id="slider1" class="rslides callbacks">
                    {jrCore_list module="jrGallery" order_by="_item_id desc" limit="10" template=$slider_template require_image="profile_image"}
                </ul>
            </div>
        </div>
        <div class="clear"></div>
    </div>
</div>

and that will give you an image slider like the Elastic skin.

If your not using the Site Builder, just add that code to the template you want it to show on.

Note: You may need to adjust the width and cropping.
douglas
@douglas
03/14/16 08:50:18AM
2,812 posts

Having a problem with Playlists


Using Jamroom

If you will, send your site URL, admin login and FTP info to support[at]jamroom[dot]net and I'll take a look at it.

Hard to say what it is without digging into the templates and database.
douglas
@douglas
03/14/16 07:36:39AM
2,812 posts

Having a problem with Playlists


Using Jamroom

Most likely you have bad code in your database for the template you edited in the Playlist module.

When you go to the templates section, do you see an enabled reset button for the template you modified? If so, reset that template and you should get the default template again.
douglas
@douglas
03/13/16 10:28:18AM
2,812 posts

Edit Profile Url Name impossible


Using Jamroom

Can you send us your site URL, admin login and FTP access so we can check it out?

Send it to support[at]jamroom[dot]net

Thanks!
douglas
@douglas
03/13/16 09:37:01AM
2,812 posts

Edit Profile Url Name impossible


Using Jamroom

Hello,

I'm seeing it change but the underscore "_" gets replaced with a dash "-", is that what your seeing?

Thanks!
douglas
@douglas
03/11/16 09:40:18AM
2,812 posts

Items in Media Pro Light Skin Look Funny


Design and Skin Customization

Just looked at the templates I have on my dev site and there is an issue which I'll fix once I get a chance.

For now, you'll want to open your profile_footer.tpl and change this:

<div class="col4 last">

to this:

<div class="col3 last">
douglas
@douglas
03/11/16 09:38:43AM
2,812 posts

Where to Change the Color of "Read More" in Lucid?


Design and Skin Customization

The class .blog-index-text is what controls the yellow border, you may need to look under the non tagged section of your Style tab to find it.

The button is the .blog-index-read-more class.

Alternatively, I think you can find these in your skins/jrLucid/css/index.css file, modify them to suit your needs, and then upload the file to your server via FTP.

Hope this helps!
douglas
@douglas
03/11/16 09:29:41AM
2,812 posts

Items in Media Pro Light Skin Look Funny


Design and Skin Customization

I'm not at my dev computer so I can't check if the MediaPro templates are actually coded this way, they shouldn't be, but this is why your seeing it:

<div class="row">
<div class="col9 last">
LEFT SIDE CONTENT
</div>
<div class="col4 last">
RIGHT SIDE CONTENT
</div>
</div>

That should be more like this:

<div class="row">
<div class="col9">
LEFT SIDE CONTENT
</div>
<div class="col3 last">
RIGHT SIDE CONTENT
</div>
</div>

check your profile_index.tpl and profile_item_*.tpl files to make sure the column classes are set correctly.

You could also try reloading the skin via your ACP > Marketplace > Tools > Reload Modules And Skins.
douglas
@douglas
03/11/16 09:19:57AM
2,812 posts

Items in Media Pro Light Skin Look Funny


Design and Skin Customization

Got a link to the page your referring to?

It could possibly be HTML code truncated in a comment or the activity feed that is causing the layout to break.
  111