Discussion topic for the PhpBB3 BBCodes Premod

Modifications for phpBB3.
Try the Mods here and share Your own Mods
Forum rules
You dont have to use ModX or make your mod AutoMod compatible. A simple textfile is fine
But if you post Mods here You also have to give support

Discussion topic for the PhpBB3 BBCodes Premod

Post by Stoker »

Discuss the PhpBB3 BBCodes Premod here.

Discussion topic for the PhpBB3 BBCodes Premod

Post 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

Post by Neo »

Sweet, nice work Stoker 8-)

Discussion topic for the PhpBB3 BBCodes Premod

Post 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

Post by zetaenne »

Can I have the italian translation for the PhpBB3 BBCodes Premod?

Discussion topic for the PhpBB3 BBCodes Premod

Post 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

Post 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

Post 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

Post by newsbee »

BTW, where are the words "Characters left: 12345"? I need to translate that as well.

Discussion topic for the PhpBB3 BBCodes Premod

Post 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