News:

Bored?  Looking to kill some time?  Want to chat with other SMF users?  Join us in IRC chat or Discord

Main Menu

Show User Posts By Certain Boards

Started by live627, November 07, 2011, 04:18:00 AM

Previous topic - Next topic

live627

Link to the mod

Show User Posts By Certain Boards

A simple modification which allows users to filter results as shown by show posts/topics/attachments in the profile section of a user to specific boards.

View changelog


4Kstore


¡¡NEW MOD: Sparkles User Names!!!

MiY4Gi

Would it be possible to use board titles instead of board id's, even if I have to hard-code it into my forum?
Check out my new website, MyAnimeClub.net. I plan to create the largest anime community, and most fun and user-friendly anime forum in the world. It's still in the development stage though.

ascaland

Quote from: MiY4Gi on November 10, 2011, 11:07:50 AM
Would it be possible to use board titles instead of board id's, even if I have to hard-code it into my forum?

Im actually going to be doing that with the built-in SMF dropdown feature. Should be up this weekend if I can get my customization site up!

digger


ascaland

Quote from: digger on November 10, 2011, 05:24:56 PM
What about specific topic id(s)?

I COULD, but im thinking thats more along the lines of a different sort of modification.

danielwmoore

Quote from: Project Evolution on November 10, 2011, 04:33:14 PM
Quote from: MiY4Gi on November 10, 2011, 11:07:50 AM
Would it be possible to use board titles instead of board id's, even if I have to hard-code it into my forum?

Im actually going to be doing that with the built-in SMF dropdown feature. Should be up this weekend if I can get my customization site up!

That's the one I want.  I've had moderators at my site requesting this ability.

ascaland

Version 1.1 is now up and features the awaited dropdown suggestion menu! Please report any issues you have with it.

oove

The new version works a bit weird. Firstly, it needs first 3 characters for droplist even to show, which doesn't work with some of my 2 char. boards (for example, IT, PE, etc.). Secondly, I can't just type "board_title", I have to select it from the list, and when I do that - it transforms to integer (board id), which is a bit confusing.

It would be much better just to type in board title, press filter, and get the results, IMO.

ascaland

The dropdown only works after you type 3 characters for each board, it doesnt make much sense to query the entire database just to get an extra character in the text field. As for the integer, this is to avoid having to match entire strings in the database, which is more efficient especially if you have a lot of boards and big names (not to mention avoiding special characters).

hcfwesker

Just want to tell you this MOD is awesome, and very much appreciated.   I had a member request a feature like this months ago and could finally get this added.  thank you very much. :)

And, I would also like the suggestion to search topics, as well, even if you do make a separate MOD, that would be greatly appreciated.

The only thing I would like added to this MOD, is if boards are Ignored by members, they don't show in the search, even for admins.

ascaland

Quote from: hcfwesker on November 15, 2011, 03:35:45 PM
Just want to tell you this MOD is awesome, and very much appreciated.   I had a member request a feature like this months ago and could finally get this added.  thank you very much. :)

And, I would also like the suggestion to search topics, as well, even if you do make a separate MOD, that would be greatly appreciated.

The only thing I would like added to this MOD, is if boards are Ignored by members, they don't show in the search, even for admins.

Thanks! Definitely going to be reworking the query this weekend.

ascaland

I have just updated the mod with a little bug fix, it would show board names that are supposed to be set for them not to see. This has been fixed.

hcfwesker

Quote from: Project Evolution on November 18, 2011, 05:10:09 PM
I have just updated the mod with a little bug fix, it would show board names that are supposed to be set for them not to see. This has been fixed.

I didn't even think to test that ... Very nice update!  Any chance you can show the edit that needs to be done manually.  I get 2 uninstall errors, but when I click to see what they are, it shows two blanks in the box.

ascaland

In Subs-Editor.php I changed the query,
Code (From) Select
// Find the board(s).
$request = $smcFunc['db_query']('', '
SELECT id_board, name
FROM {db_prefix}boards
WHERE name LIKE {string:search}
LIMIT ' . ($smcFunc['strlen']($_REQUEST['search']) <= 2 ? '100' : '800'),
array(
'search' => $_REQUEST['search'],
)
);


Code (To) Select
// Find the board(s).
$request = $smcFunc['db_query']('', '
SELECT id_board, name
FROM {db_prefix}boards AS b
WHERE {query_see_board} AND name LIKE {string:search}
LIMIT ' . ($smcFunc['strlen']($_REQUEST['search']) <= 2 ? '100' : '800'),
array(
'search' => $_REQUEST['search'],
)
);

