开发者 | FolioVision |
---|---|
更新时间 | 2025年5月19日 22:13 |
PHP版本: | 2.7 及以上 |
WordPress版本: | 6.7 |
Hit the "Empty Cache" button to clear the cache database and clear out the cache directory by hand (you can see the path at the very top of the Settings screen). Then hit the "Run Cron Now" button, it will refresh a couple of gravatars, so you can check the cache directory again, to see if it's filling up correctly. "Current Cron offset:" will increment, so you can track the progess and see how the cron is running. You can also turn on "Debug mode" and check log.txt afterwards.
These types of gravatars are not currently supported. Drop us a note and we might add this feature in next release.
You can turn edit your template to turn off the FV Gravatar Cache just when needed, add this code right before that section in your Wordpress template php file: <?php global $FV_Gravatar_Cache; remove_filter( 'get_avatar', array( &$FV_Gravatar_Cache, 'GetAvatar' ) ); ?> In case you need the FV Gravatar Cache running later in the template, just bring it back with: <?php global $FV_Gravatar_Cache; add_filter( 'get_avatar', array( &$FV_Gravatar_Cache, 'GetAvatar' ) ); ?>
If you selected empty gravatar in wp-admin -> Settings -> Discussion, then it's ok. Otherwise try to resave the options and it should appear.