Jump to content

Download: (T30) Group Format 2.0.0

Featured Replies

That error is just from one of alt texts not having _clear added to it. Just go to your member list and find:

alt="{$member['members_display_name


Change it to:


alt="{$member['members_display_name_clear
  • 2 weeks later...

Fatal error: Out of memory (allocated 59244544) (tried to allocate 8192 bytes) in /home/forum/public_html/forum/admin/applications/forums/sources/classes/forums/class_forums.php on line 983

I get it sometimes when i search and when i want to see the last page of search result....

  • 3 weeks later...
  • Author

Sorry for the late reply, I've been quite busy lately and I haven't checked much the topics on here.

The error has nothing to do with this modification itself actually; 59244544bytes= 56,5M of memory_limit while IPB 3 requires PHP 5 and the default memory_limit for it is 128M. You need to increase that limit in your PHP configuration file or ask your host to do it for you.

thank you so much ! :)

  • 1 month later...

First time through its all working, thank you very very much :cheer:

Maybe you can help me with a small issue.. I love your mod, and I'm trying to incorporate it into my MPFF Arcade System, (DP30) Top Reputation and a few other mods here and there that DON'T show the new formatted names.

I was hoping it would be as simple as changing member_display_name to member_display_name_clear but no anvil. I was hoping you could help me out with this and give me a better understanding of the system, so that I can edit these non-supported section's skin/PHP and get the formatted text to show up.

  • Author

Since the arcade mod is a paid&encoded mod I cannot really help with it.

About the change you need to use something like that:

IPSLib::makeNameFormatted( $name, $group );
  • 2 weeks later...
  • Author

The modification has been updated to version 2.1.0, here you go the changelog:

[*]Fixed a display error in the status updates hook, warn panel and member list if the group suffix/prefix had an image [*]Fixed a typo in the Unreal Portal readme causing a bug in the latest posts block [*]Updated the (IM) Tutorials version to 1.0.2 (edits are still the same anyway)


A file is included with the upgrade steps from 2.0.0 to 2.1.0 for IP.Board, for the addons simply re-apply from scratch all the edits as they are different for the new versions.
About Unreal Portal I have fixed an error in the readme (as the changelog says), the edit in question is the second one that should have been "s.member_group_id," instead of "m.member_group_id,".

[*]Added new readme files for the new versions of the IPS addons: IP.Blog 2.1.0, IP.Downloads 2.1.0, IP.Gallery 3.1.0





  • 3 weeks later...

This mod works great for me, well the only prob i have is have the groups can see it and the other half see the group names regular. Am i missing some kind of permissions or did i do a file edit wrong

  • Author

So you're saying that some users can see properly the name formatted and others cannot see it?!

There isn't any permission like that in IP.Board and my mod doesn't add it either :unsure:

Well i can give you the url and acp info if you would like to take a look. Just let me know and i will pm it to you. But yeah it is really weird.

  • 2 weeks later...

I only wanted the name formatting in the board-index and the forum view, but when I only change the boards.php and forums.php only the forum view is formatted.

What am I missing?

  • Author

for the board index you require to change another couple of files, if I recall right class_forums.php and core.php.

Anyway skipping the other edits (especially the ones in the skin) can cause an odd layout somtimes.

I got it to work with just class_forums! But just in case, I'll do the skin edit and core.php, for save measures.

Is it compatibile with IPB 3.1 ?

  • Author

It *works* but not completely. You may find some code is not available anymore (for example the search edits since the entire search has been rewritten).

cant wait until this is updated for 3.1 i love this mod and tera rocks. It just makes the forum so much more pretty.

I just updated my board to 3.1 and I'm going through the files to re-do the Group Format and when I edited "admin/applications/forums/modules_public/forums/forums.php" to
FIND:
$this->DB->build( array(
'select' => '*',
'from' => 'topics t',
'where' => "t.forum_id=" . $this->forum['id'] . " AND t.pinned IN (0,1)" . $_SQL_APPROVED . $_SQL_AGE_PRUNE . $_SQL_EXTRA,
'order' => 't.pinned DESC, '.$topic_sort.' t.'.$sort_key .' '. $r_sort_by,
'limit' => array( intval($First), $this->settings['display_max_topics'] )
) );

REPLACE WITH:
/* (T30) Group Format */
$this->DB->build( array( 'select' => 't.*',
'from' => array( 'topics' => 't' ),
'where' => "t.forum_id=" . $this->forum['id'] . " AND t.pinned IN (0,1)" . $_SQL_APPROVED . $_SQL_AGE_PRUNE . $_SQL_EXTRA,
'order' => 't.pinned DESC, '.$topic_sort.' t.'.$sort_key .' '. $r_sort_by,
'limit' => array( intval($First), $this->settings['display_max_topics'] ),
'add_join' => array( array( 'select' => 'fp.member_group_id AS starter_group',
'from' => array( 'members' => 'fp' ),
'where' => "fp.member_id=t.starter_id",
'type' => 'left',
),
array( 'select' => 'lp.member_group_id AS last_poster_group',
'from' => array( 'members' => 'lp' ),
'where' => "lp.member_id=t.last_poster_id",
'type' => 'left',
) )
) );

When I reupload and check the thread index this happens:
9a0l8l.png

Can anyone help with with this?

  • Author

Just wait for the new version, I'm already working on it but it will take some more time considering how many edits there are.. I'm trying to reduce them too with hooks >_<

It is a real pain to keep this mod updated each release :ermm:

  • 2 weeks later...

Do your best mate, I'm waiting for this great mod ! :)

  • 3 weeks later...

Hey mate can't wait till his edit happens!!! Keep us posted on your progress please!

hey mate, you making it available for 3.1.1?

  • Author

New version is already done, I'll release it the same day of IPB 3.1.2 since it requires a couple of bugfixes included in that version for the new hooks to work.

Everything works fine except I can't seem to get the color to show in topic view, what edit do I need to recheck?

Thanks in advance.

  • Author

New version compatible ONLY with IPB 3.1.2+ is available here now: http://community.invisionpower.com/files/file/3359-t31-group-format-300/

Archived

This topic is now archived and is closed to further replies.

Recently Browsing 0

  • No registered users viewing this page.