Jump to content

convict

Member
  • Posts

    1,302
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by convict

  1. Yes this can be the issue :angry: I am tired, forgot to have look at FF status bar :D I have disabled Java Script by default.

    May be the suggestion to add a <noscript> section with warning to global template as CubeCart standard code.

  2. I see you want to replace product popularity box with best order placed products :D

    Only you need is replace the SQL query in includes/boxes/popularProducts.inc.php with:

    "SELECT ".$glob['dbprefix']."CubeCart_inventory.productId, ".$glob['dbprefix']."CubeCart_inventory.productCode, ".$glob['dbprefix']."CubeCart_inventory.name, sum(".$glob['dbprefix']."CubeCart_order_inv.quantity) as salesCount FROM ".$glob['dbprefix']."CubeCart_inventory LEFT JOIN ".$glob['dbprefix']."CubeCart_order_inv ON ".$glob['dbprefix']."CubeCart_inventory.productId = ".$glob['dbprefix']."CubeCart_order_inv.productId LEFT JOIN ".$glob['dbprefix']."CubeCart_order_sum ON ".$glob['dbprefix']."CubeCart_order_inv.cart_order_id = ".$glob['dbprefix']."CubeCart_order_sum.cart_order_id " GROUP BY productId ORDER BY salesCount DESC LIMIT 10";

    Query result is what you would like :angry:

    PS: i have made just copy & paste and WHERE conditon deletion from ..... (advertisment is not allowed) LOL

  3. I can't find any non-secure items such as images, they're all contained within the site.

    Only I suggest - your search have to be strictly. Easiest way is to investigate source code immediately(IE message is gone by OK click). Search for http:

    FF is benevolent no argue.

  4. 1. How do I get a certain option to be displayed as default? For example, for this product I would like to have the default on T-Shirt, not on Onesie. How can I do that? (http://70.103.140.106/~rocketra/shop/index.php?act=viewProd&productId=3)

    Default item of option is the first assigned to product options :w00t:

  5. Latest version is 3.0.10, just a side words.

    Suppose your problem is in currency ratio, check this in Admin Control Panel->Store Config->Currencies.

    What number is for AUS? Anything else than 1.000000? If so this is the problem.

    Payment gateway files doesnt recalculate prices as front-end does.

  6. You have retrieved this issue probably, didnt see any problem. The main problem is in your home page:

    onLoad="MM_preloadImages('file:///G|/DanceTrenz/Photo%20White.jpg',
    
    'file:///G|/DanceTrenz/Banner4.jpg','file:///G|/DanceTrenz/Dancetrenz1a.jpg')" link="#FFFFFF" vlink="#FFFFFF" alink="#FFFFFF">

    I dont have any of those files on my local/shared disk :D

  7. I think the correct is following:

    $tmpdesc = substr(strip_tags($productResults[$i]['description']),0,$config['productPrecis'])."&hellip;";
    
    
    
    
    OR just another condition
    
    
    
    
    
    $tmpdesc = substr(strip_tags($productResults[$i]['description']),0,$config['productPrecis']);
    
    if(empty($tmpdesc)) {
    
    	$view_cat->assign("TXT_DESC","");
    
    } else {
    
    	$view_cat->assign("TXT_DESC",$tmpdesc."&hellip;");
    
    }

    SW made just programmer's typo, useless copied end parenthesis :w00t:

×
×
  • Create New...