Ozzy, on XF 2.3.6 we still get this error even using the latest addon version:
InvalidArgumentException: Class xenMade\STFRT\Clear does not match formatter pattern %s\%s\View\%s src/XF.php:1437
Stack trace
#0 src/XF/App.php(1906): XF::stringToClass('xenMade\\STFRT\\C...', '%s\\%s\\View\\%s'...
Yes, of course. Converting a XenForo 1.x add-on to be compatible with XenForo 2.x requires several modifications due to significant architectural changes (it is not as simple as editing a configuration file). The differences between the two versions are substantial, requiring code refactoring...
We can handle all the points you mentioned and ensure a smooth migration to XenForo. Additionally, we might be able to recover the romanian diacritics that were lost (we just need to check your database).
If you're interested, we can discuss the details by private message.
Have you tried opening the site in incognito mode? Since the issue only happens on your desktop and not on mobile, it could be something related to your browser setup.
If the problem still occurs in incognito mode try opening the developer tools (press F12 in Brave/Edge) and check the console...
Using nth-of-type(4) isn't the best approach because it hides the third tab no matter what it is. If more tabs are added or the order changes, it could end up hiding the wrong tab.
Sorry for reviving this old thread. We were just looking for something similar.
The conditional should be added between this line in the online_list template:
<a href="{{ link('online', null, {'type': 'robot'}) }}" class="tabs-tab {{ $typeLimit == 'robot' ? 'is-active' : '' }}">{{...
The new version triggered errors when it was upgraded from 2.2.5 Patch Level 1 version:
Stack trace
#0 src/XF/AddOn/StepRunnerUpgradeTrait.php(124): Snog\Forms\Setup->upgrade2020600Step1(Array)
#1 src/XF/AddOn/StepRunnerUpgradeTrait.php(73): Snog\Forms\Setup->upgradeStepRunner(2020600, 1...
Sorry for reviving an old thread. We were recently working on similar styling.
Here it is:
/**************LEGENDARY MEMBERS***************/
.userBanner.LegenMember{
background-image: url(https://lh3.googleusercontent.com/pw/AL9nZEU3zi0ayFa);
display: block;
background-size: 100px; //...
Humm, the "Cannot connect to MySQL using SSL" error typically indicates an issue with the client configuration. Can you try to set the full path of the CA certificate? It should look like this:
mysql -u username -p -h your-db-host --ssl-ca=/path/to/ca-certificate.crt --ssl-mode=REQUIRED
If you are sure that CA certificate is the correct for the database instance you should verify if SSL is enabled in MySQL:
mysql -u root -p
SHOW VARIABLES LIKE '%ssl%';