MyBB Hacks

Full Version: vB Quote
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3 4 5 6 7 8 9 10
(05-31-2011 05:42 AM)Sama34 Wrote: [ -> ]

Code:
Hide To Guests (0.3.1)


Try to deactivate/disable the plugin.
(05-31-2011 06:22 AM)RateU Wrote: [ -> ]
(05-31-2011 05:42 AM)Sama34 Wrote: [ -> ]

Code:
Hide To Guests (0.3.1)


Try to deactivate/disable the plugin.

It worked! Thanks Smile Is there a problem with this plugin or something?
Glad you can solve the problem Smile

Not quite sure, you need to wait Yumi/ZiNgA to reply.

@ Yumi: Just for a "shortcut" Biggrin
http://mods.mybb.com/view/hide-to-guests
The plugin copies all MyBB functionality and limits a number of variables to local scope.
Haven't tried, but maybe try this:
find:

PHP Code:
function HideToGuests_xmlhttp_multiquote()
{
    global $mybb, $db;

replace with:

PHP Code:
function HideToGuests_xmlhttp_multiquote()
{
    global $mybb, $db, $parser, $message;

Yes, it worked replacing than ZiNgA BuRgA, thank you. Thanks to RateU too Biggrin
I have installed those two plugins:

Code:
Preparser Cache (1.11)
imei Page Optimizer! (1.0.1)


The code is show when quoting and editing, but it isn't there when I reload the page.

Is there any problem regarding any of the above plugins?

(Preparser Cache (1.11) is installed but deactivated)

I read there is a issue with Preparser Cache (1.11) but I didn't find the solution/information about it.

Thanks for helping Tongue

Preparser cache will work with it.
I don't know about the page optimiser plugin.
Thanks Zinga Burga, it was the imei Page Optimizer plugin, can you find the problem please? If not, don't worry, it is not than necessary anyways Tongue

Thanks again. Biggrin
It's stripping out comments needed by this plugin.  Maybe try this, find:

PHP Code:
$plugins->add_hook("pre_output_page", "imeiPageOptimizer");

Replace with

PHP Code:
$plugins->add_hook("pre_output_page", "imeiPageOptimizer", 9999);

(06-08-2011 11:35 AM)ZiNgA BuRgA Wrote: [ -> ]It's stripping out comments needed by this plugin.  Maybe try this, find:

PHP Code:
$plugins->add_hook("pre_output_page", "imeiPageOptimizer");

Replace with

PHP Code:
$plugins->add_hook("pre_output_page", "imeiPageOptimizer", 9999);


It worked! Thanks for taking the time Zinga Burga Smile

Pd: Next time will not forget to leave a download link (:
Pages: 1 2 3 4 5 6 7 8 9 10
Reference URL's