Forum Activity for @douglas

douglas
@douglas
03/13/16 09:37:01AM
2,807 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,807 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,807 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,807 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,807 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.
douglas
@douglas
03/10/16 02:22:53PM
2,807 posts

Is It Possible You Use An IF statement like this?


Using Jamroom

It might be better to set a variable to the size you want depending on the device being used... ie.

{if jrCore_is_mobile_device()}
{assign var="boxwidth" value="320"}
{else}
{assign var="boxwidth" value="450"}
{/if}

Then you can use that single variable for the this._boxWidth value...

this._boxWidth = {$boxwidth};

Depending on the rest of your code, you may also need to use literal tags.

ie.

{literal}
the beginning of your code here up to
this._boxWidth = {/literal}{$boxwidth}{literal};
the rest of your code here...
{/literal}

Hope this helps!
updated by @douglas: 03/10/16 02:23:56PM
douglas
@douglas
03/09/16 04:51:43AM
2,807 posts

The home page info for artist , features ,blog etc ... has been disable - how can I get it back


Jamroom Developers

Do you have a link we can check out?

What skin are you using?

Sometimes when there is missing content it is due to a template error, are you seeing any entries in your "Debug Logs" or "PHP Error Logs"?
douglas
@douglas
03/07/16 05:01:41AM
2,807 posts

Hide download button for a particular quota


Installation and Configuration

Sorry, I don't think I did a good job of explaining that...

The master admin will see everything, you can't really hide anything from the master admin, however... if you do as Micheal has suggested,

micheal:
click on that levels button on the right (in your screenshot) click MODIFY on the download button and select the quotas it should show for.

then profiles/users in the quotas you've hidden the download button from should not see the download button when logged in.

The only way to test that is to login as a user from the quota you've hidden the button from.

Hope that makes more sense.
douglas
@douglas
03/04/16 10:38:23AM
2,807 posts

Looking For jrSiteBuilder_tinymce_init


Using Jamroom

It is in the modules/jrSiteBuilder/include.php file around line 1104
  111