Forum Activity for @michael

michael
@michael
10/03/17 09:47:03PM
7,826 posts

Site Builder Problem


Design and Skin Customization

first guess is some CSS interfering with the css for that section. Have you added any padding or margin CSS lately?

What I would do to figure out the problem is open firebug and see where the boundaries of the previous two sections are at to try to figure out what is pushing the third section of the right of the page. You'll probably find the third section below the other two at a guess.
michael
@michael
10/03/17 09:44:23PM
7,826 posts

Google not finding site after going from http to https


Using Jamroom

There will be a button to choose between http and https. probably in the google analytics settings area.
michael
@michael
09/29/17 09:42:38PM
7,826 posts

parameter "icon" is missing


Jamroom Developers

I suggest moving your changes to one of the methods outlined
https://www.jamroom.net/the-jamroom-network/forum/jamroom-developers/54331/site-backup

Then get the updates. Its probably fixed in the updates.
michael
@michael
09/29/17 09:39:18PM
7,826 posts

how do you unblock a user from simple chat?


Using Jamroom

How did she block herself?
michael
@michael
09/29/17 09:38:10PM
7,826 posts

Follow Me Skin audio player type


Design and Skin Customization

You can use this method:

Docs: "Altering a Module's Template"
https://www.jamroom.net/the-jamroom-network/documentation/module-developer-guide/1051/altering-a-modules-template

on the /modules/jrAudio/templates/item_embed.tpl file. Copy it to your cloned skin to
/skins/YOUR SKIN/jrAudio_item_embed.tpl

Then change the player type="" to a different player. Probably the type="jrAudio_gray_overlay_player" is what you want in that file:
<div style="display: inline-block; width:100%">
    {if isset($item) && is_array($item)}
         {jrCore_media_player module="jrAudio" type="jrAudio_gray_overlay_player" field="audio_file" item=$item}
    {elseif isset($_items) && is_array($_items)}
         {jrCore_media_player module="jrAudio" type="jrAudio_gray_overlay_player" field="audio_file" items=$_items}
    {/if}
</div>
michael
@michael
09/28/17 11:21:38PM
7,826 posts

parameter "icon" is missing


Jamroom Developers

not seeing the same thing here. any idea on steps to reproduce what you're seeing?

Are you updated to the most recent version?
michael
@michael
09/27/17 03:44:31PM
7,826 posts

SITE BACKUP


Jamroom Developers

The RESTORE FROM BACKUP button is found in your sites control panel, for you its here:
https://www.jamroom.net/dm/hosting/backup_browser/370/id=1353

But the real issue is why didn't your changes stick. How were you making the changes?

The correct method is either by using the TEMPLATE tab of the ACP

Docs: "Using the Template Editor"
https://www.jamroom.net/the-jamroom-network/documentation/jamroom-admin-handbook/3183/using-the-template-editor

Or by cloning the skin

Docs: "Creating your own Skin ( Clone from an Existing Skin )"
https://www.jamroom.net/the-jamroom-network/documentation/skin-design-guide/839/creating-your-own-skin-clone-from-an-existing-skin

Then using module template overrides for any module template you want to adjust

Docs: "altering a module's template"
https://www.jamroom.net/the-jamroom-network/documentation/module-developer-guide/1051/altering-a-modules-template

If you used the TEMPLATE method, then you can use this to update to any newly released changes

Docs: "Using the Compare tool to keep Cloned skins up-to-date"
https://www.jamroom.net/the-jamroom-network/documentation/jamroom-admin-handbook/2394/using-the-compare-tool-to-keep-cloned-skins-up-to-date
michael
@michael
09/26/17 06:27:34PM
7,826 posts

Vimeo and Soundcloud Error, both shows this error "You do not have the proper privileges to perform that action!"


Installation and Configuration

Strumelia:
.... Ideally I suppose they shouldn't get the textbox pop up at all.....
This issue is unrelated, but the solution is to figure out where that textbox is and remove it. My guess is its part of the skin under the assumption that the timeline is activated and there is no check around it. Probably in your skins profile_index.tpl file.
  181