PDA

View Full Version : Purchase option on keywords screen


capturingimages
Feb-22-2010, 05:26 PM
I've recently come across an image in my portfolio through google, which came up with:

[removed]

The shots that appear are most definitely not for sale in the gallery they appear in, but the smugmug shopping trolley and purchase option appear next to those images in the keywords screen, although I've made those options invisible in my gallery screens.

Is there a way to remove the Buy and Shopping Cart links from the keywords screen? Or if I remove the keywords for each of the images that aren't for sale? It's misleading at first appearance to have the purchase option appearing on the keywords screen with the images not being for sale, unless someone clicks on the purchase link to try to purchase copies. Particularly if the keyword screen is among the first couple of links coming up in google under a performer's name.

Many thanks in advance.

jfriend
Feb-22-2010, 06:26 PM
If you press the buy button, you will notice that it won't actually let you buy and of your images. But, you can hide the buy and cart buttons in the keyword galleries with this CSS:

.keywordPage #cartButtonsWrapper {display:none;}

capturingimages
Feb-22-2010, 06:33 PM
If you press the buy button, you will notice that it won't actually let you buy and of your images. But, you can hide the buy and cart buttons in the keyword galleries with this CSS:

.keywordPage #cartButtonsWrapper {display:none;}

Thanks, just what I was hoping for :)

capturingimages
Mar-02-2010, 12:35 PM
I've also come across the shopping cart and buy options on the timeline screen through a google search, is there extra CSS code that can be used to hide this?

http://www.capturingimages.com.au/date/1969-12-31/2009-11-29/9/601857211_tHLbr/Small

Many thanks.

denisegoldberg
Mar-02-2010, 01:55 PM
I've also come across the shopping cart and buy options on the timeline screen through a google search, is there extra CSS code that can be used to hide this?
Add this to your CSS:
.datePage #cartButtonsWrapper {
display:none;
}
--- Denise