• Resolved blo1017

    (@blo1017)


    In woocommerce, ‘-‘ is used when dividing product and product options.

    https://www.dropbox.com/s/3550v7emjvcu2cp/1.png?dl=0

    In image, “Naomi Scott – Speechless (From Aladdin OST)” this is product, -0 key is product option.

    So WooCommerce show “Naomi Scott – Speechless (From Aladdin OST) – -0 key” in cart

    I want to change the ‘-‘.

    Because every my product have option -0 key, -1 key, -2 key. It looks dirty in the shopping cart. Even if you go over payment.

    So can I change hyphen (-) on all situations where product names are processed.

    Is it possible things?

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Support Missy a11n

    (@m155y5)

    Automattic Happiness Engineer

    Hi @blo1017

    I’m unable to see the Dropbox file you shared. If I’m understanding correctly, though, you’ll need to edit your shopping cart template. There’s information on how to go about that here.

    If you’re not comfortable editing code, I would recommend reaching out to a developer via Customize WooCommerce to see if they might be able to create a custom solution for you.

    Plugin Support Missy a11n

    (@m155y5)

    Automattic Happiness Engineer

    We haven’t heard back from you in a while, so I’m going to go ahead and mark this thread as resolved. If you have any other questions please feel free to start a new thread.

    Thread Starter blo1017

    (@blo1017)

    oh thanks for reply.
    I paid the developer a small amount and applied the following filter.

    add_filter( 'woocommerce_product_variation_title_attributes_separator','gb_update_product_separator');
    function gb_update_product_separator(){
    	return ' ';
    }

    oh thanks for reply. I paid the developer a small amount and applied the following filter.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘about woocommerce product option’ is closed to new replies.