-
AuthorSearch Results
-
Hi,
2. please report the bug to plugin author at https://wordpress.org/support/plugin/yith-woocommerce-popup/ in English version has the bug too. Or you can temporary fix in Loco > plugin > yith popup > edit ES language find string and remove code https://prnt.sc/unm5dt
3. You can change color of button by add below code to Claue > Theme Option > General Layout > Custom CSS
.product-image .product-btn .button:hover { color: #fff; background: #222; } .shop-top-sidebar .widget ul li.current-cat > a { color: #56cfe1; }
And change #222, #56cf61 to your color
Kind regards
Harry
Premium Wordpress themes and plugins, Best WooCommerce theme https://themeforest.net/user/janstudio/portfolio?ref=janstudioSeptember 25, 2020 at 1:48 am #38644In reply to: Remove Quick Add button (WordPress)
This reply has been marked as private.Hi Paolilla,
1. Please edit column wrap content and reduce padding number
2. Please go to Dashboard > Plugins > and update plugin YITH Popup
3. I’m sorry it not support, please check premium version feature at https://yithemes.com/themes/plugins/yith-woocommerce-popup/
4,5. In color scheme it not support change color of background overlay. You can change popup background in YITH > WC popup > Edit subscribe form > Layout > https://prnt.sc/un7qis
6. You can change by add below code to Claue > Theme Option > General Layout > Custom CSS
.page-head:before { background: rgba(0, 0, 0, 0.5); }
And change 0,0,0 as RGB color and 0.5 as opacity from 0.0 to 1.0
Kind regards
Harry
Premium Wordpress themes and plugins, Best WooCommerce theme https://themeforest.net/user/janstudio/portfolio?ref=janstudioSeptember 22, 2020 at 8:15 am #38615In reply to: Change responsive break point for tablets?
Hi,
Please add below code to JanStudio > Theme Option > General Layout > Custom CSS
@media only screen and (max-width: 1024px) and (min-width: 801px) { .hidden-md.visible-sm.jas-col-sm-3.jas-col-xs-3 { display: none; } .header-4 .header__mid .jas-row .jas-col-md-9.jas-col-sm-6, .header-3 .header__mid .jas-row .jas-col-md-2.jas-col-sm-6 { flex-basis: 16.666%; max-width: 16.666%; } .jas-col-md-8.hidden-sm { display: block; } }
Kind regards
Harry
Premium Wordpress themes and plugins, Best WooCommerce theme https://themeforest.net/user/janstudio/portfolio?ref=janstudioSeptember 21, 2020 at 11:19 pm #38602In reply to: Sidebar before in mobile version
Hi Virolucio,
Please add below code to JanStudio > Theme Option > General Layout > Custom CSS
@media only screen and (max-width: 767px) { .jas-col-md-3.jas-col-xs-12.first-md { order: -1; }}
Kind regards
Harry
Premium Wordpress themes and plugins, Best WooCommerce theme https://themeforest.net/user/janstudio/portfolio?ref=janstudioSeptember 21, 2020 at 4:57 pm #38589In reply to: Hero banner not mobile responsive
Hi Jacky,
The issue because you add padding top and padding bottom of and these value fixed while background cover content and when you view on mobile only the width decrease but the height still the same so you have to add code to decrease the height.
Please add below code to Claue > Theme Option > General layout > Custom CSS
@media only screen and (max-width: 767px) { .vc_custom_1600637582830 { padding-top: 25vh !important; padding-bottom: 5vh !important; }}
We recommend just change the background image. Don’t delete the row wrap hero banner and create new row.
Kind regards
Harry
Premium Wordpress themes and plugins, Best WooCommerce theme https://themeforest.net/user/janstudio/portfolio?ref=janstudioncohen68
ParticipantHello Team,
how can I modify the border colour to be black instead of aqua?
Attachments:
You must be logged in to view attached files.September 19, 2020 at 1:17 pm #38573In reply to: product catagory content box
Hi,
Please add below code to claue-child > functions.php
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 );
and add below code to claue-child > style.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=janstudioSeptember 17, 2020 at 3:43 pm #38554In reply to: Code showing when clicking on images
This issue because you load image from https://media.bdroppy.com/storage-foto and the title of image contain the code https://prnt.sc/uis1ew
You can fix by hide caption of image by add below code to JanStudio > Theme Option > General Layout > Custom CSS
.pswp__ui--fit .pswp__caption { display: none; height:0 !important; min-height: 0 !important; }
Kind regards
Harry
Premium Wordpress themes and plugins, Best WooCommerce theme https://themeforest.net/user/janstudio/portfolio?ref=janstudioSeptember 14, 2020 at 9:56 pm #38528In reply to: Theme Issues
Hi Nasan,
1. Please go to WpBakry PageBuilder > Role Manager and check in Post Types > Custom > Post, Page, Products
2. Please add below code to Claue > Theme Option > General Layout > Custom CSS
.tax-product_cat .page-head h1 {visibility: hidden;}
Kind regards
Harry
Premium Wordpress themes and plugins, Best WooCommerce theme https://themeforest.net/user/janstudio/portfolio?ref=janstudio -
AuthorSearch Results