Sniper_E, thank you for your answer.
But I mean that: s. attachment.
- This cannot be clicked.
- Ok.Sniper_E wrote: 27 Oct 2019, 03:37Your screenshot can not show that it can not be clicked.
![]()
I'll install ABBC3 Buttons and this extension and see if I get the same results. BRB
Try to remove ext "Advanced BBCode Box"vlad wrote: 02 Nov 2019, 17:44 hi! Very good idea, but unfortunately doesn't work on my site too (creating/answering topic):
username bbcode.png
phpBB 3.2.5
extension Advanced BBCode Box
style Proflat
yes, without "Advanced BBCode Box" ext "Username BBCode 3.2.x" works. And is it possible to combine these two extensions together? It would be great
Sniper_E, I have checked everything again and have found that:
Code: Select all
static public function getSubscribedEvents()
{
return array(
'core.user_setup' => 'load_language_on_setup',
'core.modify_posting_auth' => 'modify_posting_auth',
);
}
public function modify_posting_auth($event)
Code: Select all
static public function getSubscribedEvents()
{
return array(
'core.user_setup' => 'load_language_on_setup',
'core.page_header_after' => 'page_header_after',
);
}
public function page_header_after($event)
- As I already wrote, I have the QuickReply Reloaded extension installed.Sniper_E wrote: 15 Nov 2019, 05:17 I'm doing some work on my site so it's down for testing this.
One thought is to make the usernames available on more than just the posting page. Test this out.
Open username/event/listener.php and findReplace withCode: Select all
static public function getSubscribedEvents() { return array( 'core.user_setup' => 'load_language_on_setup', 'core.modify_posting_auth' => 'modify_posting_auth', ); } public function modify_posting_auth($event)
Clear server cache, test and report back in please.Code: Select all
static public function getSubscribedEvents() { return array( 'core.user_setup' => 'load_language_on_setup', 'core.page_header_after' => 'page_header_after', ); } public function page_header_after($event)