Home › Forums › Basel support forum › Single Product Page Arrows
Single Product Page Arrows
- This topic has 10 replies, 2 voices, and was last updated 8 years, 1 month ago by Artem Temos.
-
AuthorPosts
-
October 25, 2016 at 8:21 am #5866
AnonymousInactiveHello X-team,
I have to say I’m really impressed with your theme, it has everything for a beautiful store! This is my new favourite.
I’m running smoothly after demo content install.
01. As requested for pre-purchase you said you would instruct me on how to redesign the arrows near the quantity input on single product pages > http://prnt.sc/cy5y6g
02. How do I display none the little line under each Widget Title? http://prnt.sc/cympgm
03. How can I add the little simple social share icons under category in alternative layout for single products? http://prnt.sc/cyms77
Thank you so much.
TresTee
October 25, 2016 at 10:11 am #5871
Artem TemosKeymasterHello,
Thank you so much for using our theme. We would be glad to help you with this support request.
1. Please, set up child theme and provide us your FTP credentials and admin access so we could make our changes.
2. You can use this code snippet. Add it to a Custom CSS section in Theme Settings
.color-scheme-light .widget-title:before, .color-scheme-light .widgettitle:before { height: 0; }
3. You can customize a file
basel/woocommerce/content-single-product.php
and change this piece of code<?php if ( $product_design != 'alt' && $product_design != 'sticky' && basel_get_opt( 'product_share' ) ): ?> <div class="product-share"> <span class="share-title"><?php _e('Share', 'basel'); ?></span> <?php echo basel_shortcode_social( array( 'type' => basel_get_opt( 'product_share_type' ), 'size' => 'small', 'align' => 'left' ) ); ?> </div> <?php endif ?>
with this one
<?php if ( basel_get_opt( 'product_share' ) ): ?> <div class="product-share"> <span class="share-title"><?php _e('Share', 'basel'); ?></span> <?php echo basel_shortcode_social( array( 'type' => basel_get_opt( 'product_share_type' ), 'size' => 'small', 'align' => 'left' ) ); ?> </div> <?php endif ?>
and remove this completely
<?php if ( ( $product_design == 'alt' || $product_design == 'sticky' ) && basel_get_opt( 'product_share' ) ): ?> <div class="product-share"> <?php echo basel_shortcode_social( array( 'type' => basel_get_opt( 'product_share_type' ), 'style' => 'colored' ) ); ?> </div> <?php endif ?>
We suggest you override the file in your child theme.
Kind Regards
October 25, 2016 at 10:41 pm #5889
AnonymousInactiveHi team,
Thanks so much for the quick response and the assistance.
01. FTP access provided in private below…
02. Lovely, thank you.
03. Works a charm!!
Kind regards,
Tee TresOctober 26, 2016 at 6:23 am #5898
Artem TemosKeymasterHi,
Thank you, but we can’t see your website due to maintenance mode.
Regards
October 26, 2016 at 7:48 am #5908
AnonymousInactiveThank you.
October 26, 2016 at 7:49 am #5909
AnonymousInactiveWould you please also see single product page and how to put the wishlist and heart icon on the same line as “Add To Cart”.
thank you so much.
Kind regards,
TT
October 26, 2016 at 1:27 pm #5913
Artem TemosKeymasterPlease check plus/minus buttons now.
Unfortunately, wishlist button can’t be in the same line with “add to cart” for variable products.
October 26, 2016 at 8:50 pm #5945
AnonymousInactiveHi guys,
That looks beautiful – thank you so very much. I now just need to know if that was purely CSS on the child or done in a main template (just so I know not to overide any theme files in main theme when I update?)
Thank you again for such great support and a beautiful seamless theme, anyone who misses out on this theme is crazy!
October 27, 2016 at 4:54 am #5949
Artem TemosKeymasterYou are welcome. We have made all changes in child theme CSS in one PHP file.
November 11, 2016 at 9:29 am #6571
AnonymousInactiveHello,
Which PHP file did you change the single product page arrows code please? As I’m about to update theme. Thank you. T
November 11, 2016 at 4:30 pm #6583
Artem TemosKeymasterHello,
Everything was made in the basel-child folder. But anyway do the backup before updating parent theme.
Kind Regards
-
AuthorPosts
Tagged: Single Product Page Tweaks
- You must be logged in to create new topics. Login / Register