Forum Activity for @michael

michael
@michael
05/14/19 12:44:35AM
7,839 posts

Askimet With A Jamroom Site


Using Jamroom

If you have activated the Askimet part of the Spam Blocker module, then any newly created item will be sent off to akismet and checked to see if its spam or not. If Askimet returns that "Yes this is spam" then the item will be tagged as 'pending' and will appear to your admin users at
DASHBOARD -> PENDING -> (item type)

From there the admin can either approve or delete the offending item.
michael
@michael
05/14/19 12:35:09AM
7,839 posts

Change Names Of Icons And Titles


Using Jamroom

Probably you're looking for the language strings.

Docs: "Translate Jamroom into another language"
https://www.jamroom.net/the-jamroom-network/documentation/jamroom-admin-handbook/541/translate-jamroom-into-another-language

Each of the language strings can be changed in the ACP (Admin Control Panel)

Docs: "Admin Control Panel (ACP)"
https://www.jamroom.net/the-jamroom-network/documentation/jamroom-admin-handbook/3067/admin-control-panel-acp

Update the string your interested in, then reset the caches.

Docs: "Somethings wrong what do I do: Reset the cache"
https://www.jamroom.net/the-jamroom-network/documentation/troubleshooting/114/somethings-wrong-what-do-i-do#reset-the-caches
michael
@michael
05/12/19 09:15:42PM
7,839 posts

custom forms send to custom email


Suggestions

At the moment a listener would be the way to do it:

Docs: "Events and Listeners"
https://www.jamroom.net/the-jamroom-network/documentation/module-developer-guide/1011/events-and-listeners

The jrUser_notify() function is the one that does all the sending and checking of users preference of how they want to be notified and it has an event trigger in it 'notify_user'.

OR if you're only interested in emails, then there is the event 'email_addresses' in the jrCore_send_email() function.

You could use your listener to add any address you wanted into there.
michael
@michael
05/12/19 09:10:00PM
7,839 posts

is there a way to only alow signups through paid subscriptions?


Using Jamroom

allow non-paid signups, but keep them in a quota with all features disabled. When they pay, move them to a quota with access to everything.

With the Foxycart module I remember there being a way to sell subscriptions to non-logged in users, maybe its that you're remembering. Not sure if that exists in the new jrSubscription module.
michael
@michael
05/12/19 09:05:07PM
7,839 posts

integrity check stalls on verifying followers


Using Jamroom

There's something wrong related to the file system around the name jrFollowers.

Delete the directory /modules/jrFollowers module via SFTP then reinstall it from the marketplace.

Run the integrity check.

I'm guessing there is some other file in the /modules/ folder that is blocking writing of jrFollowers to the server.

I attached the followers module is attached to the ticket if you want to upload it yourself instead of using the marketplace.
updated by @michael: 05/12/19 09:05:23PM
michael
@michael
05/11/19 01:39:33AM
7,839 posts

Disable Marketplace Update Emails


Using Jamroom

Go into your ACCOUNT SETTINGS page and disable "Updates Available" notification.
updates_available.jpg updates_available.jpg - 68KB
michael
@michael
05/07/19 08:39:13PM
7,839 posts

integrity check stalls on verifying followers


Using Jamroom

Send me your admin login details and I'll run the integrity check and see if I can see anything.
support at jamroom dot net.

Thanks.
michael
@michael
05/07/19 08:36:49PM
7,839 posts

landing pages? not seeming to work


Using Jamroom

Could you outline some steps for me so I can setup on my site to check this out. I'm not understanding the directions sorry.
michael
@michael
05/04/19 11:00:13PM
7,839 posts

or statement not working


Design and Skin Customization

I don't know what $profile_quota_id is in that template location, but I guess that its not '44'.

What I would do is add:
THE VALUE OF $profile_quota_id IS: {$profile_quota_id}
to the template to see what the value of it is.

The other way to see what it is is to add a {debug}.

Docs: "{debug}"
https://www.jamroom.net/the-jamroom-network/documentation/module-developer-guide/1477/debug
michael
@michael
05/04/19 07:42:06PM
7,839 posts

or statement not working


Design and Skin Customization

this:
{if $profile_quota_id = '44' }
is setting the value of $profile_quota_id to 44.

This:
{if $profile_quota_id == '44'} 
is checking if the value of profile_quota_id is 44
  90