Forum Activity for @sbhadauria

sbhadauria
@sbhadauria
06/18/14 11:37:55PM
129 posts

jamroom datepicker


Jamroom Developers

how can I use jamroom datepicker in template file
updated by @sbhadauria: 07/25/14 06:17:43PM
sbhadauria
@sbhadauria
06/12/14 12:13:39AM
129 posts

JPlayer seek-bar not working


Jamroom Developers

Jamroom seek bar not working in player.
updated by @sbhadauria: 07/14/14 03:41:01PM
sbhadauria
@sbhadauria
06/06/14 09:23:35PM
129 posts

How daily maintenance execute


Jamroom Developers

Daily maintenance execute on client side or server side?
Can I execute cron jobs by daily maintenance?
updated by @sbhadauria: 07/14/14 04:15:42AM
sbhadauria
@sbhadauria
06/02/14 10:03:39PM
129 posts

Union and Join in Jamroom


Jamroom Developers

But we need to run more then one query to getting results from key-value tables.

Any idea for this?
updated by @sbhadauria: 06/02/14 10:04:12PM
sbhadauria
@sbhadauria
06/02/14 09:33:38PM
129 posts

Union and Join in Jamroom


Jamroom Developers

Can be perform Union and Join in Jamroom tables (Key-Value) using key/value.
updated by @sbhadauria: 07/11/14 11:59:29PM
sbhadauria
@sbhadauria
05/16/14 03:44:35AM
129 posts

Modifying Profile fields in profile settings


Jamroom Developers

1.Register event listener in jrModule_init() funtion

jrCore_register_event_listener('jrCore', 'form_display', 'jrModule_profile_form_display');


2.function jrModule_profile_form_display($_data, $_user, $_conf, $_args, $event)
{
switch ($_data['form_view']) {
case 'jrProfile/settings':
// Add your field.
$_tmp = array(
'name' => 'profile_field_name',
'label' => 'Field Label',
'type' => 'text',
'help' => 'Help Text',
'required' => true
);
jrCore_form_field_create($_tmp);
break;
}
return $_data;
}



Done :)
sbhadauria
@sbhadauria
05/01/14 10:40:02PM
129 posts

jrMailer Module Error


Jamroom Developers

I have downloaded the latest core module (jrMailer) and issue has been fixed.

Thanks.
sbhadauria
@sbhadauria
05/01/14 10:03:35PM
129 posts

jrMailer Module Error


Jamroom Developers

I am getting below mentioned error when sending mail through jrMailer Module:

Interface Swift_Mime_ParameterizedHeader not found in /jrMailer/contrib/swiftmailer/classes/Swift/Mime/Headers/ParameterizedHeader.php file.

updated by @sbhadauria: 06/22/14 01:46:29PM
sbhadauria
@sbhadauria
04/16/14 02:58:46AM
129 posts

Downloading media after purchase


Using Jamroom

I have resolved the issue.
I have update the path of downloadable files in view_jrFoxyCart_items action of index.php file of foxycart module.
  12