Bold BBcode Not Working

Get help with installation and running phpBB 3.3.x here. Please do not post bug reports, feature requests, or extension related questions here.
selkie
Registered User
Posts: 5
Joined: Sat Jun 18, 2022 1:47 pm

Bold BBcode Not Working

Post by selkie »

For some reason, the default Bold bbcode

Code: Select all

[b]text[/b]
is not working at all. I can't seem to find a similar recent issue. We just upgraded from 3.2.7 to 3.3.7 and migrated to a new host, but everything else seems to be working normally.

The text does not disappear, and the tags do not show, but the text remains the same. I'm using the Milk v2 style, which is a paid style, but we were using the same style (just older version) on the old board and there were no issues with it then.

Thanks in advance
User avatar
HiFiKabin
Community Team Member
Community Team Member
Posts: 6819
Joined: Wed May 14, 2014 9:10 am
Location: Swearing at the PC, UK
Name: James

Re: Bold BBcode Not Working

Post by HiFiKabin »

Check with prosilver and see if the bold tag works. If it does then the problem lies with Milk and you will need to get support from there

If the problem exists with prosilver please fill out the Support Request Template and post it back here to enable us to assist you better.
selkie
Registered User
Posts: 5
Joined: Sat Jun 18, 2022 1:47 pm

Re: Bold BBcode Not Working

Post by selkie »

Support Request Template
What version of phpBB are you using? phpBB 3.3.7
What is your board's URL? https://legendofransera.com/
Who do you host your board with? Hostgator
How did you install your board? I used the download package from phpBB.com
What is the most recent action performed on your board? Update from a previous version of phpBB3
Is registration required to reproduce this issue? Yes
Do you have any MODs installed? No
Do you have any extensions installed? Yes
What version of phpBB3 did you update from? phpBB 3.2.7
What extensions do you have installed? Advanced BBCode Box
Linked Accounts
LMDI Multilinks
MMC Posting Template
phpBB Gallery
phpBB Media Embed PlugIn
PlanetStyles Flight Deck (v2)
Premium Sidebars
Profile Flair
Tabs BBCode
VigLink
Word Count
What styles do you currently have installed? Milk v2
What language(s) is your board currently using? English
Which database type/version are you using? MySQL 5
What is your level of experience? New to PHP and phpBB
What username can be used to view this issue? No answer given
What password can be used to view this issue? No answer given
What actions did you take (updating your board; installing a MOD, style or extension; etc.) prior to this problem becoming noticeable? Updated the board from 3.2.7 to 3.3.7; updated the styles and extensions to match.
Please describe your problem.
It works on prosilver, and after some testing I realized it only affects posts which use a custom Googlefonts BBCode. Here is the Support Request, but I think the issue lies with the Googlefonts bbcode.

BBCode Usage

Code: Select all

[googlefont={TEXT}]{TEXT2}[/googlefont]
HTML Replacement for the Googlefont BBCode

Code: Select all

<script src="https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js"></script>
<script>
  WebFont.load({
    google: {
      families: ['{TEXT}', 'Droid Serif']
    }
  });
</script><span style="font-family:{TEXT};">{TEXT2}</span>
Generated by SRT Generator
User avatar
KevC
Support Team Member
Support Team Member
Posts: 72639
Joined: Fri Jun 04, 2004 10:44 am
Location: Oxford, UK

Re: Bold BBcode Not Working

Post by KevC »

selkie wrote: Sat Jun 18, 2022 7:12 pm Advanced BBCode Box
What happens if you disable that?
-:|:- Support Request Template -:|:-
Image
"Step up to red alert. Sir, are you absolutely sure? It does mean changing the bulb"
User avatar
ssl
Registered User
Posts: 2059
Joined: Sat Feb 08, 2020 2:15 pm
Location: Le Lude, Pays de la Loire - France
Name: Fred Rimbert

Re: Bold BBcode Not Working

Post by ssl »

Hi
On my test forum without Advanced BBCode Box extension your BBCode work fine

BBCode.png
You do not have the required permissions to view the files attached to this post.
Sorry for my English ... I do my best! :anger_right:

:point_right_tone3: phpBB: 3.3.14 | PHP: 8.3.12
:point_right_tone4: [Kill spam on phpBB] - [Some French translation of extensions]
"Mistress, Mistress someone is bothering me in pm"
selkie
Registered User
Posts: 5
Joined: Sat Jun 18, 2022 1:47 pm

Re: Bold BBcode Not Working

Post by selkie »

Thanks for the replies.

I disabled the Advanced BBCode extension, but there's no change, the bold still doesn't work. It works when not used with text affected by the Googlefont. I checked a second forum, a local test forum with a few of the same extensions and the same version, and it also does not work there. I also deleted the data of the Advanced BBCode extension on the test forum just to make sure.
selkie
Registered User
Posts: 5
Joined: Sat Jun 18, 2022 1:47 pm

Re: Bold BBcode Not Working

Post by selkie »

Hey everyone, I figured it out. It seemed to be a weird thing with the updated theme not interacting with Googlefonts properly, and they had an override for bold where it set

Code: Select all

b, strong {
    font-weight: 500;
}
and it works when it's set to

Code: Select all

b, strong {
    font-weight: bold;
}
User avatar
Mick
Support Team Member
Support Team Member
Posts: 26882
Joined: Fri Aug 29, 2008 9:49 am

Re: Bold BBcode Not Working

Post by Mick »

You should report that to the author.

Also, nothing to do with this issue, you need to add a leading dot to your cookie domain. See Knowledge Base - Fixing incorrect cookie settings
  • "The more connected we get the more alone we become” - Kyle Broflovski© 🇬🇧
User avatar
Scorpy
Registered User
Posts: 49
Joined: Mon Dec 09, 2019 7:43 pm

Re: Bold BBcode Not Working

Post by Scorpy »

selkie wrote: Sat Jun 18, 2022 10:37 pm Hey everyone, I figured it out. It seemed to be a weird thing with the updated theme not interacting with Googlefonts properly, and they had an override for bold where it set

Code: Select all

b, strong {
    font-weight: 500;
}
and it works when it's set to

Code: Select all

b, strong {
    font-weight: bold;
}
Thank you, your post helped me solve a similar problem. :)

Return to “[3.3.x] Support Forum”