Home Forums Themes Support Gecko Some modification about font menu & breadcrumb

Viewing 18 reply threads
  • Author
    Posts
    • #26663
      1. i need to add pattern png into the background footer. it cant work properly
      2. How to increase the opacity for box checklist “agree term condition”
      3. When i hover the mouse into shopping cart, it will show some explanaton, i want to add explanation into search icon, so people know that this search icon will work for product search only.
      4. How do i use specific font into one of the 4 menu. i want to change the claire et agnes font with the other font
      5. http://claireetagnes.com/royal/

      I want to change the uppercase of CLAIRE ET AGNES  into Claire et Agnès

       

      How ?

      THank you

      Attachments:
      You must be logged in to view attached files.
    • #26667

      Hi,

      Thank you for your rating.

      1. To show pattern background on footer please reduce opacity of footer background color overlay http://prntscr.com/li63a4

      2. To change color of checkbox, please add below code to JanStudio > Theme Option > General Layout > Custom CSS

      .style-checkbox label {
      	border: 1px solid #e3e3e3;
      }

      and change #e3e3e3 with your color example: #ccc, #c3c3c3

      3. Please go to wp-content > themes > gecko > views > header > and open layout-5.php and change code on line 53 from

      <a class="sf-open cb chp" href="javascript:void(0);"><i class="pe-7s-search"></i></a>

      to

      <a class="sf-open cb chp" href="javascript:void(0);" title="<?php echo esc_html__( 'Search function only use for product search', 'gecko' ); ?>"><i class="pe-7s-search"></i></a>

      4. Please change font in JanStudio > Theme Option > Typography

      5. Please add below code to JanStudio > Themee Option > General Layout > Custom CSS

      .page-head h1 {
      	text-transform: none;
      }

      Regards

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

    • #26670

      omg i lost the menu

      whats the problem ?

    • #26671

      The menu is gone

      Attachments:
      You must be logged in to view attached files.
    • #26673

      Hi,

      I check your site the menu still there http://prntscr.com/li6tsd

      Did you fix?

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

    • #26674

      Strange, please check it for me and for the checkbox .

      it doesnt work, i need change it to black so easy to see

    • #26677

      Hi,

      I added code for checkbox, it work well. Please check.

      Regards

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

    • #26689

      Thank you

       

      just confuse with the menu since on my side, i cant see the menu with inconigto

      Attachments:
      You must be logged in to view attached files.
    • #26703

      Hi,

      I see the issue and fixed on your site.

      Regards

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

    • #26711

      Now, mobile version

      • Missing mobile menu
      • There are lot spacing after slider
      • Big price (if we can set 1 product for mobile then it will be good
      • There are grey space below collection 2019
      Attachments:
      You must be logged in to view attached files.
    • #26714

      How to remove the new icon

      Attachments:
      You must be logged in to view attached files.
    • #26716

      Please hide the breadcrumb link

    • #26719

      Hi,

      1. I see the code you added in Theme Option > General Layout > Custom CSS

      .jas-push-menu-btn {
      	display: none;
      }

      Please change to

      @media only screen and (min-width: 1025px) {
      .jas-push-menu-btn {
      	display: none;
      }}

      2. Please edit the row contain “New Collection 2019” and reduce padding-top http://prntscr.com/limvu9

      3. Please go to WooCommerce > Settings > General > Currencies Option > Number of decimals change to 0

      4. The “New” badge will disappear after 5 days

      5. Please add below code to Theme Option > General Layout > Custom CSS

      .jas-wc-single .page-head, .page-head .jas-breadcrumb {display: none;}

      Regards

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

    • #26721

      I just need to remove the breadcrumb, no need to completely remove all of the dark blue box

      Attachments:
      You must be logged in to view attached files.
    • #26724

      Please change code to

      .page-head .woocommerce-breadcrumb, .page-head .jas-breadcrumb {display: none;}

      Regards

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

    • #26736

      OMG you really help me, i dont know why how to say thank you

    • #26737

      How do i change CLAIRE ET AGNES ROYAL into Claire et Agnès ROYAL ? Since ur last code didnt work well

      Attachments:
      You must be logged in to view attached files.
    • #26739

      For the single product page, it wont show the title even i put the title http://claireetagnes.com/bliss-3-piece-nursery-furniture-set-in-seagreen/

    • #26746

      Hi,

      For text transform please add below code to JanStudio > Theme Option > General Layout > Custom CSS

      .page-head h1 {
      	text-transform: none;
      }

      I help you correct last code, that because you still keep old code, i removed it.

      3. Please add below code to wp-content/themes/gecko-child/functions.php

      remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_title', 5 );
      
      if ( ! function_exists( 'jas_gecko_wc_page_head' ) ) {
      	function jas_gecko_wc_page_head() {
      		// Remove old position of breadcrumb
      
      		global $product; 
      
          	$product_id = $product->get_id();
      		remove_action( 'woocommerce_before_main_content', 'woocommerce_breadcrumb', 20, 0 );
      		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', 'gecko' ), '<span>' . get_search_query() . '</span>' ) . '</h1>';
      			} elseif ( is_shop() ) {
      				$output .= '<h1 class="tu mb__10 cw">' . esc_html( cs_get_option( 'wc-page-title' ) ) . '</h1>';
      				$output .= '<p>' . do_shortcode( cs_get_option( 'wc-page-desc' ) ) . '</p>';
      			} elseif ( is_product_category() ) {
      				// Remove old position of category description
      				remove_action( 'woocommerce_archive_description', 'woocommerce_taxonomy_archive_description', 10 );
      
      				$output .= '<h1 class="tu mb__10 cw">' . single_cat_title( '', false ) . '</h1>';
      				$output .= do_shortcode( category_description() );
      			} else {
      				$output .= '<h1 class="tu mb__10 cw">' . $product->get_title('ID') . '</h1>';
      			}
      			ob_start();
      				woocommerce_breadcrumb();
      			$output .= ob_get_clean();
      		$output .= '</div></div>';
      
      		echo wp_kses_post( $output );
      	}
      	add_action( 'woocommerce_before_main_content', 'jas_gecko_wc_page_head', 15 );
      	add_action( 'woocommerce_before_single_product', 'jas_gecko_wc_page_head', 5 );
      }

      Regards

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

Viewing 18 reply threads

You must be logged in to reply to this topic.