Forum Activity for @paul

paul
@paul
06/17/21 07:07:34AM
4,326 posts

invalid mailbox id - not found


Design and Skin Customization

Sounds like the module's database table(s) have got corrupted somehow. Can you send the site URL and admin login to support[at]jamroom[dot]net so that we can take a look and work out what might have happened?
Thanks
paul
@paul
06/14/21 02:38:13AM
4,326 posts

What are the possibilities with tags?


Ning To Jamroom

Also remember that tags are 'datastore items'. As such they can be searched for as part of Jamroom's general search functionality. We have some users that use tags pretty well exclusively for searching their site.
paul
@paul
06/09/21 02:35:43AM
4,326 posts

Birthdate with year


Jamroom Developers

Got it. If a user has entered a birth year that is pre 1970, the birthday doesn't get shown.
As you say above, the jrCore_date_birthday_format smarty modifier function needs to handle this situation, along with any (euro) formats that you may specify.
I'll get it sorted.
Thanks
paul
@paul
06/09/21 01:50:39AM
4,326 posts

Birthdate with year


Jamroom Developers

TomB:
Is it possible to implement an European format for the birthdate, like %d. %B %Y or %d. %m. %Y as fourth or fifth case?
Thank you

So more options in the Core=>Date and Time=>Date Format select field?
paul
@paul
06/08/21 07:38:19AM
4,326 posts

jrSeamless_list in selfmade extension


Jamroom Developers

The best way to do this would be with two jrCore_list calls -

{jrCore_list 
	module="jrProfile"                                       
	search1="profile_quota_id in 1,6,7,9"
	search2="profile_jrRedBook_item_count > 0" 
	search3="profile_lastname LIKE %`$_post['ss']`% || profile_firstname LIKE %`$_post['ss']`%"
    template="null"
    skip_triggers=true
    return_item_id_only=true
    assign="_pids"
}

{$pids = implode(',', $_pids)}

{jrCore_list 
	module="jrRedBook"                                       
	template="item_list.tpl" 
	pagebreak=30
	page=$_post.p
	pager=true
    profile_id="_profile_id IN `$pids`"
    quota_check=false
}

I have this running on your site using SiteBuilder at https://www.johanniter-intern.de/redbook_test/ss=Ahrens

Note that I had to include quota_check=false in the parameters. I guess some of the RedBook item owners are no longer enabled for this module in their quota settings.
hth
paul
@paul
06/08/21 04:14:44AM
4,326 posts

jrSeamless_list in selfmade extension


Jamroom Developers

I do not know your site domain and cannot remember my user name there.
Please send info to support[at]jamroom[dot]net :-)
paul
@paul
06/08/21 01:20:12AM
4,326 posts

jrSeamless_list in selfmade extension


Jamroom Developers

Send login info to support[at]jamroom[dot]net
paul
@paul
06/08/21 12:17:11AM
4,326 posts

jrSeamless_list in selfmade extension


Jamroom Developers

I'm not familiar with the RedBook module and its datastore key names so cannot advise what search parameters this Seamless call would need. If you can let me have the site details, admin login and the page where this code is I could take a look?
What I can suggest though is that when searching datastore items, the owner profile data is usually included in the results so you make not need to do a 'jrSeamless' call but just a regular 'jrCore_list' with just the jrRedBook as the module parameter.
paul
@paul
06/07/21 12:50:14AM
4,326 posts

jrSeamless_list in selfmade extension


Jamroom Developers

By 'selfmade extension', is that a custom datastore module you have created?
The Seamless module only works with other 'datastore' modules.
If this is the case, let us see the template code you are using so that we can get an idea of what yo are trying.
Thanks
paul
@paul
06/04/21 03:49:07AM
4,326 posts

Birthdate with year


Jamroom Developers

Glad you have it sorted. The Jamroom Birthday module hasn't been looked at in a while. I'll check it out to see if it can be updated.
Thanks
  10