clambelet
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Images in WordPress post preview on FacebookHi Robby,
You should check the Yoast Seo Plugin settings (as it seems it’s this plugin that add the meta tags).
According to their documentation you should be able to set the image for the frontpage.Forum: Fixing WordPress
In reply to: Images in WordPress post preview on FacebookHi,
I just checked and the only problem now is that your image is too small.
Provided og:image URL, http://robbysuave.com/wp-content/uploads/2015/11/jamsessions.gif was not valid because it did not meet the minimum size constraint of 200px by 200px
Your image is 111px tall, make it to at least 200px and it should work.
Forum: Fixing WordPress
In reply to: Images in WordPress post preview on FacebookIt seems that your theme doesn’t add the metadata or doesn’t do it right.
Could you share a public page which doesn’t work (url, one you would like to share on facebook) so I can confirm this ?
Otherwise, you can also try the plugin Add Meta Tags, which automatically add these metadata.
Forum: Fixing WordPress
In reply to: Tinymce js return 503 in admin – too many connections from this hostInformaniak and the site is also on Cloudflare. (cache bypass on wp-admin)
Forum: Fixing WordPress
In reply to: Tinymce js return 503 in admin – too many connections from this hostHi James, sorry for the late reply, I was away for a few days.
I deactivated all the plugins and also switched to another theme (twentyfifteen), without any luck. Still a lot of requests.
Forum: Fixing WordPress
In reply to: Tinymce js return 503 in admin – too many connections from this hostHi James, thanks for the reply.
I added ‘define(‘CONCATENATE_SCRIPTS’, true);’ to wp-config.php. (I couldn’t find it anywhere, nor set to false).
Unfortunatly, Tinymce still loads via 21 requests.
I checked debug.log/server log and no error related to that.
Forum: Fixing WordPress
In reply to: Images in WordPress post preview on FacebookHi!
You need to look in your html in the <head> for the <meta> with property=”og:image”.
That’s the meta that Facebook is using to display the image (documentation).You can also see what Facebook is retrieving with the Sharing Debugger (you need to be logged in). It should tell you if it can’t load an image (eg. it returns an error).
Are you using a plugin to generate theses meta-data? And do you want a different image per post or the same for the whole website?
Forum: Fixing WordPress
In reply to: Adding Custom User DataHi!
To add new user data, you can use the update_user_meta function. You retrieve the data with get_user_meta
You have a step-by-step guide in Working with user metadata
Hope this help