Title: Ne01eX's Replies | WordPress.org

---

# Ne01eX

  [  ](https://wordpress.org/support/users/ne01ex/)

 *   [Profile](https://wordpress.org/support/users/ne01ex/)
 *   [Topics Started](https://wordpress.org/support/users/ne01ex/topics/)
 *   [Replies Created](https://wordpress.org/support/users/ne01ex/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/ne01ex/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/ne01ex/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/ne01ex/engagements/)
 *   [Favorites](https://wordpress.org/support/users/ne01ex/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 41 total)

1 [2](https://wordpress.org/support/users/ne01ex/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/ne01ex/replies/page/3/?output_format=md)
[→](https://wordpress.org/support/users/ne01ex/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Cyr-To-Lat] Issue with automatic slug generation on product update after the recent update](https://wordpress.org/support/topic/issue-with-automatic-slug-generation-on-product-update-after-the-recent-update/)
 *  Thread Starter [Ne01eX](https://wordpress.org/support/users/ne01ex/)
 * (@ne01ex)
 * [2 months, 4 weeks ago](https://wordpress.org/support/topic/issue-with-automatic-slug-generation-on-product-update-after-the-recent-update/#post-18912082)
 * Thank you for your detailed explanation! I completely agree that changing URLs
   for already published and indexed products is a huge SEO risk.
 * However, there is one important detail about the pre-7.0 behavior: the old version
   did **not** change slugs for published products either. It only automatically
   regenerated the slug for **newly duplicated drafts** that contained `-copy` or`-
   kopirovat` in their temporary URL. Once the product was published, the slug became
   stable.
 * Since version 7.0 completely disabled this for drafts as well, it broke the standard
   duplication workflow for many WooCommerce stores.
 * To keep my workflow efficient and 100% safe for existing SEO, I have refined 
   the workaround. This is the new code I am using now. It strictly targets **only
   products that are copies** and leaves all other stable URLs untouched:
 *     ```wp-block-code
       // Safe automatic slug update only for duplicated WooCommerce productsadd_filter('wp_unique_post_slug', 'secure_auto_update_copy_product_slug', 99, 6);function secure_auto_update_copy_product_slug($slug, $post_ID, $post_status, $post_type, $post_parent, $original_slug) {        // Work strictly with WooCommerce products    if ($post_type === 'product') {                // Check if the current slug is a temporary copy slug        if (strpos($original_slug, 'copy') !== false || strpos($original_slug, 'kopirovat') !== false) {            $post = get_post($post_ID);            if ($post) {                // Force clean slug generation from the new title                $slug = sanitize_title($post->post_title);            }        }    }        return $slug;}
       ```
   
 * I am sharing this because maybe you could consider adding a similar conservative
   toggle in the future (e.g., _“Regenerate slug on title change ONLY for drafts/
   copies”_). This would preserve the safe default behavior for standard updates,
   but restore the quick workflow for merchants who clone products daily.
 * Thanks again for your great plugin and support!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Cyr-To-Lat] Issue with automatic slug generation on product update after the recent update](https://wordpress.org/support/topic/issue-with-automatic-slug-generation-on-product-update-after-the-recent-update/)
 *  Thread Starter [Ne01eX](https://wordpress.org/support/users/ne01ex/)
 * (@ne01ex)
 * [3 months ago](https://wordpress.org/support/topic/issue-with-automatic-slug-generation-on-product-update-after-the-recent-update/#post-18911664)
 * To fix this temporarily, I had to add a custom workaround code to my `functions.
   php`. It forces WordPress to regenerate the slug from the title upon saving WooCommerce
   products. Here is the code that fixes the issue for me:
 *     ```wp-block-code
       // Automatically regenerate clean product slug from title upon savingadd_filter('wp_unique_post_slug', 'pure_auto_update_product_slug', 10, 6);function pure_auto_update_product_slug($slug, $post_ID, $post_status, $post_type, $post_parent, $original_slug) {        // Work only with WooCommerce products    if ($post_type === 'product') {        $post = get_post($post_ID);                if ($post) {            // Get the current product title that was just edited            $title = $post->post_title;                        // Pass through standard WordPress sanitization (Cyr-To-Lat triggers here)            $slug = sanitize_title($title);        }    }        return $slug;}
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Redirection] The redirect is not canceled](https://wordpress.org/support/topic/the-redirect-is-not-canceled/)
 *  Thread Starter [Ne01eX](https://wordpress.org/support/users/ne01ex/)
 * (@ne01ex)
 * [3 months, 3 weeks ago](https://wordpress.org/support/topic/the-redirect-is-not-canceled/#post-18888559)
 * ok, yay! I’ll look into it!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Product Feed Manager For WooCommerce - Sell on 200+ Online Marketplaces] You need to set up a feed for Yandex](https://wordpress.org/support/topic/you-need-to-set-up-a-feed-for-yandex/)
 *  Thread Starter [Ne01eX](https://wordpress.org/support/users/ne01ex/)
 * (@ne01ex)
 * [8 months, 1 week ago](https://wordpress.org/support/topic/you-need-to-set-up-a-feed-for-yandex/#post-18753488)
    1. So everything works as you explained!
    2. Thank you, I’m waiting!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Product Feed Manager For WooCommerce - Sell on 200+ Online Marketplaces] You need to set up a feed for Yandex](https://wordpress.org/support/topic/you-need-to-set-up-a-feed-for-yandex/)
 *  Thread Starter [Ne01eX](https://wordpress.org/support/users/ne01ex/)
 * (@ne01ex)
 * [8 months, 1 week ago](https://wordpress.org/support/topic/you-need-to-set-up-a-feed-for-yandex/#post-18752636)
 * There are several edits
    1. **Param 1 Name (Static)** displays the same as in **Param 1 Value (Attribute)**.
 * It looks like this
 *     ```wp-block-code
       <param name="high tech">high tech</param> <param name="Cama">Cama</param>
       ```
   
 * And it has
 *     ```wp-block-code
       <param name="Style">high tech</param><param name="Manufacturer">Cama</param>
       ```
   
    2. You need to make the **param** universal so that the same **param** can be added
       many times, and a unique attribute can be added to each **param**. Now it is
       possible to add up to 10 **params**. Personally, for my store I need 48.
 * I will explain using the example of furniture: a table has the same parameters,
   height, width, depth, material, color… In a sofa, some parameters coincide, for
   example, height, width, but there are also other parameters, upholstery, filling,
   the possibility of folding. Other furniture also has similar parameters, but 
   there are also many unique parameters. In general, I have 48 such parameters 
   on my site.
 * In the plugin you need to create all the parameters, and those that are empty,
   or the product does not have such a parameter, will not be included in the feed.
   I checked this, it works as it should!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Product Feed Manager For WooCommerce - Sell on 200+ Online Marketplaces] You need to set up a feed for Yandex](https://wordpress.org/support/topic/you-need-to-set-up-a-feed-for-yandex/)
 *  Thread Starter [Ne01eX](https://wordpress.org/support/users/ne01ex/)
 * (@ne01ex)
 * [8 months, 1 week ago](https://wordpress.org/support/topic/you-need-to-set-up-a-feed-for-yandex/#post-18752389)
 * Thank you for the great work and efficiency! I will test it!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Product Feed Manager For WooCommerce - Sell on 200+ Online Marketplaces] You need to set up a feed for Yandex](https://wordpress.org/support/topic/you-need-to-set-up-a-feed-for-yandex/)
 *  Thread Starter [Ne01eX](https://wordpress.org/support/users/ne01ex/)
 * (@ne01ex)
 * [8 months, 1 week ago](https://wordpress.org/support/topic/you-need-to-set-up-a-feed-for-yandex/#post-18746991)
 * Thank you very much! I look forward to the update!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Product Feed Manager For WooCommerce - Sell on 200+ Online Marketplaces] You need to set up a feed for Yandex](https://wordpress.org/support/topic/you-need-to-set-up-a-feed-for-yandex/)
 *  Thread Starter [Ne01eX](https://wordpress.org/support/users/ne01ex/)
 * (@ne01ex)
 * [8 months, 2 weeks ago](https://wordpress.org/support/topic/you-need-to-set-up-a-feed-for-yandex/#post-18742615)
 * **<param>** – these are user options (size, color, material…). 
   You can write
   it manually, and the feed will include **param** and what **Lukmebel** is in 
   it. But I can’t get the name **name=”Manufacturer”** to also be included in the
   feed.
 *     ```wp-block-code
       <param name="Manufacturer">Lukmebel</param>
       ```
   
    -  This reply was modified 8 months, 2 weeks ago by [Ne01eX](https://wordpress.org/support/users/ne01ex/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Product Feed Manager For WooCommerce - Sell on 200+ Online Marketplaces] You need to set up a feed for Yandex](https://wordpress.org/support/topic/you-need-to-set-up-a-feed-for-yandex/)
 *  Thread Starter [Ne01eX](https://wordpress.org/support/users/ne01ex/)
 * (@ne01ex)
 * [8 months, 2 weeks ago](https://wordpress.org/support/topic/you-need-to-set-up-a-feed-for-yandex/#post-18741849)
 * Maybe it’s in the plugin, but I don’t know how to enable it
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Product Feed Manager For WooCommerce - Sell on 200+ Online Marketplaces] You need to set up a feed for Yandex](https://wordpress.org/support/topic/you-need-to-set-up-a-feed-for-yandex/)
 *  Thread Starter [Ne01eX](https://wordpress.org/support/users/ne01ex/)
 * (@ne01ex)
 * [8 months, 2 weeks ago](https://wordpress.org/support/topic/you-need-to-set-up-a-feed-for-yandex/#post-18741845)
 * All documentation [https://yandex.ru/support/direct/en/feeds/requirements-yml](https://yandex.ru/support/direct/en/feeds/requirements-yml)
   
   Documentation on <param> [https://yandex.ru/support/direct/en/feeds/requirements-yml#:~:text=Specifying%20product%20characteristics,men%20and%20women](https://yandex.ru/support/direct/en/feeds/requirements-yml#:~:text=no-,param,-Specifying%20product%20characteristics)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Currency per Product for WooCommerce] The price is displayed incorrectly.](https://wordpress.org/support/topic/the-price-is-displayed-incorrectly/)
 *  Thread Starter [Ne01eX](https://wordpress.org/support/users/ne01ex/)
 * (@ne01ex)
 * [1 year, 2 months ago](https://wordpress.org/support/topic/the-price-is-displayed-incorrectly/#post-18494284)
 * Yes, of course! Thank you for a great product!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Currency per Product for WooCommerce] The price is displayed incorrectly.](https://wordpress.org/support/topic/the-price-is-displayed-incorrectly/)
 *  Thread Starter [Ne01eX](https://wordpress.org/support/users/ne01ex/)
 * (@ne01ex)
 * [1 year, 2 months ago](https://wordpress.org/support/topic/the-price-is-displayed-incorrectly/#post-18492126)
 * Technical support helped through the ticket system! The problem was solved very
   quickly! Thank you!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[YITH WooCommerce Wishlist] does not work until logged in](https://wordpress.org/support/topic/does-not-work-until-logged-in/)
 *  Thread Starter [Ne01eX](https://wordpress.org/support/users/ne01ex/)
 * (@ne01ex)
 * [1 year, 5 months ago](https://wordpress.org/support/topic/does-not-work-until-logged-in/#post-18367888)
 * I figured it out, the problem was the cache, I cleaned it and the button appeared.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[YITH WooCommerce Wishlist] YITH Wishlist 4.0 – “Add to wishlist” icon are huge when viewed on a computer](https://wordpress.org/support/topic/yith-wishlist-4-0-add-to-wishlist-icon-are-huge-when-viewed-on-a-computer/)
 *  [Ne01eX](https://wordpress.org/support/users/ne01ex/)
 * (@ne01ex)
 * [1 year, 9 months ago](https://wordpress.org/support/topic/yith-wishlist-4-0-add-to-wishlist-icon-are-huge-when-viewed-on-a-computer/#post-18094553)
 * I downloaded the old version and switched to it for now until the developers 
   solve the problem.
   [https://github.com/yithemes/yith-woocommerce-wishlist/releases](https://github.com/yithemes/yith-woocommerce-wishlist/releases)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[YITH WooCommerce Wishlist] YITH Wishlist 4.0 – “Add to wishlist” icon are huge when viewed on a computer](https://wordpress.org/support/topic/yith-wishlist-4-0-add-to-wishlist-icon-are-huge-when-viewed-on-a-computer/)
 *  [Ne01eX](https://wordpress.org/support/users/ne01ex/)
 * (@ne01ex)
 * [1 year, 9 months ago](https://wordpress.org/support/topic/yith-wishlist-4-0-add-to-wishlist-icon-are-huge-when-viewed-on-a-computer/#post-18094412)
 * I have the same problem after the update, how did you solve the problem?

Viewing 15 replies - 1 through 15 (of 41 total)

1 [2](https://wordpress.org/support/users/ne01ex/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/ne01ex/replies/page/3/?output_format=md)
[→](https://wordpress.org/support/users/ne01ex/replies/page/2/?output_format=md)