How can I disable the area where I list how many of a certain product. If I leave it blank it posts the Sold Out button. My stock varies and keeping track of it online will not be viable.
How can I disable the area where I list how many of a certain product. If I leave it blank it posts the Sold Out button. My stock varies and keeping track of it online will not be viable.
Perhaps a search of the forum or FAQs would answer a few of your questions? The e-Start Your Web Store book is a worthwhile investment too.
Please do not PM for support issues: a private solution doesn't benefit the community.
Be careful with unsolicited advice via email or PM - Make sure the person you are talking to is a reliable source.
Kim:
Got the book and it does not say how to disable the "In Stock:" display. Also can not find any answer on the forum or tutorials. Any ideas on how we can get an answer on how to do this?
Found the answer! WooHoo!
Go go under Product Types under the Catalog header and then click the "edit layout", You will see the line to change so the "In Stock:" quantity does not show.
You have a really neat looking site - And your Product descriptions (like a lot of others) is a very good description...
However, it is 'centered text' which makes it a bit ragged looking on both ends of each line. I am anal about text (and you do not have to be like me - smile)... but using your style sheet you can fix that to look correctly left-justified...
I found productListing-data in your style sheet. See below
.centeredContent, th, #cartEmptyText, #cartBoxGVButton, #cartBoxEmpty, #cartBoxVoucherBalance, #navCatTabsWrapper, #navEZPageNextPrev, #bannerOne, #bannerTwo, #bannerThree, #bannerFour, #bannerFive, #bannerSix, #siteinfoLegal, #siteinfoCredits, #siteinfoStatus, #siteinfoIP, .center, .cartRemoveItemDisplay, .cartQuantityUpdate, .cartQuantity, .cartTotalsDisplay, #cartBoxGVBalance, .leftBoxHeading, .centerBoxHeading, .rightBoxHeading, .productListing-data, .accountQuantityDisplay, .ratingRow, label#textAreaReviews, #productMainImage, #reviewsInfoDefaultProductImage, #productReviewsDefaultProductImage, #reviewWriteMainImage, .centerBoxContents, .specialsListBoxContents, .categoryListBoxContents, .additionalImages, .centerBoxContentsSpecials, .centerBoxContentsAlsoPurch, .centerBoxContentsFeatured, .centerBoxContentsNew, .gvBal, .attribImg {
text-align: center;
}
If you want to let the other data in the list remain centered and only have product listing left justified - perform the following:
cut productListing-data from where it is and paste it after the text-align: center; as shown below and change text-align from center to left as shown below:
.productListing-data {
text-align: left;
}
jund
I have some products I DO NOT want to display the quantity and other I DO.
I figure out how to turn on/off the stock quantity, but it affects all products. Any suggetions?