Go Back   vb.org Archive > vBulletin Modifications > vBulletin 4.x Modifications > vBulletin 4.x Add-ons
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
CartPlog: The Lite PayPal Shopping Cart Details »»
CartPlog: The Lite PayPal Shopping Cart
Version: 3.0.0, by calorie calorie is offline
Developer Last Online: Nov 2023 Show Printable Version Email this Page

Category: Miscellaneous Hacks - Version: 4.0.x Rating:
Released: 08-01-2010 Last Update: Never Installs: 86
DB Changes Uses Plugins
Additional Files  
No support by the author.

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.

CartPlog v.1.0.0. is here and CartPlog v.2.0.0. is here. So what's new in CartPlog v.3.0.0?
  • This is the vB4 version with the CartPlog v.2.0.0 updates...
    • You can set different prices for each usergroup on a per product basis
    • You can select whether a product is active for certain usergroups
    • You can allow your shoppers to change the displayed currency
    • Guest shoppers can now view the cart without losing their session
    • Moving a product to a different category now updates correctly
    • Some code and template cleanup and organization was performed
Requirements: This version is for vB 4.x.x only.
Tested: vB 4.0.3 (but should work on other versions).
Does it work on all vB 3.x or 4.0? See the requirements.

There is a license agreement that I request that you abide. Thanks!

These are vB3 based screenshots. Please use your imagination for vB4.







Fine Print: see license agreement, no redistribution, copyright retained in full, right reserved to uncheck support box.

Download Now

File Type: zip CartPlog_3.0.0.zip (23.7 KB, 670 views)

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #62  
Old 03-18-2013, 02:56 AM
BenOwns BenOwns is offline
 
Join Date: Dec 2011
Posts: 32
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hey there,

i am trying to use the view transactions, but i am receiving nothing from it :/
Reply With Quote
  #63  
Old 04-06-2013, 09:14 PM
Bounce's Avatar
Bounce Bounce is offline
 
Join Date: Mar 2004
Location: Edinburgh,Scotland
Posts: 919
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hi,

Excellent add-on...

Is there the ability in the options to add a text area where the user can enter text?

For Example:

Special Requirements
< user enters text>
Reply With Quote
  #64  
Old 04-06-2013, 09:42 PM
Bounce's Avatar
Bounce Bounce is offline
 
Join Date: Mar 2004
Location: Edinburgh,Scotland
Posts: 919
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Also can the thumbnail be clickable?

Thanks
Reply With Quote
  #65  
Old 08-27-2013, 08:55 PM
TheLastSuperman's Avatar
TheLastSuperman TheLastSuperman is offline
Senior Member
 
Join Date: Sep 2008
Location: North Carolina
Posts: 5,844
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Bounce View Post
Hi,

Excellent add-on...

Is there the ability in the options to add a text area where the user can enter text?

For Example:

Special Requirements
< user enters text>
Not without some modification to this mod however I edited my version replacing the add to cart and view cart w/ e-junkie links to my products and services so it can be customized but on the entry field comment, I'm utilizing the easy forms mod in conjunction with this - https://vborg.vbsupport.ru/showthread.php?t=234385

Quote:
Originally Posted by Bounce View Post
Also can the thumbnail be clickable?

Thanks
Edit template cartplog_view_item and find:

Code:
			<vb:if condition="$cartplog['product_thumb']">
				<img style="{vb:raw vboptions.cartplog_thumbcss}" src="{vb:raw cartplog.product_thumb}" alt="" border="0" />
			<vb:else />
				<img style="{vb:raw vboptions.cartplog_thumbcss}" src="{vb:stylevar imgdir_misc}/cartplog_no_image.gif" alt="" border="0" />
			</vb:if>

Replace with:
Code:
			<vb:if condition="$cartplog['product_thumb']">
				<a href="cartplog.php?{vb:raw session.sessionurl}do=viewitem&amp;cartplogproductid={vb:raw cartplog.product_productid}"><img style="{vb:raw vboptions.cartplog_thumbcss}" src="{vb:raw cartplog.product_thumb}" alt="" border="0" /></a>
			<vb:else />
				<a href="cartplog.php?{vb:raw session.sessionurl}do=viewitem&amp;cartplogproductid={vb:raw cartplog.product_productid}"><img style="{vb:raw vboptions.cartplog_thumbcss}" src="{vb:stylevar imgdir_misc}/cartplog_no_image.gif" alt="" border="0" /></a>
			</vb:if>


