Home › Forums › Basel support forum › PRODUCT PAGE
PRODUCT PAGE
- This topic has 15 replies, 2 voices, and was last updated 8 years, 1 month ago by Artem Temos.
-
AuthorPosts
-
October 9, 2016 at 5:01 am #5244
IvyKParticipantHi,
We just bought a theme and have few questions about the product page.
1. ATTRIBUTES
I set up a product page with three attributes: 1.Format, 2.Size and 3.Color.
While size and color have variations, format does not, It has only one option.
I want the format attribute to be visible, but not used as a variation. It would simply be used as a visual and informative guide.
I added It to product page in attributes section and check marked to be visible, but not used in variation. Unfortunately, It does not seem to work, It is simply not showing on a product page.
I am not sure what I’m missing there.2. TITLE FONT SIZE
How can I reduce the product title font size on product page since there seem to be no option to choose font size in pixels?3. SKU AND TAGS
How to remove SKU and tags from product pages?4. COMPACT STYLE
We use compact product page design.
Where can I edit information? We want to remove sections such as additional information, reviews and add our own custom sections.
Also, we want all the sections to be closed by default, how to achieve that as well?Thank you!
IvanaOctober 9, 2016 at 11:34 am #5249
Artem TemosKeymasterHello,
Thank you so much for purchasing our theme.
1. If you are not using some attribute for variations it should be displayed under the
Additional information
tab. If it is not, please send us your admin access so we could see what is wrong.2. You can decrease it by adding this code snippet to the Custom CSS section in Theme Settings
.single-product-content .entry-title { font-size: 28px; }
3. Here is a custom code for this task also
.product_meta { display: none; }
4. Unfortunately, there is no settings for WooCommerce tabs. But here is a documentation from the plugin that should help you add/edit/remove tabs https://docs.woocommerce.com/document/editing-product-data-tabs/
Regards
October 10, 2016 at 7:55 pm #5300
IvyKParticipantHi,
1. It is displayed under additional information, but is It possible to be visible in the area where people actually choose (click) the options?
I want It to be visible there, but NOT CLICABLE if there is only one option.
It would serve simply as an easy visual information with uniformed look across the whole store. That way people would easily know what we offer on every particular page without reading short description or additional information.
I know I can show one variation there but It acts like other variations, It has to be selected first, which is at the end confusing because there are no other options to choose from in that particular attribute.
Can It simply be visible there, but not act as an option?
That would be great, simple, without possibilities of confusion.2. Worked, thank you!
3. Not working, still showing both SKU and tags.
4. Hopefully we’ll figure It out, thank you! 🙂
Pozdrav!
IvanaOctober 11, 2016 at 5:24 am #5310
Artem TemosKeymasterHello,
1. We understand what you mean but it is impossible with WooCommerce to have an attribute for variation not clickable. WooCommerce force you to choose all attributes before adding product to cart and we can’t change this behaviour in our theme. So as a workaround you can place your attribute value to the short description that will be shown right before variations selects.
3. Try to add this one instead
.product_meta { display: none; }
Regards
October 11, 2016 at 6:38 am #5316
IvyKParticipantHi,
1. I see, that’s a shame, thank you for explaining.
3. It seems you gave me the same code as before, I tried again, It’s still not working unfortunately. I dumped the cache, just in case, but no.
4. Could you please guide us where those snippets are suppose to be?
Should we enter them somewhere or look for them and edit?
Sorry, not very savvy with those things.Thank you!
October 11, 2016 at 6:54 am #5317
Artem TemosKeymasterHi,
1. We are sorry, but it doesn’t depend on our theme, it is a way WooCommerce plugin works and we can’t manage this in our theme scope.
3. Sorry, it us our mistake, we just missed a word, try this and if it will not work please provide us your admin access so we could try to add it ourselves
.product_meta { display: none!important; }
4. You can place the code from the tutorial to child theme functions.php file. If you didn’t install child theme you can find it in the downloaded from themeforest package.
October 13, 2016 at 4:23 pm #5425
IvyKParticipantHi,
We have a problem with number 4 question.
We installed the child theme as you said, but website ended up looking like a big mess. We uninstalled It immediately and now all is back in order.
I am not quite sure what happened there.
How do we go about It now?Thank you!
I.
October 13, 2016 at 4:52 pm #5426
Artem TemosKeymasterHello,
The problem is that when you change your theme in WordPress all widgets may be lost. Unfortunately, you will need to readd your widgets to right widgets area when activating child theme.
October 14, 2016 at 2:35 am #5431
IvyKParticipantHi,
Thank you!
We installed the child theme and added widgets again and all is back in order now.We also managed to change titles of tabs but are not very confident to reorder the tabs. I’m not quite sure how to edit that code especially since we now changed the titles.
We changed ‘Description’ tab to ‘Details’ and ‘Shipping & Delivery’ tab to ‘Shipping & Returns’.
The order in tabs is: 1. Details 2. Reviews 3. Shipping & Returns.
We would need It to be in this order: 1. Details 2. Shipping & Returns 3. ReviewsWould you be so kind and provide us with code with that order, I’m afraid I will mess up royaly?
Also, we would like for all tabs to be closed initially. I tried one of the codes you gave the other customer for that, but unfortunately did not work for me.
Thank you so much for all your help!
Ivana
October 14, 2016 at 6:31 am #5439
Artem TemosKeymasterIn this case, please provide us your FTP access so we could make necessary code changes in your child theme to change tabs order.
Thank you.
October 14, 2016 at 7:17 pm #5469
IvyKParticipantUnfortunately we cannot provide you with the access at the moment, would you be able to give us a code instead?
As we understand from that link, It is this code, but I’m not quite sure how to rewrite It properly for us:
add_filter( ‘woocommerce_product_tabs’, ‘woo_reorder_tabs’, 98 );
function woo_reorder_tabs( $tabs ) {$tabs[‘reviews’][‘priority’] = 5; // Reviews first
$tabs[‘description’][‘priority’] = 10; // Description second
$tabs[‘additional_information’][‘priority’] = 15; // Additional information thirdreturn $tabs;
}Ivana
October 14, 2016 at 8:09 pm #5473
Artem TemosKeymasterYes, this code is correct and should work right. If it is not then the only one way to check it is to see your web-site live.
Regards
October 14, 2016 at 8:16 pm #5476
IvyKParticipantHm, I thought It has to be adjusted?! Won’t It make reviews first, I need the reviews to be third and details first.
October 14, 2016 at 8:40 pm #5480
Artem TemosKeymasterOk, try to use this code snippet
add_filter( 'woocommerce_product_tabs', 'woo_reorder_tabs', 999); function woo_reorder_tabs( $tabs ) { $tabs['reviews']['priority'] = 60; // Reviews first $tabs['description']['priority'] = 10; // Description second $tabs['additional_information']['priority'] = 115; // Additional information third return $tabs; }
October 14, 2016 at 8:55 pm #5481
IvyKParticipantThank you, but unfortunately the code did not work.
Is It perhaps because we changed the titles and removed ‘Additional Information’ tab?October 14, 2016 at 10:14 pm #5485
Artem TemosKeymasterSorry, but really can’t say why it is not working while can’t review your files and see the website.
-
AuthorPosts
Tagged: Attributes, compact style, font size, product page, sku, tags
- You must be logged in to create new topics. Login / Register