Forum Activity for @douglas

douglas
@douglas
08/27/20 12:24:09PM
2,797 posts

This video file is currently being processed


Using Jamroom

None of your binary files are executable.

/core/system_check

You'll want to contact your hosting provider and find out which directory binary files need to be in, upload or move the files there and make sure they are CHMOD to 755, then modify your data/config/config.php and add the directories to where your binary files are like this

https://www.jamroom.net/the-jamroom-network/documentation/howto/4641/howto-use-a-different-ffmpeg-binary#short-answer

Hope this helps!
douglas
@douglas
08/24/20 12:33:26AM
2,797 posts

Can't find entry field for price for file downloads....


Using Jamroom

Ceri:
Basically I am uploading a series of 50 pdf's to the site for sale. I'll probably offer these for sale as single items and in bundles. The problem is that the option to charge appears to have disappeared. Not sure what I did here but can someone tell me how to get this working again? I am using the Jamroom Payment Support module.

I see this too and will get a ticket opened to get it fixed.

Thanks!
douglas
@douglas
08/21/20 11:12:54AM
2,797 posts

Message to Paul About the New Nova Skin


Design and Skin Customization

Hello,

It looks like all of your modifications were done through the ACP so upgrading will NOT effect those changes.

You can see what was changed in the skin by clicking the View Changelog button here:
https://www.jamroom.net/the-jamroom-network/networkmarket/26/nova-dark

Hope this helps!
douglas
@douglas
08/17/20 05:00:52AM
2,797 posts

How do I make the profile_sidebar.tpl section to hide when a profile page is viewed.


Design and Skin Customization

At the bottom of your profile_index.tpl you should see this code unless you've modified it already:

{jrCore_include template="profile_sidebar.tpl"}

Change that code to this:

{if !jrCore_is_mobile()}
    {jrCore_include template="profile_sidebar.tpl"}
{else}
    {if $_post.option != 'blog' || $_post.module != 'jrAction'}
        {jrCore_include template="profile_sidebar.tpl"}
    {/if}
{/if}

Hope this helps!
updated by @douglas: 08/17/20 05:38:58AM
douglas
@douglas
08/17/20 04:32:10AM
2,797 posts

Thank you to the Jamroom Team


Using Jamroom

Thanks Lisa! Really appreciate it. ;)
douglas
@douglas
08/16/20 03:19:29PM
2,797 posts

How do I make the profile_sidebar.tpl section to hide when a profile page is viewed.


Design and Skin Customization

Sorry, I don't see that code in AduioPro's profile_index.tpl, which skin is this for?

Thanks!
douglas
@douglas
08/16/20 06:29:08AM
2,797 posts

How do I make the profile_sidebar.tpl section to hide when a profile page is viewed.


Design and Skin Customization

Sorry, try this instead.

{if !jrCore_is_mobile()}
    {jrCore_include template="profile_sidebar.tpl"}
{else}
    {if $_post.module != 'jrBlog' || $_post.module != 'jrAction'}
        {jrCore_include template="profile_sidebar.tpl"}
    {/if}
{/if}
douglas
@douglas
08/16/20 05:53:48AM
2,797 posts

How do I make the profile_sidebar.tpl section to hide when a profile page is viewed.


Design and Skin Customization

You'll want to use an if statement around the function that includes the profile_sidebar.tpl, it might look something like this:

{if !jrCore_is_mobile()}
    {jrCore_include template="profile_sidebar.tpl"}
{else}
    {if $_post.module != 'blog' || $_post.module != 'timeline'}
        {jrCore_include template="profile_sidebar.tpl"}
    {/if}
{/if}

You can add this code:

{debug}

to any template and a Smarty popup window will show you what variables are available in said template.

Hope this helps!
updated by @douglas: 08/16/20 06:38:57AM
douglas
@douglas
08/16/20 05:41:18AM
2,797 posts

How to add follow button to a template.


Design and Skin Customization

See if this works for you:

{jrCore_lang id=5 skin="Mobile" default="Follow" assign="Follow"}
{jrFollower_button profile_id=$item._profile_id title=$Follow}

Hope this helps
updated by @douglas: 08/16/20 05:43:56AM
douglas
@douglas
08/15/20 09:25:29PM
2,797 posts

Add YouTube videos to the playlist


Using Jamroom

YouTube does not allow adding YouTube vidoes to a jPlayer playlist, which is the player that Jamroom uses.

Hope this helps!
  16