Home Forums Search Search Results for 'css'

Viewing 10 results - 1,471 through 1,480 (of 3,138 total)
  • Author
    Search Results
  • #23624

    In reply to: css problems

    Hi,

    now you can login as admin.

    I updated the theme and both the css problem and the product bundle problem still exist.

    also now in the single product page  displays wrong the “- +” (attachment image)

    thanks

    Attachments:
    You must be logged in to view attached files.
    #23614
    This reply has been marked as private.
    #23598
    This reply has been marked as private.
    #23596
    This reply has been marked as private.
    #23580

    Hi Artkaze,

    1. The fade-out effect doesn’t help solve the issue with shadow. Because it have same css value (overflow: hidden;)

    You can change product layout to layout-4 in Theme Option > WooCommerce > Product Detail Settings and enable zoom effect.

    2. For code please keep old code

    @media only screen and (min-width: 737px) {
    .type-product:not(.product-quickview) .slick-next {
    right: -40px!important;
    }}

    and add new

    @media only screen and (min-width: 737px) {
    .type-product:not(.product-quickview) .p-thumb .slick-next {
        right: -16px!important;
    }}
    
    @media only screen and (max-width: 736px) {
    .type-product:not(.product-quickview) .p-thumb .slick-next {
        right: 55px!important;
    }}

    Best regards

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

    #23568
    This reply has been marked as private.
    #23534

    Hi ArtK,

    1. Thank you for report bug relate to Stripe. We fixed this issue and included for the next update.

    2. Please remove css shadow for div wrap image

    .p-thumb .slick-list {
        box-shadow: 11px 12px 12px 2px grey;
    }
    .single-product-thumbnail .slick-slide img {
        box-shadow: 10px 7px 5px grey;
    }

    and add new css

    .p-thumb.slick-initialized .slick-slide {
    	padding: 0 25px 25px 0;
    }
    .single-product-thumbnail .p-thumb .slick-slide img {
    	box-shadow: 11px 12px 12px 2px grey;
    }

    And you have to disable zoom function in Theme Option > WooCommerce > Product Detail Settings > Enable Zoom Effect > Off and use lightbox zoom

    Kind regards

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

    Hi,

    I checked your site it now Instagram Feed work well http://take.ms/1siC2. Did you fix?

    Please add more code in Claue > Theme Option > General Layout > Custom CSS

    [dir="rtl"] .widget h4.widget-title::after {
    	right: 0;
    	left: auto;
    }

    Kind regards

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

    #23465

    In reply to: RTL fix

    Hi Harry,

    Can you please share the css code with me so I can have a look too and if found any minor bug report it with you?

    Kind regards.

    Rahim Vaziri
    CEO & Founder at Look.ir

    #23461

    In reply to: Show Category

    Hi,

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

    add_action( 'woocommerce_shop_loop_item_title', 'VS_woo_loop_product_title', 25 );
     
    function VS_woo_loop_product_title() {
        $terms = get_the_terms( $post->ID, 'product_cat' );
        if ( $terms && ! is_wp_error( $terms ) ) :
        // only displayed if the product has at least one category
            $cat_links = array();
        foreach ( $terms as $term ) {
            $cat_links[] = '<a href="'.esc_url( home_url() ).'/product-category/'.$term->slug.'">'.$term->name.'</a>';
        }
        $on_cat = join( ", ", $cat_links );
        ?>
        <div class="categories-link db"><?php echo $on_cat; ?></div>
    <?php endif;
    }
    
    add_action( 'woocommerce_single_product_summary', 'product_category_name', 3 );
     
    function product_category_name() {
        $terms = get_the_terms( $post->ID, 'product_cat' );
        if ( $terms && ! is_wp_error( $terms ) ) :
        // only displayed if the product has at least one category
            $cat_links = array();
        foreach ( $terms as $term ) {
            $cat_links[] = '<a href="'.esc_url( home_url() ).'/product-category/'.$term->slug.'">'.$term->name.'</a>';
        }
        $on_cat = join( ", ", $cat_links );
        ?>
        <div class="categories-link db w__100 mb__5"><?php echo $on_cat; ?></div>
    <?php endif;
    }

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

    .jas-wc-single .entry-summary > .categories-link,
    .product-quickview .entry-summary > .categories-link {
        margin-bottom: 0px;
    }

    Best regards

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

Viewing 10 results - 1,471 through 1,480 (of 3,138 total)