Judytu
Ecommerce Template Guru
USA
2483 Posts Pre-sales questions only (More Details...)
|
Posted - 04/09/2018 : 15:22:44
Hi all!
Long time no talk! We just updated after a while and I notice new Previous/Next buttons just under the prod detail image...I can't seem to find a parameter to remove those. Is it possible? Here's an example:
http://www dot streepwear.com/proddetail.php?prod=18000B
Thanks!
~ Judy
|
ITZAP
Ecommerce Template Guru
Australia
1018 Posts |
Posted - 04/09/2018 : 16:04:32
Hi Judy, your answer is ... $detailpagelayout='navigation, checkoutbutton, productimage, productid, manufacturer, sku, productname, discounts, instock, description, listprice, price, quantity, currency, dateadded, options, addtocart, previousnext, emailfriend, reviews';for whatever elements you wish to display, in the desired order. https://www.ecommercetemplates.com/phphelp/ecommplus/parameters.asp#csslayoutGary
|
Judytu
Ecommerce Template Guru
USA
2483 Posts Pre-sales questions only (More Details...)
|
Posted - 04/09/2018 : 16:15:58
Hi Gary:
This is what I have in my includes... and you'll notice that the previousnext is at the bottom where the user can click from product to product... not image to image.
$detailpagelayout='navigation, productimage, productid, productname, discounts, description, options, listprice, currency, quantity, quantitypricing, price, addtocart, checkoutbutton, previousnext, emailfriend, reviews,';
Thanks.
~ Judy
|
V45
Advanced Member
United Kingdom
416 Posts Pre-sales questions only (More Details...)
|
Posted - 04/09/2018 : 16:48:40
Have a look in the css file for input.nextimg, input.previmg and add the following line
display:none;
I have just tried that on a site I manage and they no longer show.
Will - Bolton, Manchester UK
Edited by - V45 on 04/09/2018 16:50:39
|
dbdave
ECT Moderator
USA
10450 Posts |
Posted - 04/09/2018 : 17:01:53
Hi Judy, It seems Gary thought you were referring to the previous/next product, as did I at first. That is for previous/next image and if you take Will's suggestion, then there is no way for the user to flip between the multiple images.
Perhaps you just want to style those so they look nicer?
|
Judytu
Ecommerce Template Guru
USA
2483 Posts Pre-sales questions only (More Details...)
|
Posted - 04/09/2018 : 17:06:44
Thanks Guys. Will, I will give that a try.
Dave, I may, but that's a struggle for me. It looks like when we did the update, we lost the buttons for "email a friend" and "ask a question." Or did we never have that capability? I sure can't seem to find the images in any of my files!
Thanks again.
~ Judy
|
Judytu
Ecommerce Template Guru
USA
2483 Posts Pre-sales questions only (More Details...)
|
Posted - 04/09/2018 : 18:09:59
Well, I tried Will's idea, but it didn't work. The input.nextimg line was not in css at all, so I added it and then tried the display.none - but no joy. I do think they need styling and the email friend and ask a question. Any guidance is appreciated.
~ Judy
|
dbdave
ECT Moderator
USA
10450 Posts |
Posted - 04/09/2018 : 20:43:48
Hi Judy, to remove the buttons, you would add the following to your css file input. detailnextimg, input. detailprevimg { display:none; } Will's css there would only work on the product page, not the detail page. But again, I don't think that's a good idea and just some styling would make them look nice. I had a look at your styling for your add to cart button can came up with this (that will make them look similar) - just add it in to your stylesheet when these classes do not exist there. It looks like you have numerous stylesheets but I think you can add it to _proddetails.css input.detailnextimg, input.detailprevimg { background-color: rgba(217,37,38,1.00); width: 50px; height: 25px; border: 0; color: rgba(255,255,255,1.00); font-weight: bold; text-align: center; } input.detailnextimg:hover, input.detailprevimg:hover { cursor: pointer; background-color: rgba(181,23,24,1.00); } Another option, there is a post here From Andy where he shows how you can change those to images if you like. https://www.ecommercetemplates.com/support/topic.asp?TOPIC_ID=108883
Edited by - dbdave on 04/09/2018 20:50:28
|
dbdave
ECT Moderator
USA
10450 Posts |
Posted - 04/09/2018 : 20:57:10
Oh Judy, on another note, I was looking through your site and noticed it was not on https. I added to cart and all was fine, but when I went to checkout, even though it showed https at that point, I got this huge message. Google is placing a lot of weight on the SSL and I will see if I can find a post Sinbad made with some great tips on converting your whole site over to ssl. I think you should carefully consider it.
|
dbdave
ECT Moderator
USA
10450 Posts |
Posted - 04/09/2018 : 20:58:52
Ok, here is the thread on moving your whole site over to https. https://www.ecommercetemplates.com/support/topic.asp?TOPIC_ID=106851
|
insight
ECT Moderator
USA
4479 Posts |
Posted - 04/09/2018 : 22:56:52
The site has a commercial SSL provided by us, but it looks like somebody has been doing some button pushing in the hosting control panel I put things back the way they were and it looks a bit better now. I'd still consider running the entire site in https and tidying things up (insecure images & scripts) so the padlock device appears on all pages. Peter ServeLink Professional ecommerce web hosting for ASP & PHP https://servelink.comTake a look at our image upload/resize tool for the ASP cart https://servelink.com/clients/cart?gid=7
|
Judytu
Ecommerce Template Guru
USA
2483 Posts Pre-sales questions only (More Details...)
|
Posted - 04/10/2018 : 07:41:25
Thanks everyone. Don't know what happened there. We did just have the site updated. I really haven't paid much attention to the site for a long time. So many things now need to be worked on....
~ Judy
|
Judytu
Ecommerce Template Guru
USA
2483 Posts Pre-sales questions only (More Details...)
|
Posted - 04/10/2018 : 07:47:21
Dave, thanks! That worked like a charm...Now, can you do the same for the email a friend and ask a question?
~ Judy
|
Andy
ECT Moderator
95440 Posts |
Posted - 04/10/2018 : 07:55:05
Try this in the css file div.socialmediabutton{float:left; margin:4px;} input.emailfriend, input.askaquestion { background-color: rgba(217,37,38,1.00); padding:4px 12px; border: 0; color: rgba(255,255,255,1.00); font-weight: bold; } input.emailfriend:hover, input.askaquestion:hover { cursor: pointer; background-color: rgba(181,23,24,1.00); } Andy Please feel free to review / rate our software
|
Judytu
Ecommerce Template Guru
USA
2483 Posts Pre-sales questions only (More Details...)
|
Posted - 04/10/2018 : 08:09:07
Thank you Andy. Perfect! Now, just one last thing. I have included all of your css styling for the Quantity Display, but mine is showing in one column instead of two. So, in other words, it looks like so:
Quantity Pricing _____________ 1 - 199 _____________ $5.00
What should I add to make it two columns? Thanks again.
~ Judy
|
Andy
ECT Moderator
95440 Posts |
Posted - 04/10/2018 : 08:15:20
|
Judytu
Ecommerce Template Guru
USA
2483 Posts Pre-sales questions only (More Details...)
|
Posted - 04/10/2018 : 08:28:48
That did not change it to 2 columns.
~ Judy
|
Andy
ECT Moderator
95440 Posts |
Posted - 04/10/2018 : 08:35:32
|
Judytu
Ecommerce Template Guru
USA
2483 Posts Pre-sales questions only (More Details...)
|
Posted - 04/10/2018 : 08:38:20
Not sure what you mean....show you a page? It's in a restricted area. I'll message you the sign in details to take a look. And can you also look at your smartphone? The changes we've made through this tread don't seem to be showing up there. Thanks, Andy.
~ Judy
|
Andy
ECT Moderator
95440 Posts |
Posted - 04/10/2018 : 08:47:41
In prodddetails.css you have this which should be removed div.detailquantpricing{ border: 1px solid #ccc; text-align:center; margin:0 auto; } div.detailqpheading{ float:left; padding:6px; font-weight:bold; background:#01999A none repeat scroll 0 0; color:#fff; width:312px; } div.detailqpheadquant{ float:left; padding:6px; width:140px; } div.detailqpheadprice{ float:left; padding:6px; width:140px; } div.detailqpquant{ float:left; padding: 1px 5px 1px 5px; padding:6px; width:140px; border-top-style: dotted; border-top-width: thin; } div.detailqpprice{ float:left; padding: 1px 5px 1px 5px; padding:6px; width:140px; border-top-style: dotted; border-top-width: thin; } div.detailqpprice, div.detailqpquant, div.detailqpheadprice, div.detailqpheadquant{ padding:4px; margin:6px; } Andy Please feel free to review / rate our software
|
Judytu
Ecommerce Template Guru
USA
2483 Posts Pre-sales questions only (More Details...)
|
Posted - 04/10/2018 : 08:53:44
Take a look at that same page now please. The quantity box is in 2 columns, but the rest of the page styling is gone.
~ Judy
|
|