3.2 & 3.3 Extensions Database 3.2 / 3.3 ⇒ Email List
-
- Users
- Posts: 24
- Joined: 04 Jun 2015, 02:39
Re: Email List
Easier to alter the extension than to explain.
-
- Donator
- Posts: 120
- Joined: 02 Jul 2015, 19:40
Re: Email List
Very usefull ....
thanks
ask: Do you plan to include the option to export the emails for groups?
thanks
ask: Do you plan to include the option to export the emails for groups?
Sorry for my bad English.
I'm a latin american man.
Spanish is my language.
I'm a latin american man.
Spanish is my language.
-
- Users
- Posts: 1
- Joined: 11 Nov 2015, 02:31
Re: Email List
Nice extension and very clean, thank you.
Quick question if I may: All of the other icons in my nav are text free, is it OK to remove the "Email List" portion of the link so just the icon and the rollover title remains?
I wanted to ask before altering. Again, thanks for the ext.
Quick question if I may: All of the other icons in my nav are text free, is it OK to remove the "Email List" portion of the link so just the icon and the rollover title remains?
I wanted to ask before altering. Again, thanks for the ext.
-
- Founder
- Posts: 6464
- Joined: 13 Jan 2014, 21:45
Re: Email List
zendiver wrote:Nice extension and very clean, thank you.
Quick question if I may: All of the other icons in my nav are text free, is it OK to remove the "Email List" portion of the link so just the icon and the rollover title remains?
I wanted to ask before altering. Again, thanks for the ext.
Open: ext/dmzx/emaillist/styles/prosilver/template/event/overall_header_navigation_append.html
Find This may be a partial find and not the whole line
Code: Select all
<!-- IF S_EMAIL_LIST --><li class="small-icon icon-members"><a href="{U_EMAIL_LIST}" title="{L_EMAIL_LIST}" role="menuitem">{L_EMAIL_LIST}</a></li><!-- ENDIF -->
Replace with Replace the preceding lines with the following
Code: Select all
<!-- IF S_EMAIL_LIST --><li class="small-icon icon-members"><a href="{U_EMAIL_LIST}" title="{L_EMAIL_LIST}" role="menuitem"></a></li><!-- ENDIF -->
-
- Donator
- Posts: 120
- Joined: 02 Jul 2015, 19:40
Re: Email List
uruguayito wrote: 12 Aug 2015, 18:55 Very usefull ....
thanks
ask: Do you plan to include the option to export the emails for groups?
-
- Founder
- Posts: 6464
- Joined: 13 Jan 2014, 21:45
Re: Email List
Need to check on this.uruguayito wrote: 19 Aug 2016, 16:33uruguayito wrote: 12 Aug 2015, 18:55 Very usefull ....
thanks
ask: Do you plan to include the option to export the emails for groups?
-
- Users
- Posts: 24
- Joined: 26 Apr 2016, 09:36
Re: Email List
How do I give my global mod access to this aswell as me (founder)?
-
- Admin
- Posts: 5105
- Joined: 06 Apr 2014, 16:12
Re: Email List
Remove the user id code and change to group code maybe some thing like this ? i have not tested.
Code: Select all
// Founders Mods only access
if ($user->data['group_id'] == '5' || $user->data['group_id'] == '4')
{
trigger_error('NOT_AUTHORISED');
}

-
- Users
- Posts: 24
- Joined: 26 Apr 2016, 09:36
Re: Email List
Ive just tried that and for some reason it is ignoring the change and still only allowing founder access
Yes I have cleared cache etc
Yes I have cleared cache etc
-
- Admin
- Posts: 5105
- Joined: 06 Apr 2014, 16:12
Re: Email List
Also there is this in the listener line 73.
change it to groups as well.
Code: Select all
if ($this->user->data['user_type'] != USER_FOUNDER)
change it to groups as well.
-
- Users
- Posts: 24
- Joined: 26 Apr 2016, 09:36
Re: Email List
I assume you mean this:
What do I change it too?
Code: Select all
// Founders only access
if ($this->user->data['user_type'] != USER_FOUNDER)
{
return;
}
// add lang file
$this->user->add_lang_ext('dmzx/emaillist', 'common');
$this->template->assign_vars(array(
'U_EMAIL_LIST' => $this->controller_helper->route('dmzx_emaillist_controller'),
'S_EMAIL_LIST' => ($this->user->data['user_type'] == USER_FOUNDER) ? true : false,
));
-
- Users
- Posts: 5
- Joined: 06 Sep 2016, 19:33
Re: Email List
When logged on as the founder I see the button near top left. So far so good! It takes me to https://forum.xxxxxx.com/app.php/emaillist, but that page is blank. So I can't see the email list. Board version 3.1.9.
Thanks
Thanks
-
- Founder
- Posts: 6464
- Joined: 13 Jan 2014, 21:45
Re: Email List
Can you set redirect in ACP to on to check.humpty wrote: 06 Sep 2016, 19:42 When logged on as the founder I see the button near top left. So far so good! It takes me to https://forum.xxxxxx.com/app.php/emaillist, but that page is blank. So I can't see the email list. Board version 3.1.9.
Thanks
-
- Users
- Posts: 5
- Joined: 06 Sep 2016, 19:33
Re: Email List
Where can I find the redirect in the ACP? (Am not yet familiar with all of phpbb yet!)
Thanks
Thanks