News:

SMF 2.1.6 has been released! Take it for a spin! Read more.

Main Menu

PostPrefix

Started by JayBachatero, June 28, 2006, 10:26:20 AM

Previous topic - Next topic

hcfwesker

Oh, ok.  I see.  My bad, then.  It looks very nice, and I may check it out.  Thing is, I wanted to be able to see the feedback and support, so I could get an idea at what I'd be paying for.  I know it lists all the features, but, as I said up above, there's one issue with this MOD, that I wouldn't know if your MOD had as well, unless I pay for it then find out later.

KensonPlays

@hcfwesker: I have bought this and think it is worth it!

Owner of Mesozoic Haven

hcfwesker

Quote from: Kcmartz on April 16, 2010, 10:53:12 AM
@hcfwesker: I have bought this and think it is worth it!
I've already purchased.  Just being patient and awaiting for a reply.

KensonPlays

Ok. It took me a day to get it, I had to forward part of my receipt to him, then he gave me permission to download link...

Owner of Mesozoic Haven


ukhalik2

I manually tried to install this on my smf 2.0rc3
but, i can find this

// Update the actual settings.
updateSettings(array(
'removeNestedQuotes' => empty($_POST['removeNestedQuotes']) ? '0' : '1',

in ./Sources/ManagePosts.php

any help to install this on smf2.0rc3 ?

Nibogo

Quote from: ukhalik2 on May 27, 2010, 02:42:14 AM
I manually tried to install this on my smf 2.0rc3
but, i can find this

// Update the actual settings.
updateSettings(array(
'removeNestedQuotes' => empty($_POST['removeNestedQuotes']) ? '0' : '1',

in ./Sources/ManagePosts.php

any help to install this on smf2.0rc3 ?

It doesn't work on SMF 2.0 RC3, the only prefix mod working on that version is this:

http://www.smfpacks.com/index.php?action=page;sa=atp

You can see the Compare tab to see the difference in all the available versions

Kangel

#207
Quote from: Boby_ on November 19, 2008, 02:09:22 AM
Great mod but rather unfinished.  :D

I've made some modifications to make the following things:
1. To choose a single board for the mod (it works on all or none now)

1. Take a look in your MySQL database and find out the ID of the board you want to be able to post a prefixes in.
You can also find out your board ID by entering the board and taking a short look to the address barr:

Instead of
if ((allowedTo('post_prefix')) && $context['is_first_post'] && $context['current_board'] == 8)
I've put there something like
if (allowedTo('post_prefix') && $context['is_first_post'] && in_array($context['current_board'], explode(',',$modSettings['post_prefix_boards'])))
so it works on selected board and it doesn't on unselected :)

Edit: Read this: I looked a bit through the code and found the way that script acts during checking "all boards". I think the line above should look like
if (allowedTo('post_prefix') && $context['is_first_post'] && ($modSettings['post_prefix_boards'] == 0 || in_array($context['current_board'], explode(',',$modSettings['post_prefix_boards']))))

I also added "second" Post Prefix mode so I could use two different sets of prefixes on two different boards. I simply replaced all "post_prefix" with "post_prefixx" in install.xml of the package and uploaded in as another extension :)

Advertisement: