Extensions & Styles for phpBB 3.1.X
Maintained and supported by Stoker
Post
by Stoker » 01 Nov 2014, 16:49
Extension Name: Welcome On Index
Author: Stoker
Description:
Welcome on index is inspired by a vBulletin board. It displays a nice Welcome Box on forum index with Avatar, a welcome message (changes during the day), user info, statistics and online info.
Collapse addon, now works with:
Collapsible Forum Categories
Now with config:
Enable/disable the extension
Enable/disable Avatar display
Enable/disable Welcome time of day message
Enable/disable joined info
Configure your own welcome message
Users can enable/disable display of welcome ext in UCP -> Board Prefs
Version: 1.0.5
100%
Demo:
Dev version is on this board
acp-welcomeonindex.png
welcomeonindexuser.png
welcomeonindexguestresponsive.png
welcomeonindexguest.png
welcomeonindexuserresponsive.png
Download:
welcomeonindex_1.0.5.zip
Installation:
Copy the entire contents of the repository to ext/stoker/welcomeonindex/
Navigate in the ACP to Customise -> Extension Management -> Extensions.
Click Enable.
Known bugs:
None
welcomeonindex_1.0.4.zip
welcomeonindex_1.0.3.zip
welcomeonindex_1.0.2.zip
welcomeonindex_1.0.1.zip
You do not have the required permissions to view the files attached to this post.
Last edited by Stoker on 20 Feb 2025, 06:59, edited 1 time in total.
Post
by Albatros69 » 01 Nov 2014, 20:40
Hi Stoker, you added the MOD for 3.0.x, please can you add the extension or is it not ready yet?
Thanks for going so fast with converting your MODs
Post
by Stoker » 01 Nov 2014, 21:34
Should be corrected now, thanks
Post
by dmzx » 02 Nov 2014, 09:33
Thanks
Post
by dmzx » 03 Nov 2014, 11:32
get this error:
PHP Notice: in file [ROOT]/ext/stoker/welcomeonindex/core/functions_welcomeonindex.php on line 93: Undefined index: GOOD_DAY
missing lang edit
Last edited by dmzx on 03 Nov 2014, 12:06, edited 1 time in total.
Post
by Stoker » 03 Nov 2014, 12:06
dmzx wrote: get this error:
PHP Notice: in file [ROOT]/ext/stoker/welcomeonindex/core/functions_welcomeonindex.php on line 93: Undefined index: GOOD_DAY
That is caused by a missing language entry.
Open
Code: Select all
/httpdocs/ext/stoker/welcomeonindex/language/en/welcomeonindex.php
Find
Code: Select all
'GOOD_MORNING' => 'Good Morning %1$s, What a lovely morning it is',
Add after:
Code: Select all
'GOOD_DAY' => 'Good day %1$s, Hope you enjoy your time here',
Post
by dmzx » 03 Nov 2014, 12:07
Check your download its missing there also
Post
by Stoker » 03 Nov 2014, 12:08
Im aware of that. Ill fix it in next update, soon
Post
by dmzx » 03 Nov 2014, 12:09
Post
by Sniper_E » 11 Nov 2014, 23:40
I've been playing with your template and having some issues. See if you like this template for your mod.
I have it working my mobile device view also.
But
I'm not sure how to get the avatar to go away in the upright view. In the 550px or 430px max-width:
index_body_markforums_before.html
Code: Select all
<!-- IF not S_IS_BOT -->
<div class="forabg">
<div class="inner">
<ul class="topiclist">
<li class="header">
<dl class="icon">
<dt><div class="list-inner">{L_WELCOME_TO_MOD} {SITENAME}</div></dt>
</dl>
</li>
</ul>
<ul class="topiclist forums">
<li class="row">
<dl>
<dt>
<div class="list-inner">
<span class="forum-image"><!-- IF CURRENT_USER_AVATAR -->{CURRENT_USER_AVATAR}<!-- ELSE --><img src="{T_THEME_PATH}/images/no_avatar.gif" alt="" /><!-- ENDIF --></span>
<h4>{S_WELCOME}</h4>
<span><br /><!-- IF S_USER_LOGGED_IN -->{LAST_VISIT_DATE}<br />{CURRENT_TIME}<!-- ELSE -->{CURRENT_TIME}<!-- ENDIF --></span>
<!-- IF S_USER_LOGGED_IN --><span><br /><br />{S_JOINED_DATE}<br />{MEMBER_FOR}</span><!-- ENDIF -->
</div>
</dt>
<dd class="lastpost" style="padding-left: 6px">
<!-- IF S_USER_LOGGED_IN --><span>{TOTAL_POSTS} • {TOTAL_TOPICS}<br />{TOTAL_USERS}<br />{NEWEST_USER}<br /><br /><!-- ENDIF -->
<!-- IF S_DISPLAY_ONLINE_LIST -->{TOTAL_USERS_ONLINE} ({L_ONLINE_EXPLAIN})<!-- ENDIF --></span>
</dd>
</dl>
</li>
</ul>
</div>
</div>
<!-- ENDIF -->
Maybe you can look at this and work your magic on it.
Last edited by Sniper_E on 13 Nov 2014, 02:28, edited 2 times in total.