KWAVE Web Design Contact KWAVE Web Design  Quote

Author Archive

1
Sep

wordpress designCheck 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

Category : KWAVE News | Blog
21
Jul

magento design boat storeCheck 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

Category : KWAVE News | Blog
3
Jun

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

Category : Magento Tweaks | Blog
25
May

Municipal Web Design

Posted by admin012 Comments Off

Municipal Web Design

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:

  • City and State Police website design
  • Sheriff Website Development
  • Chamber of Commerce website design
  • State and local travel and tourism projects
  • City, town & village government website design
  • Federal Government website redesign
  • Municipal website development
  • Clerk of Court sites
  • Fire Department website design
  • Office of Public Safety website design
  • Public Safety and Corrections Agency
  • State and City Parks and Museums
  • Intranets (with login access)
  • 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.

    Category : KWAVE Services | Blog
    29
    Apr

    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

    Category : Magento Tweaks | Blog
    29
    Apr

    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

    Category : Magento Tweaks | Blog
    16
    Apr

    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

    grid-list 9,15,30

    5,10,15,20,25 9

    10 0
    position

    I changed this to.

    grid-list 12,16,24

    5,10,15,20,25 12

    10 0
    position

    and…..

    9,15,30

    5,10,15,20,25

    I changed this to.

    12,16,24

    5,10,15,20,25

    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

    Category : Magento Tweaks | Blog
    19
    Mar

    wedding accessoriesWe have recently completed Your Wedding Stop a custom Magento Web Design. This website included a custom design, custom shipping modules and more. Your Wedding Stop has a wide variety of wedding accessories including cake toppers, ring pillows, flower girl baskets, guest books, toasting glasses and aisle runners.

    Category : KWAVE News | Blog
    19
    Mar

    table linensOn the Go Linens is a provider of fine fabrics for the event industry. They are wholesaler and distributor of custom made linens, chair covers, sashes, runners, and skirts servicing the party rental and event decoration industry. We have completed a Magento website for On The Go Linens. This project included a custom image slider, color swatches, major css work and more.

    Category : KWAVE News | Blog
    18
    Jan
    short wedding dresses
    short wedding dress photo
    short wedding dress

    SHORT WEDDING DRESS

    Welcome to Dolly Couture- your place on the web for short wedding dresses!!!

    It’s true what you’ve heard. This is the best place to find a short wedding dress. If you’re about to have a wedding and want a short dress instead of a long one, then you’ve come to the right place because we have the very best selection of short wedding dresses anywhere.

    Some women prefer a long dress that hangs to the floor, but many of today’s modern women like short wedding dresses because they’re fun and sexy.

    We have an excellent selection of short dresses for your wedding. We can make your special dress to order from semi-short to super short!!!

    So be sure to click the button to go to DollyCouture.net to get your beautiful new short wedding dress! You’ll be so glad you did!!!

    Category : KWAVE News | Blog
    Web Design - Web Hosting - Our Portfolio - Request a Quote - Help - Sitemap - Facebook - Twitter
    Copyright © 2008-2009 Kryptonic Wave. All Rights Reserved.
    Phone: (888) 779-6988 E-mail: info@kwavewebdesign.com

    Web Design
    Green Network