How to display related products on cart template
Written by Matt on July 22, 2008 – 4:38 pmJust a quickie for today!
I’ve seen a few people using this already but I thought I’d share it with you all.
<ss:if test="$cart.Details">
<p>You may also be interested in the following products:</p>
<ul>
<ss:foreach item="detail" within="$cart.Details">
<ss:foreach item="relatedproduct" within="$detail.relatedProducts">
<li><ss:link source="$relatedproduct"><ss:value source="$relatedproduct.name"/></ss:link></li>
</ss:foreach>
</ss:foreach>
</ul>
</ss:if>
Tags: coding, prostores, ssml, Tips
Posted in ProStores Coding, Tips | No Comments »
Indenting text in html
Written by Matt on July 18, 2008 – 12:55 pmHow do you indent text / paragraphs in html? I have compiled a short list of several way to do this.
Read more »
Tags: css, css indenting, indenting, non-breaking space, prostores, tabbing, tabs, Tips
Posted in ProStores Coding, Tips | No Comments »
Hiding the size or color attribute when they are out of stock
Written by Matt on July 16, 2008 – 2:30 pmYou can hide the size attributes on the Product/Catalog Detail page if the attribute is out of stock, you can modify it for color as well. You could take this code and modify it for other similar functions.
**note** Most likely this code will only work with Advanced Tier or higher ProStores sites.
<td>
<font face="arial,helv" size="2"><b>Size</b>
<select name="size">
<ss:foreach item="attr" within="$product.attributes">
<ss:if test="$attr.quantity <> 0">
<option value="$attr.size"><ss:value source="$attr.size"/></option>
</ss:if>
</ss:foreach>
</select>
</font>
</td>
Tags: attributes, coding, product detail template, prostores, Tips
Posted in ProStores Coding, Tips | 2 Comments »
Customizing Search Results Next Links
Written by Matt on July 15, 2008 – 10:20 pmCustomizing Search Results Next Links *from the ssml support referrence*
The
Read more »
Tags: coding, prostores, search results, Tips
Posted in ProStores Coding, Tips | No Comments »
Subcategory Drill-Down on Product / Catalog List
Written by Matt on July 15, 2008 – 2:59 pmThe following code modifies the Catalog List template to do one of the following:
* If the user clicks a category link and that category has subcategories, those subcategories will be displayed on the Catalog List template as links.
* If the user clicks a category or subcategory link that does not have any categories, the Catalog List will display a list of product search results.
You can modify this code to show images as subcategory links as well.
Tags: catalog list, coding, product list, prostores, Tips
Posted in ProStores Coding, Tips | No Comments »
How to display alternate Prostores templateSets
Written by Matt on July 9, 2008 – 1:16 pmJust a quickie tip for today:
Have you ever wished you could see the new templateset you’re working on without changing your default templateset and showing your incomplete design to the world?
Read more »
Tags: alternate design, alternate templateset, prostores, templateset, Tips
Posted in ProStores Admin, Tips | No Comments »
Onetakemedia online.com e-mail back up
Written by Matt on July 2, 2008 – 11:52 amI’ve tested it and checked with godaddy and any e-mail going to @onetakemediaonline.com should be working and getting forwarded to matt@onetakemedia.net.
Tags: e-mail, one take media, prostores, servers
Posted in General Info | No Comments »
Installing Google Analytics in your ProStore Site
Written by Matt on July 1, 2008 – 10:24 amThe most recent update to Google Analytics has caused some confusion and frustration. But thankfully workable code has been devised and posted by users on the ProStores boards. This tutorial will lay out the steps to install the code. Read more »
Tags: footer template, google analytics, order confirm template, prostores, ssml, tracking code
Posted in General Info, ProStores Coding, Tutorials | No Comments »
Onetakemedia online.com e-mail down
Written by Matt on June 30, 2008 – 11:56 amThis does not affect onetakemedia.net at all, just the old address’s e-mails.
I’m sorry for any inconvenience, when we switched servers the old address of www.onetakemediaonline.com didn’t get redirected properly according to godaddy.com. I got that back up and working, but e-mail forwarding isn’t working properly even though I’ve followed their steps to configure it.
So any e-mail sent to @onetakemediaonline.com will bounce until I get it working again. I appreciate your understanding.
Btw don’t forget to click the RSS update button to get the newest tips and tutorials!
Tags: e-mail, one take media, prostores, rss, servers
Posted in General Info | No Comments »
ProStores Tip: Entering META Keywords and Descriptions for Products
Written by Matt on June 30, 2008 – 10:12 amThis is a addendum to my post about coding meta tags in ProStores: This will teach you how to enter custom META Descriptions and Keywords for your products and products only. If you want your non-product pages to have custom META keywords and descriptions read my other ProStores tip post.
Tags: meta description, meta keywords, meta tags, prostores
Posted in ProStores Admin, Tutorials | No Comments »














