Jump to content

convict

Member
  • Posts

    1,302
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by convict

  1. Easiest way is to just embed your video in an html page & then create a new site doc with the code. I've recently done this here

    see the click for trailer link at the bottom ;)

    Just a notices:

    - well made site however designed for IE - FF has a couple of little problems especially with footer on page you droped a link, footer is over video link :D. Middle box is too tall for FF - content overflow.

    - why dont you use JS for expanding category links too? BTW good modified skin for this mod, hope a licensed copy :lol:

  2. Hi,

    I want to remove the red titles under the images in the subcategories from my store.

    my store

    Where can i do this?

    And i want to install the Catogory description mod, can someone post a download link?

    Greatings, newb.

    Open viewCat.tpl in your skins/your-skin/styleTemplates/content folder and remove

    <a href="index.php?act=viewCat&catId={TXT_LINK_CATID}" class="txtDefault">{TXT_CATEGORY}</a>

    :unsure:

  3. "Countries" and "County/State/Zone" are related. County table contains a countryId to know what conty belongs to country. If you select a country, county drop down box is full of country counties if any :D

    If you have deleted some Country which has Counties, nothig happens if you dont need this country, in other case you are in trouble especialy you are not sure what country is missing.

    Counties here are for different taxes, fees mainly.

  4. DB schema with initial DB content is in CC package:

    upload/install/db/schema.inc.php

    Restoring depends to how many countries you want to get back.

    IF few just rip appropriate INSERT lines like

    $db->misc("INSERT INTO `".$_POST['dbprefix']."CubeCart_iso_countries` VALUES (238, 'ZM', 'Zambia', 'ZMB', 894);");
     make proper SQL,  run it in MyPhpAdmin ....
    
    
    
    -----------------------------------------------
    
    
    
    IF all, prepare and upload sritpt like this:
    
    
    
    <?php
    
    include_once("includes/ini.inc.php");
    
    include_once("includes/global.inc.php");
    
    include_once("classes/db.inc.php");
    
    $db = new db();
    
    
    
    // rip all countries, counties lines here like
    
    	$db->misc("INSERT INTO `".$_POST['dbprefix']."CubeCart_iso_countries` VALUES (1, 'AF', 'Afghanistan', 'AFG', 4);");
    
    	$db->misc("INSERT INTO `".$_POST['dbprefix']."CubeCart_iso_countries` VALUES (2, 'AL', 'Albania', 'ALB', 8);");
    
    	$db->misc("INSERT INTO `".$_POST['dbprefix']."CubeCart_iso_countries` VALUES (3, 'DZ', 'Algeria', 'DZA', 12);");
    
    .
    
    .
    
    .
    
    .
    
    .
    
    
    
    ?>

    Empty CubeCart_iso_countries(counties) table contents and run your script.

    Hope all is clear :)

×
×
  • Create New...