Invision Community 4: SEO, prepare for v5 and dormant account notifications By Matt Monday at 02:04 PM
sonimik1 Posted September 11, 2017 Posted September 11, 2017 The invitations arrive but do not let create new ones. I always have to make maula registration for users
Adriano Faria Posted September 11, 2017 Author Posted September 11, 2017 Just now, sonimik1 said: The invitations arrive but do not let create new ones. I always have to make maula registration for users Can you be more specific?
sonimik1 Posted September 11, 2017 Posted September 11, 2017 Now it seems to come, but to the spam tray
Adriano Faria Posted September 11, 2017 Author Posted September 11, 2017 2 minutes ago, sonimik1 said: Now it seems to come, but to the spam tray Well, it was coming but not creat ing the account. Now it's goingo to SPAM! Kinda confusing your posts! The fact it goes to SPAM do not depend on the app, unless you have changed something in SMTP or your server is blocking any word on it. I will test on my server. Give me a few minutes. sonimik1 1
sonimik1 Posted September 11, 2017 Posted September 11, 2017 The users told me that they could not register the gutter. I checked and without any problem. only going to spam. If it is in spam maybe that is the reason and users do not know how to activate the account.
hzr Posted September 16, 2017 Posted September 16, 2017 Is there a simple way to call a function or API to increment a userId/username's invite count by one? I'm integrating a separate site (with \IPS\Session\Front::i()) and want to add one in response to verifying their email. Thanks!
Ponury Typ Posted January 11, 2018 Posted January 11, 2018 (edited) Hey i am having trouble with app. For some reason its not sending emails with code. Is there log that i can check to debug (emails from system work fine - i am using smtp with tls )? Edited January 11, 2018 by Ponury Typ
Josiah Wallingford Posted April 16, 2018 Posted April 16, 2018 It would be great to have an invitations system built into clubs so that club members/owners could invite people from outside of the community or by member name to their club. For paid clubs there would need to be an option for the owner to check wether the invited will be added to the club or not automatically after registering. if not they are just sent to their clubs home page. This way the club owner gets to decide if the invited needs to pay or not.
Adriano Faria Posted April 16, 2018 Author Posted April 16, 2018 (edited) The plugin is about the whole community, not about a club(you can invite people to clubs already) but I’ll take a look when the storm (update several resources due to new IPS version) goes away. Edited April 16, 2018 by Adriano Faria
j4ss Posted April 25, 2018 Posted April 25, 2018 Hello, can we choose which group can send an invitation?
Pete Cumberland Posted May 19, 2018 Posted May 19, 2018 (edited) Hi Adriano, I've just created my first private, invite only forum. I'm using your Invite system, and so far, it's great! Just a couple of questions / feature requests. 1. Can I alter the text of the invitation? I'd like to make it a bit more personal, and add some help information. The members will mostly be fairly old, non-technical people who need a lot of hand-holding. 2. Related to the above, I'd like to remove the second of the two buttons ( the "go to the forum" button ) in the invitation email. It's not really any use since at this stage, the invitee won't be a member yet anyway. Or maybe make the "sign up" button much more prominent so it's clearly the correct one to click? Many thanks! Pete Edited May 19, 2018 by Pete Cumberland
Adriano Faria Posted May 19, 2018 Author Posted May 19, 2018 4 minutes ago, Pete Cumberland said: Hi Adriano, I've just created my first private, invite only forum. I'm using your Invite system, and so far, it's great! Just a couple of questions / feature requests. 1. Can I alter the text of the invitation? I'd like to make it a bit more personal, and add some help information. The members will mostly be fairly old, non-technical people who need a lot of hand-holding. 2. Related to the above, I'd like to remove the second of the two buttons ( the "go to the forum" button ) in the invitation email. It's not really any use since at this stage, the invitee won't be a member yet anyway. Or maybe make the "sign up" button much more prominent so it's clearly the correct one to click? Many thanks! Pete Hi Pete. Yes, you can customize all the texts and the email template directly in your ACP. For the lang bits: Language bits: invite_email_text_user, invite_email_text2 and invite_email_text3. You can change them in ACP -> Customization -> Languages -> in the row of your language, click in the Translate button (globe) and then search for the keys above and add whatever you want in the empty textarea that will be there. For the email template: Still on ACP -> Customization , go to Emails and find emailtpl_invite_system (missing the language bit; I'll add in next version). Click in the pencil to edit it. You'll see the HTML and the Plain text templates. Edit as you wish. Just keep the variables (tags). Pete Cumberland 1
Pete Cumberland Posted May 19, 2018 Posted May 19, 2018 2 minutes ago, Adriano Faria said: Hi Pete. Yes, you can customize all the texts and the email template directly in your ACP. Blimey.. that was quick! Thank you! Perfect!. Pete
Pete Cumberland Posted May 19, 2018 Posted May 19, 2018 (edited) 5 hours ago, Adriano Faria said: Language bits: invite_email_text_user, invite_email_text2 and invite_email_text3. You can change them in ACP -> Customization -> Languages -> in the row of your language, click in the Translate button (globe) and then search for the keys above and add whatever you want in the empty textarea that will be there. Possible bug. The invite_email_text3 key doesn't seem to update the email output with any new text in the text area next to it. At least for me anyway. Other than that, all good! ? Pete Edited May 19, 2018 by Pete Cumberland
Adriano Faria Posted May 19, 2018 Author Posted May 19, 2018 2 minutes ago, Pete Cumberland said: Possible bug. The invite_email_text3 key doesn't seem to update the email output with any new text in the text area next to it. Checking it I see it only shows if the invitation hasn't an expire date: {{if \IPS\Settings::i()->is_expireinvite > 0}} {expression="$email->language->addToStack( 'invite_email_text2', FALSE, array( 'sprintf' => array( \IPS\DateTime::ts( $newDate|raw ) ) ) )"} {{else}} {$email->language->addToStack("invite_email_text3", FALSE)}: {{endif}} So if you use anythinig different than Never in Invitation expires after X days setting, you will see invite_email_text2. Is that the case?
Pete Cumberland Posted May 19, 2018 Posted May 19, 2018 (edited) 12 minutes ago, Adriano Faria said: Checking it I see it only shows if the invitation hasn't an expire date: {{if \IPS\Settings::i()->is_expireinvite > 0}} {expression="$email->language->addToStack( 'invite_email_text2', FALSE, array( 'sprintf' => array( \IPS\DateTime::ts( $newDate|raw ) ) ) )"} {{else}} {$email->language->addToStack("invite_email_text3", FALSE)}: {{endif}} So if you use anythinig different than Never in Invitation expires after X days setting, you will see invite_email_text2. Is that the case? I don't recall touching the invitation expiry settings.. according to the emailed invites, they expire in 30 days, which works for me. However the text in invite_email_text3 does appear in all of the invites. I haven't been able to get rid of it, whatever I put in the textarea. EDIT: I can see and change the text in invite_email_text2 just fine. TBH I was confused as to why it was in an if-then-else loop.. I'm no HTML expert though so I assumed I was just misunderstanding something.. Edited May 19, 2018 by Pete Cumberland
Adriano Faria Posted May 19, 2018 Author Posted May 19, 2018 Ok, I'll test it tomorrow. Pete Cumberland 1
Adriano Faria Posted May 19, 2018 Author Posted May 19, 2018 10 minutes ago, Pete Cumberland said: EDIT: I can see and change the text in invite_email_text2 just fine. TBH I was confused as to why it was in an if-then-else loop.. I'm no HTML expert though so I assumed I was just misunderstanding something.. Just to be clear: what is the issue exactly? You can't translate text3 or is it always showing when it shouldn't?
Pete Cumberland Posted May 19, 2018 Posted May 19, 2018 (edited) 6 minutes ago, Adriano Faria said: Just to be clear: what is the issue exactly? You can't translate text3 or is it always showing when it shouldn't? Basically I wanted to either change that particular bit of text as it appears in the email, to give fuller instructions... or remove it all together. I even tried commenting the code out within the loop, and it still appeared in the email! Most peculiar. No rush from my end. I've got the email looking good enough for now, but I thought I should mention it. Edited May 19, 2018 by Pete Cumberland Adriano Faria 1
Pete Cumberland Posted May 19, 2018 Posted May 19, 2018 (edited) BTW.. I just noticed your version disclaimer. You mention 4.3.0 FINAL. as the most recent supported version. I'm on 4.3.2. Not a beta release though. it was mooted as the most up to date "stable" release, as I recall... could this be the problem? Sorry if it is. Like I say, it's good enough for now. EDIT: I only installed the board on thursday.. my first time with anything this, and didn't find your application until the next day. Edited May 19, 2018 by Pete Cumberland
Adriano Faria Posted May 19, 2018 Author Posted May 19, 2018 It's 4.3.X compatible/supported. Pete Cumberland 1
Josiah Wallingford Posted May 25, 2018 Posted May 25, 2018 I don't see the invite system button on mobile. Most users these days tend to be mobile and I am hoping they will start inviting people to the community from their phones. How do I get the button to show up on mobile view?
Adriano Faria Posted May 25, 2018 Author Posted May 25, 2018 Will have to release a new version, unless you edit a template.
Josiah Wallingford Posted May 25, 2018 Posted May 25, 2018 1 hour ago, Adriano Faria said: Will have to release a new version, unless you edit a template. Probably best if I wait for a new version. I don't want to waste your time by having you teach me how to edit the template.
Recommended Posts