Home › Forums › Basel support forum › Product Page Gallery Image
Product Page Gallery Image
- This topic has 13 replies, 3 voices, and was last updated 7 years, 12 months ago by
Artem Temos.
-
AuthorPosts
-
November 11, 2016 at 10:15 am #6574
kapilgbhalalaParticipantthere is an issue with single product page in compact style.when i active YITH WooCommerce Zoom Magnifier then side product gallery set into bottom
http://fashionkanya.com/product/fashion-kanya-new-latest-red-designer-kurti/November 11, 2016 at 11:02 am #6575
kapilgbhalalaParticipanthow to hide pincode in quick shop?? & also in relative product scroller
Please look in my home page with variable product so you get exact what i tried to do..
http://fashionkanya.com
http://fashionkanya.com/product/fashion-kanya-new-latest-blue-designer-kurti/November 11, 2016 at 4:42 pm #6586
Artem TemosKeymasterHello,
Thank you for contacting us.
YITH WooCommerce Zoom Magnifier plugin changes our theme layout and it is not possible to place thumbnails to the left side when using zoom plugin. Only bottom position is available in this plugin options.
Could you please send us a screenshot of the pincode you are looking to hide?
Regards
November 12, 2016 at 3:23 am #6610
kapilgbhalalaParticipantNovember 12, 2016 at 3:54 am #6615
Artem TemosKeymasterTry to add this code snippet to the Custom CSS area in Theme Settings to remove this field
.basel-hover-quick .pin_div { display:none; }
Regards
November 12, 2016 at 4:25 am #6616
kapilgbhalalaParticipantok it’s working
November 12, 2016 at 4:56 am #6617
kapilgbhalalaParticipanthow to add additional div before cart button in single product page
Content
<div class=”place_order_by_phone”>
<b>Place Order By Phone:</b> <span class=”phone_icon”>+91-261-2507700</span> <span class=”whatsapp_icon”>+91-7285880241</span>
</div>November 12, 2016 at 11:30 am #6620
Artem TemosKeymasterTry to add this code snippet to the functions.php file in your child theme
add_action('woocommerce_single_product_summary', 'my_text_after_button',38); function my_text_after_button() { ?> <div class=”place_order_by_phone”> <b>Place Order By Phone:</b> <span class=”phone_icon”>+91-261-2507700</span> <span class=”whatsapp_icon”>+91-7285880241</span> </div> <?php }
November 14, 2016 at 2:46 am #6646
kapilgbhalalaParticipanthow to set another top-header menu while use is login
November 14, 2016 at 5:56 am #6651
Artem TemosKeymasterCould you please explain a bit better your question, it is not quite clear for us?
Thank you
November 14, 2016 at 6:12 am #6655
kapilgbhalalaParticipanti have a multiple menu for top-header one i have to use while user is not logged in & another i have to use while user is logged in
November 14, 2016 at 6:13 am #6656
Artem TemosKeymasterThank you for the explanation. Unfortunately, there is no such function in our theme and it may require some additional code customization to complete.
March 9, 2017 at 5:06 pm #10657
LesParticipantThe code snippet below is adding the text AFTER the ADD TO CART button.
Is there any way to add a text link BEFORE the ADD TO CART button? Just below the price on a variable product?
Thanks so much!
Les
add_action(‘woocommerce_single_product_summary’, ‘my_text_after_button’,38);
function my_text_after_button() {
?>
<div class=”place_order_by_phone”>
<b>Place Order By Phone:</b> <span class=”phone_icon”>+91-261-2507700</span> <span class=”whatsapp_icon”>+91-7285880241</span>
</div>
<?php
}March 9, 2017 at 5:48 pm #10661
Artem TemosKeymasterHi,
Try to change ‘hook priority’ parameter in your code. Not it is set to
38
. Lower value corresponds to the higher position on the product page.Regards
-
AuthorPosts
- You must be logged in to create new topics. Login / Register