Page 1 of 5

Discussion topic for the PhpBB3 BBCodes Premod

Posted: 09 Aug 2011, 21:02
by Stoker
Discuss the PhpBB3 BBCodes Premod here.

Discussion topic for the PhpBB3 BBCodes Premod

Posted: 10 Aug 2011, 23:40
by EliteNODDY
i just wanna say thank you for doing this as this will help me alot thanks again

Discussion topic for the PhpBB3 BBCodes Premod

Posted: 11 Aug 2011, 13:38
by Neo
Sweet, nice work Stoker 8-)

Discussion topic for the PhpBB3 BBCodes Premod

Posted: 11 Aug 2011, 14:59
by martin123456
This aint sweet it's awsome thanx stoker you done a awsome job :thumb:

Think i need to be a donator :D

Discussion topic for the PhpBB3 BBCodes Premod

Posted: 27 Aug 2011, 12:05
by zetaenne
Can I have the italian translation for the PhpBB3 BBCodes Premod?

Discussion topic for the PhpBB3 BBCodes Premod

Posted: 04 Sep 2011, 12:55
by varioles
Hi stoker,

It seems to me that there is a forgotten for modpc, it lacks an additional code in overall_header ....
in three of the three style file in the package ....
In addition modpc.php file does not exist, is replaced by./modpc/index.php

./style/se_pro/template/overall_header

search

Code: Select all

<!-- IF U_ACP --><li class="menu_button"><a href="{U_ACP}"><span>ACP</span></a></li><!-- ENDIF -->
add before:

Code: Select all

<li class="menu_button"><a href="radio.php" onclick="window.open('radio.php','','toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=yes, width=440, height=380, left=20, top=20'); return false;">{L_RADIO}</a></li>
<li class="menu_button"><a href="./modcp/index.php">{L_MCPPRANK}</a></li>

./style/prosilver/template/overall_header

search

Code: Select all

<!-- IF U_ACP --><a href="{U_ACP}"><span>ACP</span></a></li><!-- ENDIF -->
add before:

Code: Select all

<li><a href="radio.php" onclick="window.open('radio.php','','toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=yes, width=440, height=380, left=20, top=20'); return false;">{L_RADIO}</a></li>
<li><a href="./modcp/index.php">Moderator Control Panel</a></li>
I do not know if this is good or not, having said that I caused myself to do that, otherwise good job, if I have time, I would translate the language package in French ;)

Discussion topic for the PhpBB3 BBCodes Premod

Posted: 04 Sep 2011, 15:10
by Stoker
varioles, the code is included in index_body.html, viewforum_body.html and viewtopic_body.html so nothing is missing.
But you can safely add the code again in overall_header.html too

Discussion topic for the PhpBB3 BBCodes Premod

Posted: 06 Jan 2012, 16:07
by newsbee
Stoker, I've downloaded and installed your premod, upgraded it to 3.0.10 without a problem. Thanks!
Had to remove the Donate link as PayPay doesn't fully function in Russia anyway.
Of course, had to translate all the mods and extra stuff into Russian (what I was able to find). Some words still appear in English, but I'll eventually find where they come from ;

Of course, I've installed it on a new board. :ugeek:

PS. Social nets - only a link is transferred to Twitter, not the article title.

Discussion topic for the PhpBB3 BBCodes Premod

Posted: 09 Jan 2012, 10:29
by newsbee
BTW, where are the words "Characters left: 12345"? I need to translate that as well.

Discussion topic for the PhpBB3 BBCodes Premod

Posted: 09 Jan 2012, 10:44
by Solidjeuh
newsbee wrote:BTW, where are the words "Characters left: 12345"? I need to translate that as well.
language/en/common.php

Code: Select all

// jQuery Live Character Counter MOD
$lang = array_merge($lang, array(
	'MESSAGE_BODY_LIMIT_EXPLAIN'	=> 'Characters remaining: <span class="charsLeft error"><strong>%d</strong></span>',
));
// jQuery Live Character Counter MOD