Home Forums WoodMart support forum I want to know how to modify the url and additional content in the product page

I want to know how to modify the url and additional content in the product page

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #168653

    wormholetattoo
    Participant

    I want to know how to modify the url and additional content in the product page。

    1、After I built the website, I found out that my website URL is like this:
    https://wormholetattoosupply.com/product-category/tattoo-machines/tattoo-pens/,
    I want to remove product-category,Make my url like this:
    https://wormholetattoosupply.com/tattoo-machines/tattoo-pens/,
    Please tell me what should i do. thank you.

    2、I want to know how to modify the content here:https://wormholetattoosupply.com/wp-content/uploads/2020/01/Snipaste_2020-01-18_16-36-35.jpg ,The product I am exemplifying is here(https://wormholetattoosupply.com/products/aluminum-alloy-tattoo-pen-6-colors/).
    such as remove ADDITIONGAL INFORMATION, or modify it, or add other part to here?Where should I go to modify the content in the red box?

    Looking forward for your reply, thank you.

    Attachments:
    You must be logged in to view attached files.
    #168662

    Hello,

    1) You can change the “product-category” word from URL, you need to go to Settings >> Permalinks >> Product category base option, and replace the word.

    Screenshot for clarification: https://jmp.sh/3UGiop1

    2) When you set showing an attribute on the product page, WooCommerce generates an additional information tab and shows the attribute.

    In general the additional information tab only shown when you add attributes to the products. If you want to show the Additional information tab you have to add all those attributes from the product as in the screenshot: https://jmp.sh/2pFIr97

    Result: https://jmp.sh/AMlSqki

    To remove the additional information tab from your product page you can use the below custom code in your child theme funtion.php:

    add_filter( 'woocommerce_product_tabs', 'woo_remove_product_tabs', 98 );
    function woo_remove_product_tabs( $tabs ) {
        unset( $tabs['additional_information'] );  	// Remove the additional information tab
        return $tabs;
    }

    OR

    You can also remove it by disabling attributes added to products.

    This tab only display the information about the product attributes. You can not add other information inside this tab.

    Best Regards.

    #168736

    wormholetattoo
    Participant

    No, I don’t want to change the “product-category” word from URL, I only want to remove it,The solution you gave me did not solve my problem.
    (https://wormholetattoosupply.com/product-category/tattoo-machines/tattoo-pens/ becomes https://wormholetattoosupply.com/tattoo-machines/tattoo-pens/).I think you should know what I mean.
    If I delete the “product-category” word here, after I save the settings, the product-category will appear again by default.

    Attachments:
    You must be logged in to view attached files.
    #168849

    Hello,

    It’s not possible to remove that word “Product Category” from permalinks. You can only replace it with some other words. If you just remain that specific field as empty and save the changes then it automatically displays the “Product Category” as a default value because it is designed in this way it can’t be empty only can be replaced with some other value.

    Best Regards.

Viewing 4 posts - 1 through 4 (of 4 total)