Jump to content

roban

Member
  • Posts

    3,238
  • Joined

  • Last visited

Posts posted by roban

  1. The category tabs are images and to change them you have to open them in an image editor. They are located in Killer/styleImages/backgrounds.

    The text is controlled from skins/Killer/styleSheets/style.css and the code for this is:

    .txtCat {

    font-family: Verdana, Arial, Helvetica, sans-serif;

    font-size: 11px;

    font-weight: bold;

    color: #FFFFFF;

    text-decoration: none;

    As to making the store your main page, please post the contents of your includes/global.inc file. You can move the contents of your shop folder to the root directory.

  2. I am saddened that you think it's s**t. Try to be kinder to yourself.

    I think you've done a great job. The only thing that needs work IMO is the header. You need a better logo. The header is a great place to put things like phone number and other messages you want your customers to see.

  3. Just wondered, whether this is free for students to use on their projects? coz normally oscommerce site is free it has the gnu open source licence free for all to modify and use it. what about cubecart? regards!

    No problemo!

  4. I am not a fan of portal pages especially ones I have to scroll.. I think you would be better served to go directly to the store. Your background is too busy for me and doesn't really 'fit' the Killer skin graphics IMO.

  5. All colors are called from style.css in the skin you are using. You can't open your site in Dreamweaver, it has to be edited with a text editor such as notepad.

    Also in the future please give us a URL to your site so we can see what you are talking about.

  6. In your hosting control panel navigate to mysql databases/phpmyadmin. Open your databse and choose the 'Export' function. Select 'All' and check the box that says 'Save as file'. Then download it to your server as a SQL file.

    You can then create a new empty database on the new server and import the file you have exported.

  7. Open /includes/contents/viewCat.inc.php

    Find somewhere @ line 158

    $productListQuery = "SELECT ".$glob['dbprefix']."CubeCart_cats_idx.cat_id, ".$glob['dbprefix']."CubeCart_cats_idx.productId, productCode, quantity, description, image, price, name, popularity, sale_price, stock_level, useStockLevel FROM ".$glob['dbprefix']."CubeCart_cats_idx INNER JOIN ".$glob['dbprefix']."CubeCart_inventory ON ".$glob['dbprefix']."CubeCart_cats_idx.productId = ".$glob['dbprefix']."CubeCart_inventory.productId WHERE ".$glob['dbprefix']."CubeCart_cats_idx.cat_id = ".$db->mySQLSafe($_GET['catId']);

    Replace it with

    $productListQuery = "SELECT ".$glob['dbprefix']."CubeCart_cats_idx.cat_id, ".$glob['dbprefix']."CubeCart_cats_idx.productId, productCode, quantity, description, image, price, name, popularity, sale_price, stock_level, useStockLevel FROM ".$glob['dbprefix']."CubeCart_cats_idx INNER JOIN ".$glob['dbprefix']."CubeCart_inventory ON ".$glob['dbprefix']."CubeCart_cats_idx.productId = ".$glob['dbprefix']."CubeCart_inventory.productId WHERE ".$glob['dbprefix']."CubeCart_cats_idx.cat_id = ".$db->mySQLSafe($_GET['catId'])." ORDER BY name ASC";

  8. If we are to help members then let's help them. I agree we should not be aiding in the potential sale of 3rd party mods but why not direct the user and let them make up their own minds. I think a simple link to cubecart.org is sufficient. They are on their own from there on.

×
×
  • Create New...