Also edit template cartplog_product_item and find:
Code:
	<vb:if condition="$cartplog['product_thumb']">
		<img style="{vb:raw vboptions.cartplog_thumbcss}" src="{vb:raw cartplog.product_thumb}" alt="" border="0" />
	<vb:else />
		<img style="{vb:raw vboptions.cartplog_thumbcss}" src="{vb:stylevar imgdir_misc}/cartplog_no_image.gif" alt="" border="0" />
	</vb:if>

Replace with:
Code:
	<vb:if condition="$cartplog['product_thumb']">
		<a href="cartplog.php?{vb:raw session.sessionurl}do=viewitem&amp;cartplogproductid={vb:raw cartplog.product_productid}"><img style="{vb:raw vboptions.cartplog_thumbcss}" src="{vb:raw cartplog.product_thumb}" alt="" border="0" /></a>
	<vb:else />
		<a href="cartplog.php?{vb:raw session.sessionurl}do=viewitem&amp;cartplogproductid={vb:raw cartplog.product_productid}"><img style="{vb:raw vboptions.cartplog_thumbcss}" src="{vb:stylevar imgdir_misc}/cartplog_no_image.gif" alt="" border="0" /></a>
	</vb:if>


See where I'm headed with this? So basically check all templates for code similar to:
Code:
<img style="{vb:raw vboptions.cartplog_thumbcss}" src="{vb:raw cartplog.product_thumb}" alt="" border="0" />
And replace with:
Code:
<a href="cartplog.php?{vb:raw session.sessionurl}do=viewitem&amp;cartplogproductid={vb:raw cartplog.product_productid}"><img style="{vb:raw vboptions.cartplog_thumbcss}" src="{vb:raw cartplog.product_thumb}" alt="" border="0" /></a>

Tips:
- Making the picture large is fine, this way when they click it opens full size and cartplog will resize it to appear as a thumbnail regardless on the index, item view and other areas if you edit those as well.
- Make all images of products a square i.e. 600x600 pixels otherwise when it resizes the image may become distorted if for example it's 350x450 so basically no rectangular images.
Reply With Quote
  #66  
Old 09-05-2013, 08:17 PM
BoostedK20 BoostedK20 is offline
 
Join Date: Mar 2011
Location: NY
Posts: 118
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I'm beginning to set this up. Install went very smooth, however I need both categories AND subcategories, and this doesn't seem to support this which is very surprising to me. I think this definitely has a lot of potential though. Can someone please help me out with creating subcategories?
Reply With Quote
  #67  
Old 01-24-2014, 12:34 AM
RSC17 RSC17 is offline
 
Join Date: Feb 2012
Posts: 15
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Is there anyway to use a different paypal address with cartplog rather than the one associated to the forum?
Reply With Quote
  #68  
Old 01-29-2014, 08:14 PM
RPSmedia RPSmedia is offline
 
Join Date: Feb 2010
Posts: 72
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

wish there was an option to add shipping or did I miss it?
Reply With Quote
  #69  
Old 03-25-2014, 06:25 AM
Alibass's Avatar
Alibass Alibass is offline
 
Join Date: Mar 2007
Posts: 615
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Anybody know how to get the shipping option to display on 4.2.2 PL1

Thanks
Reply With Quote
  #70  
Old 04-14-2014, 10:22 PM
RSC17 RSC17 is offline
 
Join Date: Feb 2012
Posts: 15
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by RSC17 View Post
Is there anyway to use a different paypal address with cartplog rather than the one associated to the forum?
This.
Reply With Quote
  #71  
Old 11-20-2014, 01:15 PM
ispots ispots is offline
 
Join Date: Nov 2007
Posts: 53
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Love the product but having a few issues after install on 4.2.*:

1. Getting this message in my header:
Quote:
Warning: Function eregi_replace() is deprecated in ..../cartplog.php on line 330
Warning: Function eregi_replace() is deprecated in ..../cartplog.php on line 397
2. I get this message when adding a product:
Quote:
Warning: number_format() expects parameter 1 to be double, string given in ..../admincp/cartplogacp.php on line 275
Please help!
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 03:43 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.04595 seconds
  • Memory Usage 2,337KB
  • Queries Executed 26 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (6)bbcode_code
  • (5)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (4)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (3)pagenav_pagelink
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (1)postbit_attachment
  • (11)postbit_onlinestatus
  • (11)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_attachment
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete