Digital experiences for all disciplines
New Landing › How can we help? › Atelier › Product page & display
New Landing › How can we help? › Atelier › Product page & display
- This topic has 34 replies, 2 voices, and was last updated 8 years by Kyle – SUPPORT.
-
Posted in: Atelier
-
July 7, 2016 at 10:28 am #279653
Hi, I looked your different possibility into Atelier’s demo website, and I changed almost all the main page.
I’m now looking for products display:
– about your “TRENDING THIS WEEK” section, I tried to do the same thing but I couldn’t (see first pic pls):
– I created a Row + Product toogle. Set as “selected product”, introduce my product ID, product display type : gallery, layout : standard, No multi-mansonry, no carousel, no full width, column : 3, order by : default, Order : descending, shop button ON.
I wanted the same “white square” below the product, with just: product name, One price (not “up to”), category (without subcategory), and review. All attached to product, like the attached pic.– about the product list in categories (or subcategories). I think I have to turn ON the shadow, and then I would like the title in Bold, show just the first price (not “29,99$–33,99$” when there is options), remove “select options”, show the stars review below.
I know it’s a little bit long but, I really want increase the design of my website thanks to your theme, and I apologize for my undecided/lack of knowledge about these stuffs …
thanks
Attachments:
You must be logged in to view attached files.July 7, 2016 at 10:57 am #279671Hi
The style you are after is the ‘preview slider’ however this only works with variable products, and you need to set an image for each variation for e.g. the blue chair, the red chair etc
– Kyle
July 7, 2016 at 12:34 pm #279749Yes I saw that it was with variable products, however what I wonder is how to set exactly like both example previously said
July 7, 2016 at 1:56 pm #279775In the product asset instead of ‘gallery’ choose ‘preview slider’
– Kyle
July 7, 2016 at 3:32 pm #279798Ok, I will try it as soon as possible.
What about the other parts of my questions?
July 7, 2016 at 3:37 pm #279800Add this to your child theme’s functions.php file to change the price format:
// Use WC 2.0 variable price format add_filter( 'woocommerce_variable_sale_price_html', 'wc_wc20_variation_price_format', 10, 2 ); add_filter( 'woocommerce_variable_price_html', 'wc_wc20_variation_price_format', 10, 2 ); function wc_wc20_variation_price_format( $price, $product ) { $min_price = $product->get_variation_price( 'min', true ); $max_price = $product->get_variation_price( 'max', true ); if ($min_price != $max_price){ $price = sprintf( __( 'From %1$s', 'woocommerce' ), wc_price( $min_price ) ); return $price; } else { $price = sprintf( __( '%1$s', 'woocommerce' ), wc_price( $min_price ) ); return $price; } }
– Kyle
July 7, 2016 at 3:44 pm #279803This reply has been marked as private.July 7, 2016 at 5:34 pm #279816The child theme is provided in the download files from themeforest, just upload and activate it like you do with any other theme. Then go to Appearance > Editor and add the code
– Kyle
July 8, 2016 at 7:10 am #279885Ok, should I upload the two files (style.css & functions.php) into the /htdocs of my website ftp?
July 8, 2016 at 8:02 am #279891Just upload the whole child theme to wp-content/themes. Easiest way is upload to Appearance > Themes > Add New
– Kyle
July 8, 2016 at 8:21 am #279900And then activate, right ?
Just have to switch to the parent at any time without any risk to loose the parent setting right?
July 8, 2016 at 8:40 am #279902Yes then activate, all theme options etc will remain, the only thing you may need to do is reset your home page in settings > reading
– Kyle
July 8, 2016 at 10:00 am #279915Not sure about if it worked or not. I did not notice any differences with the added code that you provided.
I changed the functions.php by the same + the code, and then uploaded again via ftp. Which gave me the image below.Attachments:
You must be logged in to view attached files.July 8, 2016 at 10:17 am #279933Please provide me with a link and login so I can check
– Kyle
July 8, 2016 at 10:24 am #279937This reply has been marked as private. -
Posted in: Atelier
You must be logged in and have valid license to reply to this topic.