Pure Outdoor eCommerce Site

Post links to sites running CMS in all its glory.
Post Reply
clj83
Forum Members
Forum Members
Posts: 195
Joined: Tue Jul 07, 2009 4:09 pm

Pure Outdoor eCommerce Site

Post by clj83 »

Hi,

So I have built a new eCommerce site using Calguys excellent eCommerce suite of modules. I have used the payment gateway RBS World Pay for the first time in this project and it has worked very well so far. The site is new so im sure there are still a number of bugs to squash but the major functions should be working now.

http://www.pureoutdoor.co.uk/

Chris


Modules:

    * CMSMailer: 2.0
    * FileManager: 1.0.2
    * MenuManager: 1.6.5
    * ModuleManager: 1.4
    * News: 2.10.6
    * nuSOAP: 1.0.2
    * Printing: 1.1.0
    * Search: 1.6.5
    * ThemeManager: 1.1.1
    * TinyMCE: 2.7.2
    * CGExtensions: 1.21.2
    * CGEcommerceBase: 1.2.2
    * CGSimpleSmarty: 1.4.5
    * CGPaymentGatewayBase: 1.0.9
    * FrontEndUsers: 1.12.5
    * CustomContent: 1.7.3
    * RBSWorldPay: 1.0.1
    * Products: 2.8.7
    * JQueryTools: 1.0.9
    * Orders: 1.10.5
    * SelfRegistration: 1.6.5
    * FileBackup: 0.5
    * MysqlDump: 1.2.4
    * CGFeedMaker: 1.0.11
    * Cart: 1.7.2
    * CGGoogleMaps: 1.4.2
    * CGFeedback: 1.2.1
    * CGUserDirectory: 1.2.4
    * FormBuilder: 0.6.4
    * Promotions: 1.0.9
    * SiteMapMadeSimple: 1.2.1
elkman
Power Poster
Power Poster
Posts: 262
Joined: Thu Jan 11, 2007 9:16 pm
Location: Colorado

Re: Pure Outdoor eCommerce Site

Post by elkman »

Chris,

A great site!  Sitting in my mountain home in Colorado, the website makes me want to start planning my summer climbs with my son, also named Chris.

CMS is a great project.  I'm always researching how people are using the various modules.  Hope you won't mind a few questions in the future as to how you created a few things on your website.  The only thing really lacking with CMS is an area like "CMS Themes" only for modules, where modules in use examples can be viewed by newbies like me.  :-)

Great site!

Bill a.k.a. Elkman
orangefrog
Forum Members
Forum Members
Posts: 117
Joined: Mon Nov 03, 2008 8:43 pm

Re: Pure Outdoor eCommerce Site

Post by orangefrog »

Great site! Clean. simple and elegant all at the same time. Fantastic job.

If you don;t mind me asking, what did you use for the guide search on the right of the home page?
clj83
Forum Members
Forum Members
Posts: 195
Joined: Tue Jul 07, 2009 4:09 pm

Re: Pure Outdoor eCommerce Site

Post by clj83 »

Hi,

Thanks for the nice comments. The 'Course Search' just uses the standard Products search functionality with some development of the template using smarty.

Chris
User avatar
polodesign
Forum Members
Forum Members
Posts: 55
Joined: Sun Jan 03, 2010 1:58 am

Re: Pure Outdoor eCommerce Site

Post by polodesign »

Chris - this is an excellent example of what CMS Made Simple can do. It is probably the best implementation of Calguy's ecommerce suite that I've seen. Very clean, well-designed layout, like all of your work.

Cheers, Penny
tyman00
Power Poster
Power Poster
Posts: 906
Joined: Tue Oct 24, 2006 5:59 pm

Re: Pure Outdoor eCommerce Site

Post by tyman00 »

Nicely done!

Your "categories" page doesn't validate very well. It looks like your image tags are ending with a } instead of  >. I assume it's just a small issue with one of your smarty tags.

