Hi, Unregistered.

T-Shirt Forums
User Name
Password

Need to Register?

Forgot Your Password?

Site Navigation


More Info

+   T-Shirt Forums > T-Shirt Selling > Ecommerce Site Design


Register for T-ShirtForums.com Today! Register for T-ShirtForums.com Today! Register for T-ShirtForums.com Today! Register for T-ShirtForums.com Today!

Discuss website design for ecommerce sites, useability, navigation and other development considerations

cube Cart Help



 
LinkBack Thread Tools
Old February 20th, 2008 Feb 20, 2008 4:33:50 PM -   #1 (permalink)
T-Shirt Lover
T-Shirt Fan

rocktops's Avatar
 
You can call me: mike
Member Since: Jan 2008
Posts: 24
Thanks: 0
Thanked 0 Times in 0 Posts


Default cube Cart Help

I am loading designs the design that i make new products show on the home

page how can i get them to show with out the prices below them
__________________
www.topsthatrock.com
 
Digg this Post!Add Post to del.icio.usBookmark Post in Technorati
Old February 20th, 2008 Feb 20, 2008 4:40:58 PM -   #2 (permalink)
Moderator
Certified T-Shirt Junkie

Comin'OutSwingin's Avatar
 
You can call me: Greg
Member Since: Oct 2005
Location: Tennessee
Posts: 2,377
Thanks: 39
Thanked 117 Times in 89 Posts


Default Re: cube Cart Help

There may be a mod that you can buy for that. I'm not sure.

Off hand, I would just use a mod that lets have a different looking homepage.

That way you can just write a little code for the images and have the same pics, just don't put the price. Even make them link to the page in your shop that lists it.

I've got a mod for that, if you think it will be useful.

Basically, it just let's you code the homepage. It involves making another tpl file in your global skins folder. But it's not so involved that a novice couldn't do it.

Let me know if you would like some help, and I can walk you through it.
__________________

 
Digg this Post!Add Post to del.icio.usBookmark Post in Technorati
Old February 20th, 2008 Feb 20, 2008 4:56:00 PM -   #3 (permalink)
T-Shirt Lover
T-Shirt Fan
Thread Starter

rocktops's Avatar
 
You can call me: mike
Member Since: Jan 2008
Posts: 24
Thanks: 0
Thanked 0 Times in 0 Posts


Default Re: cube Cart Help

My problem is that i am not good at websites and the guy that did this for me
is not help at all i guess i have to learn hard to teach old dogs new tricks
__________________
www.topsthatrock.com
 
Digg this Post!Add Post to del.icio.usBookmark Post in Technorati
Old February 20th, 2008 Feb 20, 2008 4:57:54 PM -   #4 (permalink)
Moderator
Certified T-Shirt Junkie

Comin'OutSwingin's Avatar
 
You can call me: Greg
Member Since: Oct 2005
Location: Tennessee
Posts: 2,377
Thanks: 39
Thanked 117 Times in 89 Posts


Default Re: cube Cart Help

I'm not that good, either. I just learn by trial and error. I'm blessed with a lot of time on my hands, so that helps, too!

If you need the help, I can tell you what to do. You'll see, it's not very hard at all.
__________________

 
Digg this Post!Add Post to del.icio.usBookmark Post in Technorati
Old February 20th, 2008 Feb 20, 2008 5:09:39 PM -   #5 (permalink)
T-Shirt Lover
T-Shirt Fan
Thread Starter

rocktops's Avatar
 
You can call me: mike
Member Since: Jan 2008
Posts: 24
Thanks: 0
Thanked 0 Times in 0 Posts


Default Re: cube Cart Help

that would be cool i have a degree in computer networking but programming I have no clue any help would be great
__________________
www.topsthatrock.com
 
Digg this Post!Add Post to del.icio.usBookmark Post in Technorati
Old February 20th, 2008 Feb 20, 2008 5:34:33 PM -   #6 (permalink)
Moderator
Certified T-Shirt Junkie

Comin'OutSwingin's Avatar
 
You can call me: Greg
Member Since: Oct 2005
Location: Tennessee
Posts: 2,377
Thanks: 39
Thanked 117 Times in 89 Posts


Default Re: cube Cart Help

Ok. I'll post it all here, instead of PM. Maybe someone will happen upon it, and it can help them, too.

First, back up everything!!!

You need to open "index.php" in the root folder of your store.

Find this line:
$body = new XTemplate("skins/".$config['skinDir']."/styleTemplates/global/index.tpl");

You need to replace that line with this block of code:

/* <rf> unique homepage template mod */
if(isset($_GET['act'])) {
$body = new XTemplate ("skins/".$config['skinDir']."/styleTemplates/global/index.tpl");
} else {
$body = new XTemplate ("skins/".$config['skinDir']."/styleTemplates/global/home.tpl");
}
/* <rf> end mod */

You can copy and past it, just as it is.

Save and close the file.

Next you need to go to the skins folder an open "styletemplates", then "global".

You need to create a new file here, named "home.tpl".

After that, open "index.tpl" and copy and paste the contents from "indexl.tpl" into the newly created "home.tpl".

This will give you homepage that is unique to all the other pages, but still have the functionality of the cubecart cart.

After you get that done. I can show you how to put those pics on the homepage without the prices.

Well just add the images you want, and link them to the page in the store where the customer makes the purchase.

If you need pics of any this, or clarification, let me know. It's not as hard as it may seem.
__________________

 
Digg this Post!Add Post to del.icio.usBookmark Post in Technorati
Old February 20th, 2008 Feb 20, 2008 7:10:22 PM -   #7 (permalink)
T-Shirt Lover
T-Shirt Fan
Thread Starter

rocktops's Avatar
 
