Your account expired support, please renew to get your support.

Home Forums Themes Support Claue Modify the product page

Viewing 2 reply threads
  • Author
    Posts
    • #40855
      kabummmm
      Support Expired

      Hi!

      I would like to modify my product page as seen on the picture below. I would like to bring up the add to cart button above the description and hide the categrio and sku labels. Can i do it somehow? Thnks for the help!

    • #40857
      Harry
      Support Expired

      Hi Kabum,

      1. Please add below code to claue-child > functions.php

      add_action( 'wp_head', 'change_short_description_position' ); 
      function change_short_description_position(){
          remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_excerpt', 20 );
      }
      add_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_excerpt', 40 );

      2. and add below code to claue-child > style.css

      .product_meta {
      	display: none;
      }

      Kind regards

      Harry
      Premium Wordpress themes and plugins, Best WooCommerce theme https://themeforest.net/user/janstudio/portfolio?ref=janstudio

    • #40858
      kabummmm
      Support Expired

      Thanks for the fast reply! It works! Have a great day!

Viewing 2 reply threads

You must be logged in to reply to this topic.