CartPlog: The Lite PayPal Shopping Cart

Daz

New Member
CartPlog: The Lite PayPal Shopping Cart

CartPlog Lite is a shopping cart for PayPal payments. CartPlog Lite allows for categories, products, and options, and it keeps track of transactions by utilizing the PayPal IPN interface. The installation takes care of phrases, templates, tables, etcetera. Just follow the README.txt file for installation.


cartplog1.jpg

cartplog2.jpg

cartplog3.jpg
 

X-Treme

New Member
here dude.. sure i'll paste that code into here :)

vBulletin.org Forum - View Single Post - CartPlog: The Lite PayPal Shopping Cart

PHP:
    $cartplog_product_infos = $db->query_read("SELECT productid, catid, thumb, title, price
        FROM " . TABLE_PREFIX . "cartplog_products
        WHERE sales = " . intval($cartplog_max_salescnt) . "
    ");

    $cartplog['popular_products'] = '';

    while ($cartplog_product_info = $db->fetch_array($cartplog_product_infos))
    {
        $cartplog['product_productid'] = intval($cartplog_product_info['productid']);
        $cartplog['product_catid'] = intval($cartplog_product_info['catid']);
        $cartplog['product_thumb'] = strval($cartplog_product_info['thumb']);
        $cartplog['product_title'] = htmlspecialchars_uni($cartplog_product_info['title']);
        $cartplog['product_price'] = round(floatval($cartplog_product_info['price']), 2);

        eval('$cartplog[\'popular_products\'] .= "' . fetch_template('cartplog_product_item') . '";');
        $cartplog['popular_products'] .= '</tr><tr>';
    }
here now limit the query
PHP:
WHERE sales = " . intval($cartplog_max_salescnt) . "
vBulletin.org Forum - View Single Post - CartPlog: The Lite PayPal Shopping Cart

There is no "Shopping" phrase, if you want to use "Shopping" as the term you can create a new phrase, or hardwire "Shopping" as such:
Code:
[color=#008080]<td class=[COLOR=#0000ff]"vbmenu_control"[/color]>[/COLOR][color=#008000]<a href=[COLOR=#0000ff]"cartplog.php$session[sessionurl_q]"[/color]>[/COLOR]Shopping[color=#008000]</a>[/color][color=#008080]</td>[/color]
 

websourc

New Member
I love this mod, the only downfall is it only allows 1 option for products... wish there was a way to add more than 1 options. (option1...ex:giftbox then I would like option2 small, medium, or large) which isn't possible... it is all in one dropdown menu. does anyone know how this could be done? I added an image to show the option, but only allows that.... would be nice to see at least 2 options 2 dropdown menus. I have tried my self to add another option in the code myself.... and have had no luck. Thanks for the mod DAZ!!
 
Top