Welcome On Index

Extensions & Styles for phpBB 3.1.X maintained and supported by Stoker
User avatar
Stoker
Site Admin
Site Admin
Posts: 3573
Joined: 12 May 2008, 21:26
BBCodes: 239
Favourite BBCode: Anipro
Favourite MOD: PrettyPhoto
Location: Denmark

Welcome On Index

Post by Stoker »

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
Please make a Donation

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:
  1. Copy the entire contents of the repository to ext/stoker/welcomeonindex/
  2. Navigate in the ACP to Customise -> Extension Management -> Extensions.
  3. Click Enable.
Known bugs:
None

Older versions

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.
The greatest achievement in life is to inspire others
Board rules! No PM support
Albatros69
BBCoder I
BBCoder I
Posts: 2
Joined: 13 Oct 2012, 16:43
BBCodes: 10

Re: Welcome On Index

Post by Albatros69 »

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 ;-)
User avatar
Stoker
Site Admin
Site Admin
Posts: 3573
Joined: 12 May 2008, 21:26
BBCodes: 239
Favourite BBCode: Anipro
Favourite MOD: PrettyPhoto
Location: Denmark

Re: Welcome On Index

Post by Stoker »

Should be corrected now, thanks :)
The greatest achievement in life is to inspire others
Board rules! No PM support
User avatar
dmzx
BBCoder II
BBCoder II
Posts: 23
Joined: 02 Mar 2014, 12:30
BBCodes: 0

Re: Welcome On Index

Post by dmzx »

Thanks
User avatar
dmzx
BBCoder II
BBCoder II
Posts: 23
Joined: 02 Mar 2014, 12:30
BBCodes: 0

Re: Welcome On Index

Post by dmzx »

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.
User avatar
Stoker
Site Admin
Site Admin
Posts: 3573
Joined: 12 May 2008, 21:26
BBCodes: 239
Favourite BBCode: Anipro
Favourite MOD: PrettyPhoto
Location: Denmark

Re: Welcome On Index

Post by Stoker »

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',
The greatest achievement in life is to inspire others
Board rules! No PM support
User avatar
dmzx
BBCoder II
BBCoder II
Posts: 23
Joined: 02 Mar 2014, 12:30
BBCodes: 0

Re: Welcome On Index

Post by dmzx »

Check your download its missing there also
User avatar
Stoker
Site Admin
Site Admin
Posts: 3573
Joined: 12 May 2008, 21:26
BBCodes: 239
Favourite BBCode: Anipro
Favourite MOD: PrettyPhoto
Location: Denmark

Re: Welcome On Index

Post by Stoker »

Im aware of that. Ill fix it in next update, soon ;)
The greatest achievement in life is to inspire others
Board rules! No PM support
User avatar
dmzx
BBCoder II
BBCoder II
Posts: 23
Joined: 02 Mar 2014, 12:30
BBCodes: 0

Re: Welcome On Index

Post by dmzx »

:thumb:
User avatar
Sniper_E
BBCoder II
BBCoder II
Posts: 44
Joined: 04 Dec 2011, 04:30
BBCodes: 1

Re: Welcome On Index

Post by Sniper_E »

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} &bull; {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.
No is NEVER an Option and NEVER is the only Option when it comes to Giving Up!