Jolly-Martian
Advanced Member
United Kingdom
218 Posts Pre-sales questions only (More Details...)
|
Posted - 11/15/2020 : 10:05:22
Hi there,
I have looked at the instructions for "Gift Wrap"
"Gift wrap available Tick the box here if you would like to give the customer the choice of adding gift wrapping to their product order. The Choice to select gift wrapping will appear in the cart and the text comes with its own css class for formatting. The charge can be made for gift wrapping service by an addition to vsadmin/includes.asp - giftwrappingcost=0.8 or vsadmin/includes.php - $giftwrappingcost=0.8; Any product with gift wrap associated will be highlighted in green in the admin orders page."
I have added $giftwrappingcost=0.8; in my includes, but cannot see the option for gift wrap.
Is there a way to add this option to the product detail page? Or also display an image for the product wrapped, I have a picture showing the final image of the wrapped product, but I dont have a way to show them the picture effectively, can this be done?
Jason
|
1818charlie
ECT Moderator
United Kingdom
1194 Posts |
Posted - 11/15/2020 : 10:15:51
Jason
Have you checked the Gift Wrap Available check box on the products you are offering gift wrapping on in the product admin?
Steve Egerton Village, Bolton, UK
|
Jolly-Martian
Advanced Member
United Kingdom
218 Posts Pre-sales questions only (More Details...)
|
Posted - 11/15/2020 : 11:59:26
Hi Steve,
Yes, its definitely ticked.
Jason
|
Vince
Administrator
42754 Posts |
Posted - 11/16/2020 : 01:48:12
|
Jolly-Martian
Advanced Member
United Kingdom
218 Posts Pre-sales questions only (More Details...)
|
Posted - 11/17/2020 : 06:29:23
Hi Vince, the product ID is BG-TL141299-Brown on www.bags with class.co.uk
Thanks
Jason
|
Phil
ECT Moderator
United Kingdom
7680 Posts |
Posted - 11/17/2020 : 07:30:52
Edited by - Phil on 11/17/2020 07:32:05
|
Jolly-Martian
Advanced Member
United Kingdom
218 Posts Pre-sales questions only (More Details...)
|
Posted - 11/17/2020 : 12:05:19
Hi there,
Can this not be a separate tick box they tick for gift wrapping?
Or what are the other options for the customer to see gift wrapping is available.
Not sure it looks right in the colour drop down.
Jason
|
Phil
ECT Moderator
United Kingdom
7680 Posts |
Posted - 11/17/2020 : 12:11:46
|
Jolly-Martian
Advanced Member
United Kingdom
218 Posts Pre-sales questions only (More Details...)
|
Posted - 11/17/2020 : 12:27:51
Hi Phil,
I am not seeing the option for gift wrapping, click on https://www.bags with class.co.uk/proddetail.php?prod=BG-TL141299-Brown
I dont see it on the detail page or the cart page?
Jason
|
Phil
ECT Moderator
United Kingdom
7680 Posts |
Posted - 11/17/2020 : 12:37:17
|
Phil
ECT Moderator
United Kingdom
7680 Posts |
Posted - 11/17/2020 : 12:39:40
|
Jolly-Martian
Advanced Member
United Kingdom
218 Posts Pre-sales questions only (More Details...)
|
Posted - 11/17/2020 : 14:07:08
Hi Phil
This is what I see:
[img]https://i.paste.pics/APXK9.png[/img]
Jason
Edited by - Jolly-Martian on 11/17/2020 14:07:43
|
Phil
ECT Moderator
United Kingdom
7680 Posts |
Posted - 11/17/2020 : 14:25:26
|
Jolly-Martian
Advanced Member
United Kingdom
218 Posts Pre-sales questions only (More Details...)
|
Posted - 11/17/2020 : 15:14:02
Hi Phil,
I now see the text "* GIFT WRAPPING AVAILABLE", took me ages to realise that text was there to click on :)
Where can I change the text to say "CLICK HERE TO ADD GIFT WRAPPING" and change the colour so its more apparent?
Is there a way to add an image 100 x 100 pixels (I have a picture of a gift wrapped product) on the product detail page for the product so its clear to the customer that gift wrapping is available for the products enabled as gift wrapped?
Jason
|
Jolly-Martian
Advanced Member
United Kingdom
218 Posts Pre-sales questions only (More Details...)
|
Posted - 11/17/2020 : 15:18:56
A better way for me to make sure the customer knows the gift wrap option is available is creating a drop down option with Gift wrap Yes/No and add a value if they choose yes. This can then be clearer at the point of choose a colour option and then a gift wrap drop down option.
Its a shame the gift wrap doesn't present itself on the page where the customer is selecting the product to buy on the productdetail.php page
Jason
|
Phil
ECT Moderator
United Kingdom
7680 Posts |
Posted - 11/17/2020 : 23:37:49
Hi Jason, To change the text add this line to your vsadmin/includes.php $xxGWrAva='* CLICK HERE TO ADD GIFT WRAPPING'; If you want to add an overlay over your product image Do the following in the product admin. 1. From the quick entry drop down choose custom css and type giftwrap in the field for the product you want the overlay to display 2. then to display the overlay add the following css to your css/style.css .giftwrap div.detailimage{ position:relative; } .giftwrap div.detailimage::after {content: 'GIFT WRAP OPTION'; position: absolute; font: 14px Arial,sans-serif; letter-spacing: 3px; left: 6px; top: 30px; color:#fff; background:#FF0000; padding:18px 8px; opacity:0.7; border-radius:50%; z-index:10; transform: rotate(330deg); -webkit-appearance: none; text-shadow: 0 1px 1px rgba(0, 0, 0, 0.6); } Any other products that have the giftwrap option all you would do is add the text giftwrap in the custom css field for that product * Database Migrations and Conversions* * ASP to PHP Cart Conversions**Contact Us**Buy The PHP Capture Card Plugin**Rate Our Services/View Our Feedback*
Edited by - Phil on 11/28/2020 06:50:35
|
Jolly-Martian
Advanced Member
United Kingdom
218 Posts Pre-sales questions only (More Details...)
|
Posted - 11/28/2020 : 06:42:36
Hi Phil,
You are really helpful helping with this process, however in the script below, I dont see any reference to the actual gif, jpeg or png image file for the overlay?
.giftwrap div.detailimage{ position:relative; }
.giftwrap div.detailimage::after {content: 'GIFT WRAP OPTION'; position: absolute; font: 14px Arial,sans-serif; letter-spacing: 3px; left: 6px; top: 30px; color:#fff; background:#FF0000; padding:18px 8px; opacity:0.7; border-radius:50%; z-index:10; transform: rotate(330deg); -webkit-appearance: none; text-shadow: 0 1px 1px rgba(0, 0, 0, 0.6); }
|
Phil
ECT Moderator
United Kingdom
7680 Posts |
Posted - 11/28/2020 : 06:48:47
|
Jolly-Martian
Advanced Member
United Kingdom
218 Posts Pre-sales questions only (More Details...)
|
Posted - 11/28/2020 : 08:04:09
Hi Phil,
I have followed these instructions:
But I don't see this appearing:
[img]https://i.paste.pics/27d89fbb709e562b8a358a5cd673b59a.png[/img]
Jason
|
Jolly-Martian
Advanced Member
United Kingdom
218 Posts Pre-sales questions only (More Details...)
|
Posted - 11/28/2020 : 08:09:41
To confirm I have put giftwrap in the custom CSS class on the quick links on one product, updated this, then added the below on the style.css
.giftwrap div.detailimage{ position:relative; }
.giftwrap div.detailimage::after {content: 'GIFT WRAP OPTION'; position: absolute; font: 14px Arial,sans-serif; letter-spacing: 3px; left: 6px; top: 30px; color:#fff; background:#FF0000; padding:18px 8px; opacity:0.7; border-radius:50%; z-index:10; transform: rotate(330deg); -webkit-appearance: none; text-shadow: 0 1px 1px rgba(0, 0, 0, 0.6); }
|
Phil
ECT Moderator
United Kingdom
7680 Posts |
Posted - 11/28/2020 : 08:48:45
Edited by - Phil on 11/28/2020 08:51:24
|
|