Saša Todorović

Results 32 comments of Saša Todorović

@cabrailsford Root of cause is same - method sanitize_url encodes `@` in URL path as `%40`, but it should keep it as `@`. Validations of URLs aren't same, so it's...

Woocommerce products use product categories and product tags. They are custom taxonomies (`product_cat` and `product_tag`) and they aren't default categories/tags. Function [retrieve_primary_category](https://github.com/Yoast/wordpress-seo/blob/trunk/inc/class-wpseo-replace-vars.php#L517-L537) gets primary_category for `category`. I already tried to...

It's expected behaviour. You could install [Yoast WooCommerce SEO plugin](https://yoast.com/wordpress/plugins/yoast-woocommerce-seo/) or use filters to exclude "shop page" from product sitemap (it's added as post_type archive). ```php add_filter( 'wpseo_sitemap_page_for_post_type_archive', function( $page_id,...

Quick workaround for woocommerce product categories/tags: ```php add_filter( 'wp_cache_preload_taxonomies', 'my_wpsc_preload_taxonomies' ); function my_wpsc_preload_taxonomies( $taxes ) { return array_merge( $taxes, array( 'product_tag' => 'product_tag', 'product_cat' => 'product_cat' ) ); } ```

Hi @indikatordesign I see in your logs: `14:55:28 7698 /wp-cron.php wp_cron_preload_cache: cancelling preload. stop_preload.txt found.` It's reason why preload doesn't start. I created issue Automattic/wp-super-cache#326, but it's fixed in the...

This issue is most likely fixed in the latest version (1.6.3) of WP Super Cache (PR Automattic/wp-super-cache#577). Could you test it again on latest version?

Hi @wilsonf1 I'm guessing that you use nginx custom rules. It could be reason. You need to add properly redirection rules. I'm not too familiar with nginx rules, but I...

Duplicate of Automattic/jetpack#25571. This issue is most likely fixed in the latest version (1.6.3) of WP Super Cache (PR Automattic/wp-super-cache#577). Could you test it again on latest version?