Page 1 of 13

Welcome On Index

Posted: 01 Nov 2014, 18:49
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
User view
User view
Guest responsive view
Guest responsive view
Guest view
Guest view
User responsive view
User responsive view

Download:
welcomeonindex_1.0.5.zip
(23.8 KiB) Downloaded 361 times
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
(23.79 KiB) Downloaded 387 times
welcomeonindex_1.0.3.zip
(15.47 KiB) Downloaded 178 times
welcomeonindex_1.0.2.zip
(12.57 KiB) Downloaded 182 times
welcomeonindex_1.0.1.zip
(13.45 KiB) Downloaded 1069 times

Re: Welcome On Index

Posted: 01 Nov 2014, 22:40
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 ;-)

Re: Welcome On Index

Posted: 01 Nov 2014, 23:34
by Stoker
Should be corrected now, thanks :)

Re: Welcome On Index

Posted: 02 Nov 2014, 11:33
by dmzx
Thanks

Re: Welcome On Index

Posted: 03 Nov 2014, 13:32
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

Re: Welcome On Index

Posted: 03 Nov 2014, 14:06
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',

Re: Welcome On Index

Posted: 03 Nov 2014, 14:07
by dmzx
Check your download its missing there also

Re: Welcome On Index

Posted: 03 Nov 2014, 14:08
by Stoker
Im aware of that. Ill fix it in next update, soon ;)

Re: Welcome On Index

Posted: 03 Nov 2014, 14:09
by dmzx
:thumb:

Re: Welcome On Index

Posted: 12 Nov 2014, 01:40
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.