pepe
Forum Replies Created
-
Forum: Plugins
In reply to: [Media Credit] Media Credit with TagDiv ComposerHi @webadsisrael, I assume TagDiv Composer’s code is not freely available? If so, you’d have to ask their support for specific help.
That said, Media Credit does have an extensive API to do customization with template tags and filter hooks. If you have any specific technical questions, I’ll try to answer them.
Forum: Plugins
In reply to: [wp-Typography] wp-typography interferes with translatepress(Also I’m pretty sure this is a new-ish method as I had TranslatePress installed on my test system and have used in the past to test multilingual support in wp-Typography.)
Forum: Plugins
In reply to: [wp-Typography] wp-typography interferes with translatepressHi @pigsound, I’ve had a quick look at the TranslatePress code and it looks they are using output buffers to translate the complete page, so after wp-Typography has processed the individual content parts. That’s why it can’t translate the strings anymore because they are looking for the raw content in the database and not the processed output with typographic quotes and hyphenation applied.
Since they have a filter hook
trp_translated_html, it might be possible to write an adapter that foregoes the usual content processing and only applies it at the end of the translation rendering. If you feel competent to apply a small code fragment in yourfunctions.php, I can try to come up with an interim workaround (not sure when I get around to release a new version).Forum: Plugins
In reply to: [wp-Typography] BUG: Outdated plugin cache transients waste database storageObject caches normally operate LRU principles, so when a new object needs more memory than is available, the least recently used object is discarded (until there is enough free memory). Clean up after expiration is something the object cache needs to do, yes.
WordPress does not have any processing going on outside of the request, so there is no way for a “timer” to trigger other than via a cronjob with a set granularity.
- This reply was modified 1 year, 3 months ago by pepe.
Forum: Plugins
In reply to: [wp-Typography] BUG: Outdated plugin cache transients waste database storageThank you for the detailed report. I’m not sure what the use-case for that W3TC setting is (transients are meant to be recreated if necessary), but it looks like that needs to be solved there. wp-Typography already cleans up the DB transients when no external object cache is in use.
Forum: Plugins
In reply to: [wp-Typography] Fatal error on PHP 8.3Should be fixed in 5.11.0.
Forum: Plugins
In reply to: [wp-Typography] Fatal error on PHP 8.3Thanks. There’s indeed a bug related to https://github.com/mundschenk-at/check-wp-requirements/commit/d24532378b15346725b6fe7a02cf26b3e4e2ae23 – looks like I just got lucky that no-one triggered a failed requirements check yet 😮
I’ll try to release a fixed version later today.
- This reply was modified 1 year, 3 months ago by pepe. Reason: typo
Forum: Plugins
In reply to: [wp-Typography] Fatal error on PHP 8.3Hi @dsl225! The deprecation warning on the second server is expected, the fatal error is not. Can you check whether the file exists (it should)?
Forum: Plugins
In reply to: [wp-Typography] No support of templates in block themes?Hi! I’ll have to look into it if there are any special considerations for block themes, but in general you’d want to apply
the_contentfilters to your “content” (e.g. use something likeecho apply_filters( ‘the_content’, $content )in the archive loop).Also, there is a special “Typography” block available (
wp-typography/typography) that applies the typographic fixes to all its children.Forum: Plugins
In reply to: [wp-Typography] WordPress caught an error with wp-TypographyWell, it should just work (and you should not see the same error in the logs/Site Health).
Forum: Plugins
In reply to: [wp-Typography] WordPress caught an error with wp-TypographyIt looks like the transient cache got corrupted. Please try to press the
Clear Cachebutton in the wp-Typography settings page. It should make your system fix itself. Please let me know if it happens again.Forum: Plugins
In reply to: [wp-Typography] Bricks Builder/Theme compatibilityYeah, no, sorry, I would also have to look at the code.
In that case, please ask their support for advice. wp-Typography’s code is available to them and if there’s need for specific clarification, I’ll gladly answer them.
Forum: Plugins
In reply to: [wp-Typography] Bricks Builder/Theme compatibilityI don’t know. Is there a free version I can check out? If not, you’d have to ask their support.
Forum: Plugins
In reply to: [wp-Typography] WPML compatibilityYou can enable
Multilingual supportin theGeneral Scopetab to automatically adjust hyphenation language, dash and quote styling based on the current locale.In the next few days (maybe tonight, but probably not).