Forum Activity for @paul

paul
@paul
12/11/16 12:01:31PM
4,335 posts

Media Pro Adjusting the top 10 Chart from year to week


Design and Skin Customization

Locate the template that contains the {jrCore_list module="jrAudio" . . . } that is creating this listing. One of its parameters will be 'chart_days=x'. Change 'x' to the number of days the chart is for.
hth
paul
@paul
12/11/16 09:34:34AM
4,335 posts

Media Pro - Putting the latest uploaded songs on the front page


Design and Skin Customization

Skin index.tpl template line 118 -

{jrCore_lang skin=$_conf.jrCore_active_skin id="58" default="Top"} {jrCore_lang skin=$_conf.jrCore_active_skin id="171" default="Singles"}

Change the {jrCore_lang skin=$_conf.jrCore_active_skin id="58" default="Top"} to {jrCore_lang skin=$_conf.jrCore_active_skin id="167" default="New"}

hth
paul
@paul
12/10/16 11:47:59AM
4,335 posts

Media Pro - Putting the latest uploaded songs on the front page


Design and Skin Customization

Take a look at the index_top_singles.tpl template. See the {jrCore_list . . .) calls and their 'order_by' parameters? Change that to -

order_by="_item_id desc"

to get the mist recently created songs.
Hope that helps
Paul
paul
@paul
12/10/16 11:34:27AM
4,335 posts

Clearing out Bot Members to avoid high bounce rate with Mail gun


Using Jamroom

If you have the MailGun module installed and configured it will validate all your user emails, tagging them if undeliverable or malformed etc. (at a rate of 100 per hour). Jamroom will then not send emails to addresses tagged as such, so whilst it will not automatically delete 'Bot Members', you'll be avoiding high bounce rates and potential MailGun blocking issues.
Hope that helps
Paul
paul
@paul
12/09/16 10:42:16AM
4,335 posts

JRdiscussion module search feature not working


Using Jamroom

It seems that a Discussion search searches the comments on a discussion, but not the discussion itself. Let me check that out.
paul
@paul
12/08/16 07:41:51AM
4,335 posts

Question about form field


Jamroom Developers

np - Glad it worked out :-)
paul
@paul
12/08/16 07:26:50AM
4,335 posts

Question about form field


Jamroom Developers

Don't forget to 'register' the listener in the custom module init function -
    jrCore_register_event_listener('jrCore', 'form_display', 'jrBirthday_form_display_listener');
paul
@paul
12/08/16 07:12:37AM
4,335 posts

Question about form field


Jamroom Developers

It is possible - you'd need to add a 'form_display' listener to your custom module and code that to detect the profile/settings forum then insert the field. Plenty of Jamroom modules do this. Here's the listener code from the Birthday module so maybe you can use that as a guide -
function jrBirthday_form_display_listener($_data, $_user, $_conf, $_args, $event)
{ if (isset($_data['form_view']) && $_data['form_view'] == 'jrUser/account') { // Add in birthdate field $_ln = jrUser_load_lang_strings(); $_tm = array( 'name' => 'user_birthdate', 'label' => $_ln['jrBirthday'][1], 'sublabel' => $_ln['jrBirthday'][3], 'help' => $_ln['jrBirthday'][2], 'type' => 'date_birthday', 'validate' => 'date_birthday', 'exclude_year' => true, 'required' => false, 'form_designer' => false ); jrCore_form_field_create($_tm); } return $_data; }
hth
paul
@paul
12/08/16 02:22:18AM
4,335 posts

Events - Timezone Adjustments


Suggestions

Add a 'location' select field to the user account form that translates to +/- hours then add/subtract that from event dates when displaying them?
paul
@paul
12/08/16 02:12:47AM
4,335 posts

Multiple Instances of Documentation Module


Using Jamroom

Glad you got there in the end :-)
Quote: Wondering what other modules could duplicated in this way??
In theory, all of them.
  174