I'm also not a huge fan of all the bold text in the content boxes to the left on the "categories" page. But to each their own :)
clj83 wrote: The 'Course Search' just uses the standard Products search functionality with some development of the template using smarty.
I think this calls for a post in the "Tips and Tricks" board.  8) I know I am a little curious how you accomplished it all.
If all else fails, use a bigger hammer.
M@rtijn wrote: This is a community. This means that we work together and have the same goal (a beautiful CMS), not that we try to put people down and make their (voluntary) job as difficult as can be.
vigor
Forum Members
Forum Members
Posts: 92
Joined: Sat Apr 25, 2009 2:32 pm

Re: Pure Outdoor eCommerce Site

Post by vigor »

Really nice site, well done. Do you mind me asking how you included your list of categories in your search?
simon.romin
Forum Members
Forum Members
Posts: 65
Joined: Tue Jul 13, 2010 9:31 am

Re: Pure Outdoor eCommerce Site

Post by simon.romin »

Hi Chris

Fair play, that is an excellent example of CMS Made Simple. This should be highlighted as a great implementation on CMSMS.org somewhere.

Two questions:

1. On a product page (i.e. this one), there are key facts about the day (for example, Location, Price, Start Date, Duration). Is this entire block manually typed in for each page, or is there a more sophisticated field/value method behind this? The reason I ask is because I want to use a similar method for product specifications.

Also, what is the possibility of being able to compare different courses?

2. How did you get the mega drop down to work on the Courses & Guiding nav link at the top?

Thanks for your help

Simon
simon.romin
Forum Members
Forum Members
Posts: 65
Joined: Tue Jul 13, 2010 9:31 am

Re: Pure Outdoor eCommerce Site

Post by simon.romin »

Any thoughts on my post above?
scelle
Forum Members
Forum Members
Posts: 81
Joined: Sun Apr 24, 2011 8:14 pm
Location: Montenegro

Re: Pure Outdoor eCommerce Site

Post by scelle »

What I would like to know is - HOW DID YOU PUT THESE IMAGES IN THE MEGA DROP DOWN?
clj83
Forum Members
Forum Members
Posts: 195
Joined: Tue Jul 07, 2009 4:09 pm

Re: Pure Outdoor eCommerce Site

Post by clj83 »

Hi All,

The menu was made using a search form template and then using a custom field, 'Course Type', as the search variable. When you click the appropriate course type you are actually selecting the search submit button. The template looks like this,

Code: Select all

{foreach from=$searchprops key='propname' item='obj'}
{foreach from=$obj->options key='key' item='item'}

<div>
{Gallery dir="Menu" template="Course_Menu"}
</div>

<div>

{$formstart}
<div class="hidden">
<select name="{$actionid}cd_propvalue[type]">
<option label="{$key}" value="{$key}">{$key}</option>
</select>
</div>
<input type="submit" name="{$actionid}cd_submit" value="{$key}" />
{$formend}

</div>

</div>

{/foreach}
{/foreach}
The images are just pulled from the gallery module. The user selects which image they want to show with each menu item using a custom field in the gallery module.

Hope that helps.

Chris
scelle
Forum Members
Forum Members
Posts: 81
Joined: Sun Apr 24, 2011 8:14 pm
Location: Montenegro

Re: Pure Outdoor eCommerce Site

Post by scelle »

Ah, too complicated. :) Thanks!!!
caciavar
Forum Members
Forum Members
Posts: 64
Joined: Wed Feb 11, 2009 6:30 pm
Location: Toronto, Canada

Re: Pure Outdoor eCommerce Site

Post by caciavar »

This is still one of, if not THE best CMSMS site I've seen to date.

I've referred back to it a few times. One thing I've always wondered is how to implement the "X" link for individually removing products from the cart.

Is this accomplished using a custom UDT?
Is there a separate forum post about this somewhere?
Would you be able to share this functionality with me?

Thanks in advance.
User avatar
Dr.CSS
Moderator
Moderator
Posts: 12709
Joined: Thu Mar 09, 2006 5:32 am
Location: Arizona

Re: Pure Outdoor eCommerce Site

Post by Dr.CSS »

@caciavar

You should ask this question in the modules board, not in an old show off thread...
Post Reply

Return to “CMS Show Off”