hcfwesker

Thank you so much!  Look forward to future updates :)

samurai-lupin

Hello, this looks like a great mod! Could you please also do a version for SMF 1.1 ? Thank you

ascaland

Quote from: samurai-lupin on December 27, 2011, 11:09:45 PM
Hello, this looks like a great mod! Could you please also do a version for SMF 1.1 ? Thank you

To be honest im not very fond of updating mods for legacy versions of SMF. :-\

Jeff B

Everything looks good on my board, it installed without flaw, but it doesn't do anything when you click filter, no matter what board you choose, the results remain the same. Something I may be missing?

ascaland

Quote from: Jeff B on January 02, 2012, 10:42:44 PM
Everything looks good on my board, it installed without flaw, but it doesn't do anything when you click filter, no matter what board you choose, the results remain the same. Something I may be missing?

Odd... Did it install properly? Were there any errors during installation? Anything in error log?

Jeff B

It installed without error.   I just checked the error log. Yup, all kinds of them

2: Wrong parameter count for array_unique()
Apply Filter: Only show the errors from this file
File: /var/www/virtual/XXXXXXXXX.com/htdocs/board/Sources/Profile-View.php
Line: 277

ascaland


Jeff B


ascaland

Quote from: Jeff B on January 03, 2012, 05:26:19 AM
PHP Version 5.2.6-1+lenny9

A fix you can try is going to Profile-View.php and replacing this,
$context['boards'] = empty($board_list) ? 0 : array_unique(explode(',', str_replace(' ', '', $board_list)), SORT_NUMERIC);

With,
$context['boards'] = empty($board_list) ? 0 : array_unique(explode(',', str_replace(' ', '', $board_list)));

What I did is I removed the second optional parameter of array_unique. Please give this a try and start using the mod, and let me know if you get any problems!

Jeff B

Sorry for the long delay in responding as I was out of town.  I had uninstalled the mod, but reinstalled it this morning and did the edit suggested and things seem to work so far.  :)

Thank you.  I'll keep you posted if I find any issues.

littlenicki

Hello, this sounds like a great mod. Could it be backported to SMF 1.1 please? Thank you!
Fomer SMF user. Switched to Invision Power Board and VBulletin

ascaland

Quote from: littlenicki on July 28, 2012, 12:42:02 PM
Hello, this sounds like a great mod. Could it be backported to SMF 1.1 please? Thank you!

Sorry, I don't backport to unsupported/legacy versions anymore.

1.1.2 is now under the GNU/GPL.

Arantor

And you can't actually legitimately backport that to 1.1.x - GNU GPL is incompatible with SMF 1.1.x's licence.

stylusss

Was this previous done on 1.x? I would like this mod.
For top-notch server quality and expertise, visit CoreISP.net

littlenicki

Hello, I also really would appreciate a SMF 1.1 version of this great mod
Fomer SMF user. Switched to Invision Power Board and VBulletin

cereleus

seamless mode is established
  active, but not a kind of

Where is the active mode?

live627


IP_Board_Rules

Hello, I'm having two issues with this handy mod.

1. The place of the code is not working well for my layout and I could not figure how to change the code for loading its functions at a different place

2. The autocomplete works for me but it does not parse the values. I only get the posts filtered if I really type the fullboard name into the field. If I just on the (multiple) found board names put underneath the input field then the sent querry is empty.


live627

Quote from: atanua on May 28, 2023, 10:57:32 PM1. The place of the code is not working well for my layout and I could not figure how to change the code for loading its functions at a different place
Can you upload a screenshot?

IP_Board_Rules

Quote from: live627 on September 06, 2023, 05:08:41 PM
Quote from: atanua on May 28, 2023, 10:57:32 PM1. The place of the code is not working well for my layout and I could not figure how to change the code for loading its functions at a different place
Can you upload a screenshot?

Hello John, please see attached. Thank you

live627

Can you try the older version 1.1.2? I just checked the code, and it appears to add the same functionality as 2.0, but without magic integration hooks.

live627

New version released which fixes a very annoying bug where board names would transform into their corresponding ids. New filename is profile-boards-filter_1-1-3.tar.gz Full changelog on GitHub.

IP_Board_Rules

Quote from: live627 on September 07, 2023, 11:01:38 PMCan you try the older version 1.1.2? I just checked the code, and it appears to add the same functionality as 2.0, but without magic integration hooks.

Thank you for letting me know. Does it still have pull down menues available? I think itz is difficult having tzhe user selecting the board names by typing them in there as they may not know all the names rather than to select them from a pull down list

Advertisement: