niska
Forum Replies Created
-
Has anyone succeeded with this? I thinks the variable is available at $wp_query->post_count – so it is probably pretty easy to make it a SEO variable…
Forum: Plugins
In reply to: [SAM Pro (Free Edition)] Hide ads on mobile?Great! Will a hidden ad (using css as mentioned above) count as a ad view?
Forum: Plugins
In reply to: [EWWW Image Optimizer] Warning when I upload images since 2.5.8/4.4.1I have the same problem on single-site.
Forum: Plugins
In reply to: [No CAPTCHA reCAPTCHA] can this be used in reset password form as well?I have the same question as above
I found it now. It is stored in postmeta with meta key _yoast_wpseo_opengraph-image
Forum: Plugins
In reply to: [W3 Total Cache] Where specify for how long page should be cached?No one knows where to find this setting? It seems kind of basic functionality so set the time for how long a page should be cached on the server. Strange that there is no mention of this anywhere…
Sorry – I posted this in the incorrect plugin. Will mark this topic as resolved and start a new thread.
Me too
Forum: Plugins
In reply to: [No CAPTCHA reCAPTCHA] Feature requestsadd_action(“lostpassword_form”, “login_captcha”);
add_action(“lostpassword_post”, “verify_captcha”);Forum: Plugins
In reply to: [No CAPTCHA reCAPTCHA] Warning: Cannot modify header informationI get this too. And settings is not reflected on the page. However when reloading the settings page the error goes away and the settings seems to work – so it’s working as it should.
I haven’t found a plugin yet.
What’s needed is a modification of WPSEO_Taxonomy::term_seo_form() that shows the input fields for terms. There should be another one for opengraph-image. But there is no filter to add this input field…
If there was a input field, then the following code would probably solve the problem:
add_action( ‘wpseo_opengraph’, ‘my_archive_image’, 30 );
$archive_og_image = ‘[opengraph-image-for-term]’;
function my_archive_image() {
if( is_tag() || is_tax() || is_category() ) $wpseo_og->image_output($archive_og_image);
}Anyone else have a solution to this? Not sure why it isn’t possible out of the box.
Forum: Plugins
In reply to: [W3 Total Cache] w3tc and jsonIf it is not supported, is there another way to cache json output?
Anyone?
Forum: Plugins
In reply to: [EWWW Image Optimizer] Bypass EWWW programatically?Thank you!
Forum: Fixing WordPress
In reply to: Switched to nginx, images stopped workingProblem solved.
In UTF-8 a å, ä or ö can look the same but have a different coding. It’s called Precomposed and Decomposed. So even though it looked like it was the same filename, it wasn’t.