-
AuthorSearch Results
-
August 6, 2018 at 4:12 pm #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.August 6, 2018 at 2:47 am #23614In reply to: Strange stripe bug and a small design issue
This reply has been marked as private.August 4, 2018 at 11:13 pm #23598In reply to: Strange stripe bug and a small design issue
This reply has been marked as private.August 4, 2018 at 10:50 pm #23596In reply to: Strange stripe bug and a small design issue
This reply has been marked as private.August 3, 2018 at 4:46 pm #23580In reply to: Strange stripe bug and a small design issue
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=janstudioAugust 3, 2018 at 3:54 am #23568In reply to: Strange stripe bug and a small design issue
This reply has been marked as private.August 2, 2018 at 11:44 am #23534In reply to: Strange stripe bug and a small design issue
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=janstudioAugust 1, 2018 at 6:03 pm #23512Hi,
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=janstudioHi 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.irJuly 31, 2018 at 8:08 pm #23461In 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 -
AuthorSearch Results