Jump to content

convict

Member
  • Posts

    1,302
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by convict

  1. Form some reason, total item number on the main page category tree is not showing up. Example: Clothing ()

    Any ideas? Thanks.

    This is known bug in 4.1.0RC1 & 4.1.0RC2

    FIX:

    admin/sources/categories/index.inc.php

    $record["noProducts"] = 0;

    $insert = $db->insert($glob['dbprefix']."CubeCart_category", $record);

    $msg = ($insert == true) ? "<p class='infoText'>'".$_POST['cat_name']."' ".$lang['admin']['categories_add_success']."</p>" : "<p class='warnText'>".$lang['admin']['categories_add_failed']."</p>";

    Red marked is a new line required.

    A small fix is required to the current empty count to add zero to any such category. Once done do use recount tool.

  2. I think this is big mistake,I suppose most of us from EU need to display prices including tax.I can´t believe nobody solved this yet in cc4,I hope somebody will do it very soon.This should be standard feature,display prices with tax and tax described also in checkout page,email,etc.Sorry,but without this funcionality it is not useable cart ! It is a law in most EU countries to display prices including tax.

    I found that already couple times somebody was posting this subject in forum,but it looks Brooky&co are not watching out for such important things ... :)

    Do you mean prices with and without tax like this one?

    Please note EU member shop owner have to tax any EU member customer however not any outside one thus this could not be made generally but customized yet becasue of shop owner base.

    "Kronium.cz shop je modifikovany"

  3. Does anyone know how to use the shipping Per Category module? I don't understand it at all and can't find any documentation on the site.

    I'm just wondering if by setting this to Enabled, what happens to the categories I still want to use "By Weight"? Does this override this? If I don't set the per category options for one of the categories, will it default to the By Weight option instead?

    There is a description and an example I am sorry no other documentation.

    Be aware "By weight" is just another shipping module. If you don't set options for some category shipping per non 'added' category is NULL/ZERO unless a product from "added' category in order.

  4. Oh cool. There are a few categories (but not many products) so this will gather all the products then?

    What do you mean by having to manage a link to this file? (sorry didn't follow you on that one).

    I mean any category link shows always the same content thus categories are ignored.

  5. Well as I see you don't need any category? If so this is very simple hack you have to modify the SQL query like this one

    $productListQuery = sprintf("SELECT C.cat_id, C.productId, I.productCode, I.quantity, I.description, I.image, I.price, I.name, I.popularity, I.sale_price, I.stock_level, I.useStockLevel FROM %1\$sCubeCart_cats_idx AS C INNER JOIN %1\$sCubeCart_inventory AS I ON C.productId = I.productId WHERE I.disabled = '0' AND C.cat_id = %2\$s GROUP BY I.productId %3\$s", $glob['dbprefix'], $db->mySQLSafe($_GET['catId']), $orderSort);
    
    
    TO
    
    
    
    $productListQuery = sprintf("SELECT * FROM %1\$sCubeCart_inventory %2\$s", $glob['dbprefix'],  $orderSort);

    in viewCat.inc.php file. Only you have to manage a link to this file becasue of view category content.

  6. Well I know its only been 3 days, but I still havent gotten anyone to respond. :errm: If anyone even knows the right direction to point me to fix this it would be greatly appreciated!

    or

    Does anyone know if cubecart support will help with this issue if I register, or is this the type of thing they want you to solve in the forums?

    CubeCartforums.org is the right area for 3rd Party modifications. It seems you did not search well. If you still are unsure google for "cubecart advanced dhtml category"

    I am sorry but cubecart support won't help you to solve this it does not cover custom modifications.

  7. I enabled the email log on call.inc.php and got the log emailed to me. There doesn't seem to be any errors on it and confirms successful payment.

    [payment_status] => Completed

    [notes] => Payment successful. <br />Address: confirmed<br />Payer Status: verified

    Any ideas why cubecart isn't switching the status of the order to 'Complete and dispatched'?

    I've used the non-CURL patch as well with no luck, even though I also used the script to check if my server supports CURL and got a positive result.

    What is the order status once you have got such email? It should be Processing.
  8. Hi,

    I want to sent the products of my CubeCart v4 e-shop from Greece. Do I have the ability to use the UPS built-in module contained in CubeCart v4 or I have to request another module from UPS-Greece?

    I would appreciate any answer...

    Built-in UPS does support US UPS only. Please ask UPS-Greece.

  9. I'm still the same place though. Order status updates and e-mail sends, but Confirmation page is blank.

    Does the IPN mod for non-CURL servers work on CC v 4.0.3--most of the references to it were for version 3?

    Please note confirmation screen has nothing common to order status change! The IPN method means PayPal server will run your IPN URL you specified at PayPal in your profile once payment is successfull.

    If your site supports CURL and no oder status change were made there are TWO reasons:

    1. PayPal never run IPN to your stores. It happens but occasionaly. PayPal changed design and code a bit.

    OR

    2. Your PayPal profile settings are wrong. Pleas check this post dont care it is to CubeCart version 3 related. PayPal profile setting for CC4 are as the same as for CC3. Only exception it works on Premier account too.

    You may try The PayPal IPN with unix domain socket connection (CC3 style) method posted in cubecartforums.org hovever suppose the same result for you.

    Confirmation Page Blank?
    It seem you use a custom CC3 skin. Please note there is a lot diffrences between CC3 and CC4. Confimration template page has a new section gateways similar to PayPal IPN do use.
  10. I just wish somebody gave me the info of how to implement it. I'm ready to put my site online, this is the only thing holding me back.
    It depends to payment gateway(s) you use.

    The order id to rediredt to right order details page in includes/content/confirmation.inc.php must be known - redirection once payment is succesfull.

  11. I have fixed the API problem now...

    However, if i try to make a test purchase now and i continue to check out, i end up on a white screen with the message...

    Failed to add the package

    What am i doing wrong?

    This is USPS shipping module related.

    What USPS setting? This message is to ZERO total weight related mainly however it may produce another setting

×
×
  • Create New...