Okay
  Public Ticket #1910874
how to show SKU in product page
Closed

Comments

  • giranapoli started the conversation

    Hi,

    How can i make the sku visible in the product page?

    How can I hide " Availability: title and description " in the product page ? (i don't menage inventory)

    i wrote this ; div.availability {display: none;} but I do not know if this compromises other pages

    ..and

    I would like to change the display of the contents of the information tab (I enclose the image)

    Can you help me?

    Thanks

  • giranapoli replied

    screenshot

  •  608
    WordPress replied

    hello,

    You can install and active child theme. Then, you can add code in file functions.php in child theme.

    function add_functions() {
        add_action('woocommerce_single_product_summary', 'woocommerce_template_single_meta', 15, 5);
    }
    add_action('init','add_functions');
    Best Regards!

    Alex Vũ



  • giranapoli replied

    thanks

  • giranapoli replied

    ok now the Sku is in the page but i want  to display the short Desrciption After the title and before the Sku. How can i do it?

    in the previus ticket there are hoter questions...

    How can I hide " Availability: title and description " in the product page ? (i don't menage inventory)

    i wrote this ; div.availability {display: none;} but I do not know if this compromises other pages. It'right code?!

    ..and

    I would like to change the display of the contents of the information tab (I enclose the image)

    Can you help me?

  • giranapoli replied

    short Desrciption After the title 

  •  608
    WordPress replied

    Hello,

    div.availability {display: none;}: It does not affect other pages.

    If you want the short description displayed before the SKU we have to customize the code. Then you will have to pay.

    Best Regards!

    Alex Vũ


  • giranapoli replied

    I saw that the standard product page shows the description after the title and then the meta tags (even after the price) and I do not understand why I have to pay for it


  •  608
    WordPress replied

    Hello,

    We need to fix the code. Then move the description position upwards.

    Best Regards!

    Alex Vũ