New Landing How can we help? Atelier table format

Viewing 4 posts - 1 through 4 (of 4 total)
  • Posted in: Atelier
  • #198837
    Sylviebyfreer
    Member
    Post count: 22

    Hi there, I’d like to find out how to display a table as per one of the Atelier product page (refer to enclosed screenshot) where the second column content display on the right hand side of the table. Mine puts the second column close to the first column.

    Also, my description is showing: Description and additional information whereas the Atelier product page only shows additional information. Can I change the wording?

    Your help will be greatly appreciated.
    Thanks

    Attachments:
    You must be logged in to view attached files.
    #199253
    Kyle – SUPPORT
    Moderator
    Post count: 35880

    Hi

    Add this to your custom css:

    .woocommerce-tabs table.standard_minimal td:last-child {
      text-align: right;
    }

    – Kyle

    #200602
    Sylviebyfreer
    Member
    Post count: 22

    Hi there, thanks a million. All good and working. I had to remove the element name from the script, though.

    Also, the other issue mentioned above and showing in screenshots is that I only want to show ‘additional information’ not ‘description’. How can I remove the word description and make additional information smaller so that it fits?

    Could you help with that?
    Thanks
    Sylvie

    #200702
    Rui Guerreiro – SUPPORT
    Keymaster
    Post count: 25779

    Hi,

    Add the code below to your functions.php of the child theme.

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

    -Rui

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

You must be logged in and have valid license to reply to this topic.

License required for the following item
Login and Registration Log in · Register