Jellico
Forum Replies Created
-
Forum: Plugins
In reply to: [WP2Social Auto Publish] Posting to Facebook doesn’t show the correct photo@anjali94 I’ve finally found out the bad guy in this, only got 5 hours..
Yoast Seo was the bad guy.
I have no idea why, but when Yoast is activated, the post to Facebook don’t get the real featured image..Is there something that can be done about this?
Forum: Plugins
In reply to: [WP2Social Auto Publish] Posting to Facebook doesn’t show the correct photoUpon further research, I’ve found another plug-in that says the image must be a certain size and ratio 1:1
Any information about this?
Didn’t see any information about that in this app?Forum: Plugins
In reply to: [Yoast SEO] Hide posts from a specific category from site XML listI see (i hope)..
So by implanting these (with the right category id) would work then without any issues?I’m not worried about an old sitemap, since the site is new, and no posts exists with that category yet..
.. But I maybe should implant the code tomorrow. 02.30 is little late to do it..
So, go for it?
Forum: Plugins
In reply to: [Yoast SEO] Hide posts from a specific category from site XML listOk, let me see if I got this..
So
add_filter( 'wpseo_robots', 'wpseo_robots' ); /** * Filter: 'wpseo_robots' - Allows filtering of the meta robots output of Yoast SEO. * * @param string $robotsstr The meta robots directives to be echoed. * @return string */ function wpseo_robots( $robotsstr ) { if ( is_single() && in_category( 23 ) ) { return 'noindex,follow'; } return $robotsstr; }
This one, but I change the return ‘noindex,follow’; to return ‘noindex,nofollow’;, and of course I change the category id?
And add this (add both) to my functions.php:
add_filter( 'wpseo_exclude_from_sitemap_by_post_ids', function( $excluded_posts_ids ) { $args = array( 'fields' => 'ids', 'post_type' => 'post', 'category__in' => array( 11, 12 ), 'posts_per_page' => -1, ); return array_merge( $excluded_posts_ids, get_posts( $args ) ); } );
And change that to the right categories..
But, what does you mean with running them synchronized?
@gn_themes Then I’m looking forward for the new version ;).
A nowadays people use a lot of custom fields, how about adding the possibility to display a custom field like under the name?
@wfgerald wait a moment, this is a Sbk error (Stupid Behind Keyboard).
The reason you got a 200 is that I’m using maintenance mode, so whatever you’re trying to access you will get the maintenance page.
I got a 404 since I was logged in, (bypassing the maintenance page) and of course it didn’t find the page,
Forum: Fixing WordPress
In reply to: New links automaticaly replicating at the page top@men4wp I have not received any photo, you can’t send it to the WordPress mail, you have to post it on a 3rd party site and insert a link here..
Forum: Plugins
In reply to: [WP Shortcodes Plugin — Shortcodes Ultimate] Compatibility with ElementorHi @francoc30
I have actually not used polylang so I have no idea, you have to test it, but I guess it should work..Forum: Plugins
In reply to: [WP Shortcodes Plugin — Shortcodes Ultimate] Compatibility with ElementorHi @francoc30!
Polylang isn’t something I’ve been using,
I know that shortcuts ultimate is translated to six language, but if polylang is a translator it should work..
You can try and see..Forum: Plugins
In reply to: [WP Shortcodes Plugin — Shortcodes Ultimate] Compatibility with ElementorI’m using elementor and this plug-in works as it should.
Elementor can sometimes screw up the display inside the editor, but it always works perfect when users are browsing the siteForum: Fixing WordPress
In reply to: New links automaticaly replicating at the page topClick hereThis is the site as I see it..
Forum: Fixing WordPress
In reply to: New links automaticaly replicating at the page top@men4wp I’ve just checked your site and didn’t see any strange.
Are you using any menu plug-in?Forum: Fixing WordPress
In reply to: New links automaticaly replicating at the page topAre you meaning that it will add a new link to the menu when you’re creating a new page?
Forum: Fixing WordPress
In reply to: Post-processing of the image failed errorI’ve encountered the same issue, not completely sure what the issue is, but normally it occurs if I’ve been on the site for a while without doing anything.
A Reload of the page usually solves it for me…