Xaver
Forum Replies Created
-
Forum: Plugins
In reply to: [Freemius for WordPress] Small error in “Editor Settings” copyGreat suggestions!
I’ll check how this can get implemented in a future version, thanks!Forum: Reviews
In reply to: [Freemius for WordPress] Simple and effectiveThanks for the words!
Lets bring it down to minutes 💪
Forum: Plugins
In reply to: [Freemius for WordPress] Small error in “Editor Settings” copyNice Catch!
I’ve updated the text for the next version. Thanks a lot for reporting and great you like the plugin!
If you have suggestions write down below or reach out to me on the Freemius Slack!
Cheers,
XaverForum: Plugins
In reply to: [Local Google Fonts] Works not with WP 6.9 and Theme DesignexoHi There!
Can you share a link to the theme so I can check?
Thanks!Forum: Plugins
In reply to: [Local Google Fonts] Compatible with WordPress 6.9Hi CocoM!
We have no reports on issues specifically with WP 6.9 and we use it already in production so you are good to go. Feel free to reach out if you still encounter problems.
Best Regards!Forum: Plugins
In reply to: [Freemius for WordPress] Error when mapping a billing cycleThanks for reporting! Looks like this is caused with WP 6.9. Update is on the way!
Forum: Plugins
In reply to: [Freemius for WordPress] Does not fetch a new planHi Aleksandr!
Yes, the plugin caches all requests for one hour. It uses transient withfreemius_api_as prefix. So you can either clear that or wait an hour to get new data.
I hope that helps!- This reply was modified 4 months, 3 weeks ago by Xaver.
Forum: Reviews
In reply to: [Freemius for WordPress] Works wellHi Michael!
Thanks for your feedback! Having the customer portal inside the plugin could be I nice addition.
✅ NotedForum: Plugins
In reply to: [Local Google Fonts] Error 500Best to reach out to your host. Usually they have a way to access the files from there.
Remove or rename the folder to disable the plugin. Check the error logs of your server for more details on the problem.Best Regards!
Forum: Plugins
In reply to: [Local Google Fonts] Error 500Hi there!
Sorry about that!, Can you remove the plugin via FTP for now? Please share some error logs to help us debug this further.
You may also consider Troubleshooting WordPress in 60 Seconds
Thanks!Forum: Plugins
In reply to: [Local Google Fonts] After delete ?Hi There!
Have you tried to clear the fonts and reload them again? LGF basically just replaces the stylesheet from Google and replaces it with a local one, loads the fonts and reference them in the style sheet. There are no changes to the files.
Maybe DIVI has an own mechanism to load Google Fonts, which causes a conflict. In this case, you don’t need LGF at all.
Forum: Plugins
In reply to: [Local Google Fonts] After delete ?Hey!
The fonts are no longer linked and are loaded from Google again. LGF has a small footprint and has almost no impact on your frontend.If only your theme loads Google Fonts you could change the source of the fonts manually. Keep in mind that changes will be lost if you update the theme though.
I hope that helps!
Forum: Plugins
In reply to: [Mailster WordPress Newsletter Plugin] First capital letter – mass changeWe’ll explain this here: https://kb.mailster.co/adding-custom-code-to-your-website/
Please keep in mind that we cannot give proper support here so please submit a ticket!
Thanks!
Forum: Plugins
In reply to: [Mailster WordPress Newsletter Plugin] First capital letter – mass changeHi Partyk,
The fasted way is to use the filter for replaced content. So if you have an uppercase username with{firstname}you can runadd_filter( 'mailster_replace_firstname', function( $replace, $post, $extra ) {
return ucwords($replace);}, 10, 3);This will only change the output of the
{firstname}tag and not change the actual value of the subscriber.Thanks @mayuripatel!
I was searching for a way to do this for block themes, not classic themes. This should also be reflected on the backend as well.Thank you anyway!