Forum Activity for @michael

michael
@michael
12/18/14 06:44:27PM
7,832 posts

Forgot how to rename cloned skin...again


Ning To Jamroom

Strumelia:....now my whole site is completely SCREWED...
The image shows that the site is missing its style sheet. That's all. Don't panic.

Run the integrity check and clear the caches.
updated by @michael: 12/29/14 09:23:54AM
michael
@michael
12/18/14 12:19:42AM
7,832 posts

No Volume Control in Mobile View


Using Jamroom

gary.moncrieff:
Brian, just on this point is it possible to add new player designs without having to edit the core to register them first, I looked at this a while ago and seen I would have to edit the core to register the new player template.

You don't need to edit the core at all. Don't edit the core. ;)

A skin defines what player it wants to use if there are options eg: in jrElastic
/skins/jrElastic/includes.php

You'll find this:
// Our default media player skins
jrCore_register_module_feature('jrCore', 'media_player_skin', 'jrElastic', 'jrAudio', 'jrAudio_player_dark');
jrCore_register_module_feature('jrCore', 'media_player_skin', 'jrElastic', 'jrVideo', 'jrVideo_player_dark');
jrCore_register_module_feature('jrCore', 'media_player_skin', 'jrElastic', 'jrPlaylist', 'jrPlaylist_player_dark');

That is the elastic skin registering that it wants to use:
* jrAudio_player_dark as the default player for jrAudio
* jrVideo_player_dark as the default player for jrVideo
* jrPlaylist_player_dark as the default player for jrPlaylist

So if no type="xxxxxxxxxxxx" is defined for the {jrCore_media_player .....} call then the default will be used.

You can define to use any player you want in that location by adding it as the value.
{jrCore_media_player type="jrPlaylist_blue_monday" module="jrPlaylist" item=$item}

If you don't like the way jrPlaylist_blue_monday looks at the skin level and want to customize it for your skin you can over-ride it in all locations by defining a template over-ride at:
/skins/jrElastic/jrPlaylist_jrPlaylist_blue_monday.tpl and that will be used instead.

Is that enough to get you where your going? What are you thinking?
michael
@michael
12/18/14 12:00:25AM
7,832 posts

setting up jrShareThis and jrLike


Ning To Jamroom

Can you get to the modules in your ACP?

-- edit --
Just checked ShareThis here and it seams to be working.

* activate the module
* get your publisher key from sharethis.com
* paste into ACP -> SHARE THIS -> GLOBAL CONFIG -> Publisher Key -> SAVE

Visit a profile. "Share This" is displayed at the bottom of the main page, and the bottom near the comments on all details pages.

updated by @michael: 12/29/14 09:23:54AM
michael
@michael
12/17/14 09:28:19PM
7,832 posts

code doesnt accept code but editor source code does


Using Jamroom

That means that the javascript is not working in that location. Try it on the default skin, see if it works.

I'll check it out from here.

Whats that extra square box on the screen, that shouldn't be there.
updated by @michael: 12/22/16 11:55:59AM
michael
@michael
12/17/14 09:24:07PM
7,832 posts

How to Add A TinyMCE Box on an Edit button?


Design and Skin Customization

Ken_Rich:...Not sure why Jamroom doesn't already have a module like that....
Its would require skin level implementation. Its a feature that isn't needed for all locations. It can be implemented if needed.
michael
@michael
12/17/14 08:33:56PM
7,832 posts

How to Add A TinyMCE Box on an Edit button?


Design and Skin Customization

Your trying to blend a data entry point into the data output point. The profile page that the visitor looks at is the output point.

The admin panel is the input point.

You would need to do something custom to be able to make both areas in the same location.

If you can live with the editor staying on the profile update page, then you can add another form field to the profile update form like this:

* go to the Profile Update form (via the "change image" button on the profile)
* click on "Form Designer"
* in "new field name " put profile_whatever where 'whatever' is what you want to call it.
* click "Create New Field"
* under the "type" section choose "Editor" and make it active.

That will add the editor.

Then you edit the profile template where you want to the output to be output and put {$profile_whatever} to output it.

You could have a button visible there to the profile admin with "Click here to edit" if you wanted.

Thanks for the description, I can understand what you want. Its would require a module to do that and skin specific integration. So it would need to be custom.
michael
@michael
12/17/14 08:11:25PM
7,832 posts

Forgot how to rename cloned skin...again


Ning To Jamroom

you've had 1.3.0 for a while? mmmm, strange. Thought it wasn't released.

Give Reloading it a try for me, see if that fixes it.

ACP -> MARKETPLACE -> TOOLS -> "Reload Modules or Skins" -> Developer Tools -> RELOAD

Thanks.
updated by @michael: 12/29/14 09:23:54AM
michael
@michael
12/17/14 08:05:55PM
7,832 posts

How to Add A TinyMCE Box on an Edit button?


Design and Skin Customization

By user editable spaces do you mean you as the admin user edits it for the profile owner or the profile owner edits it for themselves?

There is the "Profile Biography" that is associated with the profile. Thats a "tinyMCE edit box that the profile owner can edit".

Is that not enough?

Do you want another box like the "Profile Biography" box? Because thats easy too using the Form Designer.
michael
@michael
12/17/14 08:00:11PM
7,832 posts

some code help plz


Design and Skin Customization

What is it your after? "How do I get a list of the latest forum posts?"
michael
@michael
12/17/14 07:56:11PM
7,832 posts

some code help plz


Design and Skin Customization

These are the steps to follow when adding a new listing call.

{jrCore_list module="jrForum"}

Try it and see what comes out. If you get output but too much info, continue on to the next step: add search="" ....
{jrCore_list module="jrForums" order_by="forum_updated" search1="_profile_id = 13331"}

Ok, I have all the info I want coming out with that call, but not structured in a way that I like it, so add in my template.
{jrCore_list module="jrForums" order_by="forum_updated" search1="_profile_id = 13331" template="my_forum_template.tpl"}
AND copy /modules/jrForum/templates/item_list.tpl to /skins/YOUR-SKIN/my_forum_template.tpl

Then in
/skins/YOUR-SKIN/my_forum_template.tpl

Add in {debug}

"{debug}"
https://www.jamroom.net/the-jamroom-network/documentation/development/1477/debug

That will tell you want you have available.

You can then start customizing it from there.

Do it in steps rather than trying to jump all the way to the last step then trying to figure out whats wrong.
updated by @michael: 12/17/14 07:57:02PM
  616