Home Forums Themes Support Claue Under product direct size, color, brand writing?

Viewing 27 reply threads
  • Author
    Posts
    • #20428

      HI, i need a help with size and colour, brands to front page for every products under. I try but its popup. I need a direct under.

      EX Product: http://kozanladenbau.de/product-category/kochgeraete/gasherde/gasherd-700/

      *****

      EX: https://www.gastparo.de/        => Product popup

      EX: https://www.ggmgastro.com/kochgerate/kochserie-mario-1/kochserie-mario/elektroherde-mario-700.html

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

      Hi,

      Please go to JanStudio > Theme Option > WooCommerce > Product Listing Settings > Enable Products Attribute On Product List and check in size, color and brands

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

      .product-image .product-attr {
      bottom: 0;
      left: 0;
      right: 0;
      position: relative;
      color: #222;
      text-align: left;
      margin-top: 10px;
      opacity: 1;
      visibility: visible;
      }

       

      Best regards

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

    • #20514

      Thanks!

      is it possible to print the Short Description?

      Kind Regards

    • #20519

      For ex. funktions.php  for other themes.

      add_action( ‘woocommerce_after_shop_loop_item_title’, ‘woocommerce_template_single_excerpt’, 5);

    • #20530

      This work good on standart css, but for responsive css is bad. What can i do? Can u help me?

      <!–more–>

      .product-image .product-attr {
      bottom: 0;
      left: 0;
      right: 0;
      position: relative;
      color: #222;
      text-align: left;
      margin-top: 10px;
      opacity: 1;
      visibility: visible;
      }

    • #20532

      Hi,

      1. You mean add short description on shop/category page?

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

      add_action( 'woocommerce_after_shop_loop_item_title', 'woo_show_excerpt_shop_page', 15 );
      function woo_show_excerpt_shop_page() {
      	global $product;
      	echo $product->post->post_excerpt;
      }

      2. Please add more code for mobile

      @media only screen and (max-width: 1024px) {
      .product-image .product-attr {
      	bottom: 0;
      }}

      Best regards

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

    • #20775

      Hi, i have again problem with this on responsive view.

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

      Hi i cant make prices in center, i need a help.

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

      Hi,

      Please add below code

      .price {
      	margin: 10px auto 0;
      	width: 100%;
      	display: inline-block;
      }
      @media only screen and (max-width: 320px) {
      h3.product-title, .product-image .product-attr {
      	font-size: 12px;
      }}

      Best regards

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

    • #20799

      Hi thanks,
      I have 2 another question.

      Can look at the pictures below. i have Slip and font size problems.

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

      Hi,

      Please remove css code related to “.product-image .product-attr”

      and download attach file to claue-child > woocommere

      Best regards

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

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

    • #20857

      Thank but, unfortunately it did not improve.

    • #20871

      What can i for product price when is “0” i need a hide.

      I add this code on funksion.php in child theme

      add_action( ‘woocommerce_product_query’, ‘themelocation_product_query’ );
      function themelocation_product_query( $q ){
      $meta_query = $q->get( ‘meta_query’ );
      $meta_query[] = array(
      ‘key’ => ‘_price’,
      ‘value’ => 0,
      ‘compare’ => ‘>’
      );
      $q->set( ‘meta_query’, $meta_query );
      }

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

      Hi,

      1. Please use attach file and add below code to claue-child > style.css, i check on my local it work well

      .product__info.mt__15 {
      	text-align: center;
      }
      .product-attr.ts__03.cw {
      	color: #696969;
      	text-align: center;
      }

      2. Please use below code and put in claue-child > functions.php

      add_action( 'woocommerce_product_query', 'themelocation_product_query' );
      function themelocation_product_query( $q ){
          $meta_query = $q->get( 'meta_query' );
              $meta_query[] = array(
                          'key'       => '_price',
                          'value'     => 0,
                          'compare'   => '>'
                      );
          $q->set( 'meta_query', $meta_query );
      }

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

    • #20989

      What can i do for favico?

      i upload fav.ico on web seite but not work.

    • #21002

      Hi,

      Please follow this video to upload favicon https://www.youtube.com/watch?v=lXulQpuITVQ&list=UUMDvyPJs20jwKoFIO4XUF6w&index=15

      Best regards

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

    • #21096

      HI i cant fix this price on product detail.

      I add all code on my child theme but i dont know why icant fix this insident.

      I have 2 screenshot for sample.

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

      Hi,

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

      .entry-summary .price {text-align: left;}

      Best regards

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

    • #21201

      Thank u,

      for favico i try this before but, nothing. See in screenshot.

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

      Hi,

      Which plugin you use to disable admin-bar on front end? Please try deactivate this plugin.

      Best regards

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

    • #22335

      add_action( ‘woocommerce_after_shop_loop_item_title’, ‘woo_show_excerpt_shop_page’, 15 ); function woo_show_excerpt_shop_page() { global $product; echo $product->post->post_excerpt; }

       

      i need a this code to hide in mobile.

    • #22337

      Hi,

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

      @media screen and (max-width: 800px)
      .product-info ul {display: none;}
      }

      Best regards

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

    • #22341

      I have 2 ideas.

      2 img is better, but if not possible how do I do the first one?

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

      Hi,

      If you show 1 product per row on mobile, please add below code

      @media screen and (max-width: 736px)
      .products .jas-col-xs-6 {
      max-width: 100%;
      flex-basis: 100%;
      }}

      Best regards

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

    • #22384

      Thanks but the situation has not changed

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

      Sorry the code incorrect. I fixed on your site.

      The correct code is

      @media screen and (max-width: 736px) {
      .products .jas-col-xs-6 {
      max-width: 100%;
      flex-basis: 100%;
      }}

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

    • #22486

      Now it’s ok, but only the last product crops

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

      Hi,

      This issue related to accordion element you use for product. I recommend use option 2.

      Best regards

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

Viewing 27 reply threads

You must be logged in to reply to this topic.