Home › Forums › Basel support forum › Product Detail Page
Product Detail Page
- This topic has 11 replies, 2 voices, and was last updated 7 years ago by Artem Temos.
-
AuthorPosts
-
December 4, 2017 at 9:53 am #27000
luvaloParticipantHi,
I have a problem editing the product details page
# issues 1: I describe it here: https://www.screencast.com/t/bZU2UqBf3sg
# issues 2: I want to config Related products show product grid normal type, show all product related ( No Carousel )
Thank you for advanced!December 4, 2017 at 10:18 am #27007
Artem TemosKeymasterHi,
1. Product page sidebar can be enabled in Theme Settings -> Product page. You will need to add your widgets there via Appearance -> Widgets.
You can add the following code snippet to the functions.php file in the child theme to display custom text after the add to cart button
add_action( 'woocommerce_single_product_summary', 'my_text', 32 ); function my_text() { echo '<p class="after-add-to-cart">My custom HTML and text</p>'; }
2. Sorry, but you can’t change related products carousel to the grid.
Regards
December 4, 2017 at 12:45 pm #27051
luvaloParticipantI feel disappointed for the issues 2, you should improve it in the future.
So Up-sells, I want it to display grid ( No Carousel ), That is possible?December 4, 2017 at 12:52 pm #27058
Artem TemosKeymasterOK, we will consider adding more options for this in the future. Unfortunately, it works with carousels only at the moment.
December 4, 2017 at 3:11 pm #27094
luvaloParticipantSo, how to enable or disable “Additional information” tab in product detail page?
December 4, 2017 at 3:19 pm #27096
Artem TemosKeymasterHi,
Here is an article from WooCommerce documentation that should help you edit/remove tabs on the product page https://docs.woocommerce.com/document/editing-product-data-tabs/
Regards
December 4, 2017 at 4:00 pm #27106
luvaloParticipantThanks for the answer!
Other questions, how to create table content in product description tab?
ThanksDecember 4, 2017 at 4:45 pm #27114
Artem TemosKeymasterYou can use standard HTML table markup for this task. Here you can find an example of such table https://www.w3schools.com/html/html_tables.asp
Regards
December 4, 2017 at 4:54 pm #27117
luvaloParticipantMy text block element visual composer don’t show table editor, see it: https://www.screencast.com/t/fWOJzvHaoyiI
how to fixDecember 4, 2017 at 5:14 pm #27122
Artem TemosKeymasterBut WordPress doesn’t have table editor at all so there is no fix for that.
December 4, 2017 at 5:17 pm #27124
luvaloParticipantI just want to create a table like on your template https://www.screencast.com/t/EuYKcpz8GRW
December 4, 2017 at 5:36 pm #27127
Artem TemosKeymasterYou can use this HTML table code
<table> <tbody> <tr> <th>SIZE</th> <th>CHEST</th> <th>WAIST</th> <th>HIPS</th> <th>HEIGHT</th> <th>AGE</th> </tr> <tr> <td><strong>S</strong></td> <td>6–7</td> <td>64.5–66</td> <td>59.5–61.5</td> <td>68.5–71</td> <td>122–128</td> </tr> <tr> <td><strong>M</strong></td> <td>8–9</td> <td>66–69</td> <td>61.5–65</td> <td>71–74.5</td> <td>128–137</td> </tr> <tr> <td><strong>L</strong></td> <td>10–12</td> <td>69–75</td> <td>65–69</td> <td>74.5–79.5</td> <td>137–147</td> </tr> <tr> <td><strong>XL</strong></td> <td>14–16</td> <td>75–81.5</td> <td>69–72.5</td> <td>79.5–84.5</td> <td>147–158</td> </tr> </tbody> </table>
-
AuthorPosts
- You must be logged in to create new topics. Login / Register