Forum Activity for @douglas

douglas
@douglas
02/15/18 09:14:36AM
2,804 posts

Index Page Blog Issue


Design and Skin Customization

Make sure your profile is not set to private.

Hope this helps!
douglas
@douglas
02/14/18 04:22:24AM
2,804 posts

Make something show up only on an item for specific quota


Jamroom Developers

This:

{if $item._profile_quota_id == 2 or 4}

is the wrong syntax and may give you a template error.

You should read up on smarty so you can get a better understanding of how it works.

https://www.smarty.net/docs/en/

That said, your if statement should look something like this:

{if $item._profile_quota_id == '2' || $item._profile__quota_id == '4'}
What you want to show to quota ID's 2 and 4 goes here. No need for an else statement unless you want to show something else to profiles that are not in quota ID's 2 and 4.
{/if}

Hope this helps!
douglas
@douglas
02/13/18 05:21:36AM
2,804 posts

Side Ad


Installation and Configuration

ukdenny:
I am using flashback skin and changed the banner ad and side ad in the images. I changed the jamroom target url link in the header template to match the new banner, but I cannot find the template to change the side ad 180x50. Could someone please advise.

You'll find the code for the side banner in your side.tpl file.

Hope this helps!
douglas
@douglas
02/04/18 05:41:30AM
2,804 posts

Market place Video modile


Using Jamroom

You'll want to make sure and allow your quotas to use the video module.

In your ACP > Profiles > Videos > Quota Config tab ( http://yoursite/video/admin/quota ), select the quota from the drop down that you want to allow access to the video module, then check the allowed checkbox and save settings. You'll want to do this for each quota.

Then visit a profile page from that quota and there will be a video link in the profile menu. Once on the profiles video page, click either the "+" or "*" button to create video entries.

Hope this helps!
douglas
@douglas
02/03/18 03:37:43AM
2,804 posts

require_image question


Jamroom Developers

And to add to what Nate said, you can add more than one search parameter too...

search1="module_field = value" search2="module_field = value" etc..

https://www.jamroom.net/the-jamroom-network/documentation/module-developer-guide/89/jrcore-list

Hope this helps!
douglas
@douglas
01/29/18 05:37:37AM
2,804 posts

Blog Publish date


Using Jamroom

Hello,

The publish date is what will appear on the blog. If the date is in the future, the blog post should not show until then.

The profile owner and site admin will see the blog, other users and visitors will not until the publish date.

I've tested this on my dev site and I'm not seeing any issues.

Hope this helps!
updated by @douglas: 01/29/18 05:37:50AM
douglas
@douglas
01/25/18 08:08:26AM
2,804 posts

Elastic 2 Footer Issue


Design and Skin Customization

Hello,

I've got all skins updated to work with either a URL, profile name or profile ID, that will be in the next release.

I've also fixed the URL's if just a profile name or ID is entered.

Hope this helps!
douglas
@douglas
01/20/18 07:06:52AM
2,804 posts

Elastic 2 Footer Issue


Design and Skin Customization

I've got the social links checking for https: in the skin settings now for the next release, this is how I did it.

{if strlen($_conf.jrElastic2_facebook_url) > 1}
    {if $_conf.jrElastic2_facebook_url|strpos:"https:" !== false}
        <a href="{$_conf.jrElastic2_facebook_url}">{jrCore_image image="sn-facebook.png" width="40" height="40" class="social-img" alt="facebook" title="Like {$_conf.jrElastic2_facebook_url} on Facebook"}</a>
    {else}
        <a href="https://facebook.com/{$_conf.jrElastic2_facebook_url}">{jrCore_image image="sn-facebook.png" width="40" height="40" class="social-img" alt="facebook" title="Like {$_conf.jrElastic2_facebook_url} on Facebook"}</a>
    {/if}
{/if}

Hope this helps!
douglas
@douglas
01/20/18 06:40:58AM
2,804 posts

Elastic 2 Footer Issue


Design and Skin Customization

We'll get the {$_conf.jrCore_system_url} fixed.

For the social sites, don't enter the https://... in the skins settings, since it is already hard coded in the footer.tpl I think all it needs is the social site account name.

Hope this helps!
  49