Forum Activity for @douglas

douglas
@douglas
02/12/14 11:29:24AM
2,808 posts

Sharethis Module Not Showing Icons


Installation and Configuration

Check that you've allowed it to your quotas via the Quota Config tab for the module.

Hope this helps,
Douglas
douglas
@douglas
02/12/14 08:27:03AM
2,808 posts

Add To Playlist Button Customization


Design and Skin Customization

Those buttons are controlled by CSS and the jrCore_icon function.

The images for the buttons are located in the modules/jrCore/img/icons_black and icons_white directories. To choose which color and size to use for your skin, you would modify your skins/YOURSKIN/include.php file, and modify the code that controls the sprite.

Using jrElastic as an example:
    // Tell the core the default icon set to use (black or white)
    jrCore_register_module_feature('jrCore','icon_color','jrElastic','black');
    // Tell the core the size of our action buttons (width in pixels, up to 64)
    jrCore_register_module_feature('jrCore','icon_size','jrElastic',30);

The CSS for the sprite, the gradient color and border etc..., is in your skins/YOURSKIN/css/core_form_button.css file and is the sprite_icon class.

If you want to use a different image, you would need to modify the template that the jrCore_icon function is in, and replace it with your image.

Hope this helps,
Douglas
douglas
@douglas
02/12/14 05:52:56AM
2,808 posts

Paypal buy me button


Installation and Configuration

johnchansa:
Did as you instructed and the paypal button is on.However,the paypal buy now button still does not appear on songs row or charts row.The button only shows in the profiles section.Maybe I misunderstood your response.
I was expecting that the songs_row.tpl and the charts_row.tpl would need some modification to include the paypal buy now button.

That should work, make sure to clear your cache.

ACP > Core > Tools > Reset Caches

Hope this helps,
Douglas
updated by @douglas: 02/12/14 05:54:07AM
douglas
@douglas
02/11/14 07:08:31AM
2,808 posts

jrNova skin - Language function


Design and Skin Customization

Agreed, that would be really cool! :)
douglas
@douglas
02/11/14 05:39:19AM
2,808 posts

jrNova skin - Language function


Design and Skin Customization

andrusito:
BTW, does anyone have a spanish or any other language traslation to use in Jamroom5??

Anyone? :)

Thanks!

I know we don't have a Spanish language file for the Nova skin.

If you do get one translated, and don't mind sharing it, send it to us and I can get that worked in for an upcoming release of the Nova skin.

Thanks!
douglas
@douglas
02/09/14 06:56:34AM
2,808 posts

PJ Slider


Installation and Configuration

You can use an if statement before your jrCore_list function:

{ if isset($_conf.jrProJam_require_images) && $_conf.jrProJam_require_images == 'on'}

and then in your jrCore_list function add require_image="profile_image". Note that you would have to change profile_image to whatever module your listing, ie. if it was a video listing it would be require_image="video_image" etc...
douglas
@douglas
02/09/14 06:50:05AM
2,808 posts

PJ Slider


Installation and Configuration

Instead of putting Artist ID's in the Featured Artists field of the skin config, add your quotas, separated by a comma, and in your header.tpl file, find this:

                                    { if isset($_conf.jrProJam_profile_ids) && strlen($_conf.jrProJam_profile_ids) > 0}
                                        { jrCore_list module="jrProfile" order_by="_created desc" limit="10" search1="_profile_id in `$_conf.jrProJam_profile_ids`" search2="profile_active = 1" template="index_featured_slider.tpl"}

and change it to this:

                                    { if isset($_conf.jrProJam_profile_ids) && strlen($_conf.jrProJam_profile_ids) > 0}
                                        { jrCore_list module="jrProfile" order_by="_created desc" limit="10" quota_id=$_conf.jrProJam_profile_ids search2="profile_active = 1" template="index_featured_slider.tpl"}

I just changed the search1 to quota_id and removed everything but the skin config variable.

Hope this helps,
Douglas
  248