Check out our recently completed Wordpress project for The Locksmiths of Houston. We designed and developer a custom wordpress theme for this client, converting from an old outdated html website. Check them out today Houston Locksmith Services
Posted by (0) Comment
Check out our new Magento Design and Development for Boat Store. They are an online boating supplies and accessories store. We completed custom Magento design for them as well as completed a .csv product import of over 2000 products. Allow easy import of products into Magento. Check out the site today at boatstore.com
If you are looking to add a custom tab to your Magento modern theme’s product page you can do so by doing the following.
1st. Download and open the file /app/design/frontend/default/modern/layout/catalog.xml
Search for <action method=”addTab” in your editor and you should find the original 2 or 3 there.
Just copy the code below and paste after the original 2 or 3 and change yourtabsname to whatever you want.
<action method=”addTab” translate=”title” module=”catalog”><alias>yourtabsname</alias><title>Your Tabs Title</title><block>catalog/product_view</block><template>catalog/product/view/yourtabsname.phtml</template></action>
2nd. You need to create the file yourtabsname.phtml but remember to replace yourtabsname with whatever you changed it to above. This yourtabsname.phtml page does not have to have any special code on it. It can have just text or an image url or code pulling product data. Whatever you want.
3rd. Upload yourtabsname.phtml to /app/design/frontend/default/modern/template/catalog/product/view
Remember if you want to customize a tab that’s already created you can edit it here /app/design/frontend/default/modern/template/catalog/product/view as well.
KWAVE MAGENTO TEAM
Posted by Comments Off
KWAVE specializes in website design and website redesign services for organizations such as fire department, police, public safety, towns, cities, village’s counties, and other various types of organizations. Whether your organization is a small police or fire department or a large city or county, we can help you build a custom website and/or developing a professional redesign of your current website.
Through our experiences working with municipalities, we have found that more often than not, government websites are outdated in terms of appearance, capabilities, ease of use and organization. Our expert website designers have helped various types and sizes of organizations to create or redesign their websites while improving their overall user experience.
KWAVE’s website specialists can design or redesign the following types of municipal websites:
In most cases, our government website projects range from $1,000 to $4,000 and upwards based on your specific website needs. References can be available upon request.
Buy Municipal Web Design Now
Images disclaimer: travel web design template images are copyright there respected owners. We are only providing template images as examples as we provide custom designs for all our clients.
I needed to sort the order of the products on a category page for a customer today in Magento and I wanted to post my solution.
Login to Magento admin and go to the Category where your products reside and click
Catalog > Manage Categories
Then click the category you want to edit on the left side. Once it loads click Category Products.
Now the last column on the right is called position. Just specify the order of your products here 1,2,3,4,5 etc.
Hope this helps.
Remember Log out and log back in then refresh your Magento Cache. System > Cache Management > Refresh All
KWAVE MAGENTO TEAM
I had two issues with installing the Easy Lightbox extension with the Modern theme. So I will post my finding and the solution for you.
<strong>1.</strong> Use the Magento Connect and install the Easy Lightbox Extensions
<strong>2. </strong>The Extensions install puts the Lightbox files into only the default folder not modern or your them folder. So we need to first copy all the lightbox files from the default folder to the modern theme or your theme .
COPY ALL THESE FOLDERS AND FILES……
skin/frontend/default/default/css/easylightbox.css
skin/frontend/default/default/js/lightbox.js
skin/frontend/default/default/images/lightbox/
app/design/frontend/default/default/layout/easylightbox.xml
app/design/frontend/default/default/template/easylightbox
now upload all those folder and files to your Theme or in my case the Modern theme.
skin/frontend/default/modern/css/easylightbox.css
skin/frontend/default/modern/js/lightbox.js
skin/frontend/default/modern/images/lightbox/
app/design/frontend/default/modern/layout/easylightbox.xml
app/design/frontend/default/modern/template/easylightbox
<strong>3. </strong>I was using 1.3.2.4 of Magento and the Lightbox wouldn’t show in the admin backend configuration so I had to do the following.
Go to /app/code/community/TM/EasyLightbox/etc and download the two files adminhtml.xml and config.xml
Open adminhtml.xml and replace <config> with <adminhtml> at the top and replace </config> with </adminhtml> at the bottom.
then…..
Open config.xml and paste this
<adminhtml>
<acl>
<resources>
<admin>
<children>
<system>
<children>
<config>
<children>
<easy_lightbox translate=”title” module=”easylightbox”>
<title>Easy Lightbox Section</title>
<sort_order>55</sort_order>
</easy_lightbox>
</children>
</config>
</children>
</system>
</children>
</admin>
</resources>
</acl>
</adminhtml>
right after </frontend> before the closing </config>
make sure to re upload the files you edited!
THAT’S IT……………………………………………………………..
Remember Log out and log back in then refresh your Magento Cache. System > Cache Management > Refresh All
KWAVE MAGENTO TEAM
I found a few different posts online for changing the default # of products showing on your grid/list layouts. This solution below was the easiest and fastest solution for me.
You need to edit two parts of app/code/core/Mage/Catalog/etc/config.xml
I changed this to.
and…..
I changed this to.
That will let you change the options from the default 9,15,30 to your own settings. In my case, 12,16,24.
Remember to refresh your Magento Cache. System > Cache Management > Refresh All
KWAVE MAGENTO TEAM