Forum Activity for @douglas

douglas
@douglas
09/13/17 12:16:12PM
2,812 posts

share This tool integration


Design and Skin Customization

My guess would be that the variable $item is not available in the feedback.tpl template.

Try adding the function to your skins/jrBeatSlinger/jrAudio_item_detail.tpl file.

The only problem with this is that you will most likely have two sets of buttons because the detail page features, ie. comments, sharethis, tags etc... are added via a function:

Bottom of the jrAudio_item_detail.tpl
{jrCore_item_detail_features module="jrAudio" item=$item}

You can arrange the order of the detail features in your ACP here:
/core/module_detail_features

I'm not aware of a way to exclude the ShareThis module from the jrCore_item_detail_features function.

Hope this helps!
douglas
@douglas
09/13/17 06:30:49AM
2,812 posts

Profile Tab Home Link for Ninja Skin


Ning To Jamroom

Change this:

<a href="{$jamroom_url}/{$profile_url}/">

to this:

<a href="{$jamroom_url}">

Hope this helps!
douglas
@douglas
09/11/17 10:49:54AM
2,812 posts

Skin design


Installation and Configuration

Did you rename the Gallery module to webshots?

Are you using the Profile Tweaks module?
douglas
@douglas
09/11/17 09:52:55AM
2,812 posts

Skin design


Installation and Configuration

Sorry, I don't know what webshot is?

Is that a custom module?
douglas
@douglas
09/11/17 09:51:22AM
2,812 posts

Audio menu tab not showing


Using Jamroom

Which site is this for?

We may need the admin login to check this out.
douglas
@douglas
09/11/17 08:25:06AM
2,812 posts

Hide menu item on artists profiles


Installation and Configuration

Sorry about that, glad you figured it out though. ;)
douglas
@douglas
09/11/17 07:28:56AM
2,812 posts

Hide menu item on artists profiles


Installation and Configuration

jrEmbedMedia is not a profile menu item.

If you want to hide the Video link on the profile page, change jrEmbedMedia to jrVideo.

Hope this helps!
douglas
@douglas
09/11/17 06:51:01AM
2,812 posts

Skin design


Installation and Configuration

This CSS is why the tabs are behind the title section here:
http://s.sogln.de/news

.sb-container-tabs {
    padding: 32px 12px 0 12px;
    margin-bottom: -12px
}

This is found in the SiteBuilder modules CSS file, but can be added to any one of your skins CSS files to override it. So add this to any one of your skins CSS files and it should fix that:

.sb-container-tabs {
    padding: 32px 12px 0 12px;
    margin-bottom: 10px
}

As for the width, change the #content width from
max-width:100%;
to
 width:100%;

Be sure to reset your cache after making the changes.

ACP > Core > System Core > Tools > Reset Cache
http://s.sogln.de/core/cache_reset

Hope this helps!
updated by @douglas: 09/11/17 06:51:55AM
douglas
@douglas
09/11/17 06:36:55AM
2,812 posts

Hide menu item on artists profiles


Installation and Configuration

You would want to modify the profile template that has the jrProfile_menu function and add an exclude_module parameter to it. It most likely is in the profile_header.tpl for your skin.

jrProfile_menu function docs.
https://www.jamroom.net/the-jamroom-network/documentation/module-developer-guide/1997/jrprofile-menu

ie. from the jrVideoPro skins profile_header.tpl

Change this:

{jrProfile_menu template=$menu_template profile_quota_id=$profile_quota_id profile_url=$profile_url order="jrAction,jrBlog,jrCombinedAudio,jrAudio,jrCombinedVideo,jrVideo,jrGallery,jrGroup,jrEvent,jrYouTube,jrVimeo,jrFlickr"}

To this:
{jrProfile_menu template=$menu_template profile_quota_id=$profile_quota_id profile_url=$profile_url exclude_module="jrVideo" order="jrAction,jrBlog,jrCombinedAudio,jrAudio,jrGallery,jrGroup,jrEvent,jrYouTube,jrVimeo,jrFlickr"}

Hope this helps!
  55