Wood Joy
You will find while browsing our entire website that we offer a very large and comprehensive selection of teak outdoor furniture sets as well as other fine teak products. We invest heavily in product imaging and we also maintain a … Continue reading
Listing all the brands as links
In Prostores if you want to list all the brands in your store as links following code can be useful. Further if you know little bit of html and css you can make it look more better by adding tags … Continue reading
WordPress include
While integrating a WP theme many times we come across a situation where we have a code which is being used at few other templates. The best way is keep that code in a separate php file (blog-sidebar.php) and include … Continue reading
How to show products from a perticular category
Following SSML code can be used to show products from a particular category ‘Cymbals’ in prostores. Please note this code can be used once on a single page. <!– Products from a perticular category –> <ss:foreach item=”listing” within=”$catalog.results”> <ss:sortby item=”category”/> … Continue reading
Shop by brand code
In prostores you can use following code to add ‘shop by brand’ <form action=”/servlet/Categories” method=”post” name=”catalog”> <ss:select source=”$store.oems” name=”$catalog.oem” onchange=”submit()”> <option value=”” selected=”selected”>By Manufacturer</option> </ss:select> </form>
Removing title of wordPress pages
1- Go to your active theme files (Appearance – > Editor) 2- Click content-page.php template 3- Just Remove the following code from content-page.php (edit loop-page.php template if you have old WP versions) <h1><?php the_title(); ?></h1>