Forum Replies Created

Viewing 10 posts - 11 through 20 (of 14,979 total)
  • Author
    Posts
  • in reply to: Custom price in product page #44539

    Hi Paulo,

    Can you send me admin account and check in “set as private reply” to check the issue.

    Thank and regards

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

    in reply to: Custom price in product page #44535

    Hi Paulo,

    Can you send me your site url and the product page where you setup Measurement Price Calculator to check the issue,

    Thanks

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

    Hi,

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

    add_action( 'wp_head', 'remove_my_action' ); 
    function remove_my_action(){
    // Remove old position of category description
        remove_action( 'woocommerce_archive_description', 'woocommerce_taxonomy_archive_description', 10 );
        remove_action( 'woocommerce_before_main_content', 'jas_claue_wc_page_head', 15 );
        add_action('woocommerce_after_main_content', 'woocommerce_taxonomy_archive_description', 5 );
    }
    
    function jas_claue_child_wc_page_head() {
        if ( ! cs_get_option( 'wc-enable-page-title' ) || ( class_exists( 'WCV_Vendors' ) && WCV_Vendors::is_vendor_page() ) ) return;
    
        $title = cs_get_option( 'wc-page-title' );
    
        $output = '<div class="page-head pr tc"><div class="jas-container pr">';
            if ( is_search() ) {
                $output .= '<h1 class="mb__5 cw">' . sprintf(__( 'Search Results for: %s', 'claue' ), '<span>' . get_search_query() . '</span>' ) . '</h1>';
            } elseif ( is_shop() ) {
                $output .= '<h1 class="mb__5 cw">' . esc_html( cs_get_option( 'wc-page-title' ) ) . '</h1>';
                $output .= '<p class="mg__0">' . do_shortcode( cs_get_option( 'wc-page-desc' ) ) . '</p>';
            } else {
                $output .= '<h1 class="cw">' . single_cat_title( '', false ) . '</h1>';
            }
            ob_start();
            $output .= ob_get_clean();
        $output .= '</div></div>';
    
        echo wp_kses_post( $output );
    }
    add_action( 'woocommerce_before_main_content', 'jas_claue_child_wc_page_head', 15 );

    and below code to Claue > Theme Option > General Layout > Custom CSS

    .term-description {
    	display: block;
    	width: 100%;
    	max-width: 1170px;
    	margin: 30px auto;
    }

    Kind regards

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

    Hi,

    The code above you copied not correct format. Please use below code

    /* move category description below products */
    add_action( 'wp_head', 'remove_my_action' ); 
    function remove_my_action(){
    	remove_action( 'woocommerce_before_main_content', 'jas_claue_wc_page_head', 15 );
    }
    function jas_claue_child_wc_page_head() {
    	if ( ! cs_get_option( 'wc-enable-page-title' ) || ( class_exists( 'WCV_Vendors' ) && WCV_Vendors::is_vendor_page() ) ) return;
    	$title = cs_get_option( 'wc-page-title' );
    	$output = '<div class="page-head pr tc"><div class="jas-container pr">';
    		if ( is_search() ) {
    			$output .= '<h1 class="mb__5 cw">' . sprintf(__( 'Search Results for: %s', 'claue' ), '<span>' . get_search_query() . '</span>' ) . '</h1>';
    		} elseif ( is_shop() ) {
    			$output .= '<h1 class="mb__5 cw">' . esc_html( cs_get_option( 'wc-page-title' ) ) . '</h1>';
    			$output .= '<p class="mg__0">' . do_shortcode( cs_get_option( 'wc-page-desc' ) ) . '</p>';
    		} else {
    			// Remove old position of category description
    			remove_action( 'woocommerce_archive_description', 'woocommerce_taxonomy_archive_description', 10 );
    			$output .= '<h1 class="cw">' . single_cat_title( '', false ) . '</h1>';
    			//$output .= do_shortcode( category_description() );
    			add_action( 'woocommerce_after_shop_loop', 'woocommerce_taxonomy_archive_description', 40 );
    			add_action( 'woocommerce_after_shop_loop', 'woocommerce_product_archive_description', 40 );			
    		}
    		ob_start();
    		$output .= ob_get_clean();
    	$output .= '</div></div>';
    
    	echo wp_kses_post( $output );
    }
    add_action( 'woocommerce_before_main_content', 'jas_claue_child_wc_page_head', 15 );

    Kind regards

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

    Hi, I also want to move description below products at category page. I tried paste your code, but wordpress shows syntax error, unexpected token “class” at line 36, and don’t want to save file functions.php.

    This is line 36 at my functions.php:
    $output = ‘<div class=”page-head pr tc”><div class=”jas-container pr”>’;

    Hi,

    Please edit code and use below code

    /* move category description below products */
    add_action( 'wp_head', 'remove_my_action' ); 
    function remove_my_action(){
    	remove_action( 'woocommerce_before_main_content', 'jas_claue_wc_page_head', 15 );
    	remove_action( 'woocommerce_single_product_summary', 'jas_claue_wc_single_social_share', 50 );
    }
    function jas_claue_child_wc_single_social_share() {
    	if ( cs_get_option( 'wc-social-share' ) ) {
    		echo '<h3>Condividi su</h3>';
    		jas_claue_social_share();
    	}
    }
    add_action( 'woocommerce_single_product_summary', 'jas_claue_child_wc_single_social_share', 50 );
    
    function jas_claue_child_wc_page_head() {
    	if ( ! cs_get_option( 'wc-enable-page-title' ) || ( class_exists( 'WCV_Vendors' ) && WCV_Vendors::is_vendor_page() ) ) return;
    	$title = cs_get_option( 'wc-page-title' );
    	$output = '<div class="page-head pr tc"><div class="jas-container pr">';
    		if ( is_search() ) {
    			$output .= '<h1 class="mb__5 cw">' . sprintf(__( 'Search Results for: %s', 'claue' ), '<span>' . get_search_query() . '</span>' ) . '</h1>';
    		} elseif ( is_shop() ) {
    			$output .= '<h1 class="mb__5 cw">' . esc_html( cs_get_option( 'wc-page-title' ) ) . '</h1>';
    			$output .= '<p class="mg__0">' . do_shortcode( cs_get_option( 'wc-page-desc' ) ) . '</p>';
    		} else {
    			// Remove old position of category description
    			remove_action( 'woocommerce_archive_description', 'woocommerce_taxonomy_archive_description', 10 );
    			$output .= '<h1 class="cw">' . single_cat_title( '', false ) . '</h1>';
    			//$output .= do_shortcode( category_description() );
    			add_action( 'woocommerce_after_shop_loop', 'woocommerce_taxonomy_archive_description', 40 );
    			add_action( 'woocommerce_after_shop_loop', 'woocommerce_product_archive_description', 40 );			
    		}
    		ob_start();
    		$output .= ob_get_clean();
    	$output .= '</div></div>';
    
    	echo wp_kses_post( $output );
    }
    add_action( 'woocommerce_before_main_content', 'jas_claue_child_wc_page_head', 15 );

    The code you copy above not correct format.

    Kind regards

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

    in reply to: Problem with cart sidebar #44525

    You’re welcome, Isabelle!
    Have a good day!

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

    in reply to: Problem with cart sidebar #44523

    Hi,

    I checked your site and see theme outdated, please follow this topic https://support.janstudio.net/forums/topic/updating-the-theme/ top update theme and plugins to latest version.

    Kind regards

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

    in reply to: Update #44520

    Hi Rahim,

    Please download at https://drive.google.com/file/d/1N3bDvgCcsyYAJ_QQaxm92QkyOsS59mtc/view?usp=drive_link

    Kind regards

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

    in reply to: how do I use the default woocommerce gallery? #44518

    Hi,

    I’m sorry our theme and plugins deep override default gallery function. It can’t reset every where gallery to default.

    Kind regards

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

    in reply to: how do I use the default woocommerce gallery? #44516

    Hi,

    Please go to Claue > Theme Option > WooCommerce > Product Detail Setting > and follow this screenshot https://tppr.me/WxVlXA

    Kind regards

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

Viewing 10 posts - 11 through 20 (of 14,979 total)