You can call me: mike
Member Since: Jan 2008
Posts: 24
Thanks: 0
Thanked 0 Times in 0 Posts


Default Re: cube Cart Help

what a good FTP applications what do you use
__________________
www.topsthatrock.com
 
Digg this Post!Add Post to del.icio.usBookmark Post in Technorati
Old February 20th, 2008 Feb 20, 2008 7:12:00 PM -   #8 (permalink)
Moderator
Certified T-Shirt Junkie

Comin'OutSwingin's Avatar
 
You can call me: Greg
Member Since: Oct 2005
Location: Tennessee
Posts: 2,377
Thanks: 39
Thanked 117 Times in 89 Posts


Default Re: cube Cart Help

I use SmartFTP.

There are others. I don't have any experience with any other one, though.
__________________

 
Digg this Post!Add Post to del.icio.usBookmark Post in Technorati
Old February 20th, 2008 Feb 20, 2008 7:38:03 PM -   #9 (permalink)
T-Shirt Lover
T-Shirt Fan
Thread Starter

rocktops's Avatar
 
You can call me: mike
Member Since: Jan 2008
Posts: 24
Thanks: 0
Thanked 0 Times in 0 Posts


Default Re: cube Cart Help

well i downloaded it and how to I see the code you show me

it a apache server
__________________
www.topsthatrock.com
 
Digg this Post!Add Post to del.icio.usBookmark Post in Technorati
Old February 20th, 2008 Feb 20, 2008 7:44:28 PM -   #10 (permalink)
Moderator
Certified T-Shirt Junkie

Comin'OutSwingin's Avatar
 
You can call me: Greg
Member Since: Oct 2005
Location: Tennessee
Posts: 2,377
Thanks: 39
Thanked 117 Times in 89 Posts


Default Re: cube Cart Help

Got WordPad? You can open the file in WordPad.
__________________

 
Digg this Post!Add Post to del.icio.usBookmark Post in Technorati
Old February 20th, 2008 Feb 20, 2008 8:04:18 PM -   #11 (permalink)
T-Shirt Lover
T-Shirt Fan
Thread Starter

rocktops's Avatar
 
You can call me: mike
Member Since: Jan 2008
Posts: 24
Thanks: 0
Thanked 0 Times in 0 Posts


Default Re: cube Cart Help

looks like i am going to need alot of help with this one have no clue
__________________
www.topsthatrock.com
 
Digg this Post!Add Post to del.icio.usBookmark Post in Technorati
Old February 20th, 2008 Feb 20, 2008 8:07:50 PM -   #12 (permalink)
Moderator
Certified T-Shirt Junkie

Comin'OutSwingin's Avatar
 
You can call me: Greg
Member Since: Oct 2005
Location: Tennessee
Posts: 2,377
Thanks: 39
Thanked 117 Times in 89 Posts


Default Re: cube Cart Help

Not a problem. Do you have your cubecart files on your hard drive?

If so, I can walk you through it, no problem.
__________________

 
Digg this Post!Add Post to del.icio.usBookmark Post in Technorati
Old February 20th, 2008 Feb 20, 2008 8:20:50 PM -   #13 (permalink)
T-Shirt Lover
T-Shirt Fan
Thread Starter

rocktops's Avatar
 
You can call me: mike
Member Since: Jan 2008
Posts: 24
Thanks: 0
Thanked 0 Times in 0 Posts


Default Re: cube Cart Help

i at a lost here someone else made the site how do i get the files fron the server to my hard drive
__________________
www.topsthatrock.com
 
Digg this Post!Add Post to del.icio.usBookmark Post in Technorati
Old February 20th, 2008 Feb 20, 2008 8:21:26 PM -   #14 (permalink)
T-Shirt Lover
T-Shirt Fan
Thread Starter

rocktops's Avatar
 
You can call me: mike
Member Since: Jan 2008
Posts: 24
Thanks: 0
Thanked 0 Times in 0 Posts


Default Re: cube Cart Help

do you use aim
__________________
www.topsthatrock.com
 
Digg this Post!Add Post to del.icio.usBookmark Post in Technorati
Old February 20th, 2008 Feb 20, 2008 8:33:08 PM -   #15 (permalink)
Moderator
Certified T-Shirt Junkie

Comin'OutSwingin's Avatar
 
You can call me: Greg
Member Since: Oct 2005
Location: Tennessee
Posts: 2,377
Thanks: 39
Thanked 117 Times in 89 Posts


Default Re: cube Cart Help

Nope.

If you've got the username and password, you can get the files with any FTP program.

As I said, I use SmartFTP.

I've attached a screen shot for you.

All you have to do is create a folder on your desktop, and call it whatever you like.

Connect to your site through the FTP program.

On my desktop I called it "site files to change". You can see it with the red arrow.

My site files are on the left, and my local desktop is on the right of the FTP.
Attached Images
File Type: jpg example.jpg (87.7 KB, 4 views)
__________________

 
Digg this Post!Add Post to del.icio.usBookmark Post in Technorati


This is a discussion about cube Cart Help that was posted in the Ecommerce Site Design section of the forums.

Thread Tools

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Considering hostgator, cube cart and pay pal alma7 Ecommerce Site Design 5 January 9th, 2008 02:36 PM
Cube cart question: can you checkout without logging in? jbe99ag Ecommerce Site Design 10 September 2nd, 2007 12:10 PM
Cube or Zen? julia44 Ecommerce Site Design 13 June 27th, 2007 07:00 AM
Zencart or Cube cart mbevon Ecommerce Site Design 4 May 31st, 2007 11:04 AM
Looking for a Cube Cart Mod normsbrand Ecommerce Site Design 2 April 16th, 2007 08:06 PM


All times are GMT -8. The time now is 09:45 PM.


Copyright 2004-2008 T-ShirtForums.com. All rights reserved.