Advanced search  

News:

cpg1.5.48 Security release - upgrade mandatory!
The Coppermine development team is releasing a security update for Coppermine in order to counter a recently discovered vulnerability. It is important that all users who run version cpg1.5.46 or older update to this latest version as soon as possible.
[more]

Pages: 1 ... 15 16 17 18 [19] 20 21 22   Go Down

Author Topic: cpgShop - a PayPal shopping cart  (Read 429091 times)

0 Members and 1 Guest are viewing this topic.

gmc

  • Dev Team member
  • Coppermine addict
  • ****
  • Country: us
  • Offline Offline
  • Gender: Male
  • Posts: 785
    • GMC Design Photo Gallery

Hi

How can I hide the VIEW CART etc buttons for cpgshop for users that is not logged in ? With other words visitors cant see this buttons ...

Please help

If you scroll up a bit in this thread - instructions included to suppress the view cart and checkout buttons when cart is empty - which would include unlogged users initially.
It does allow unlogged users to add items to their cart still - which would then make the 'view cart' and 'checkout' buttons visible - which would require logging on to complete.

If that meets your need:
To suppress display of 'view cart' button when the cart is empty - in codebase.php:
find:
Code: [Select]
  //Add view cart & checkout buttons
  if ($item_in_cart > -1 && $CONFIG['cpgshop_enable']) {
and replace with: (just changing -1 to 0... with comments)
Code: [Select]
  //Add view cart & checkout buttons
  //* GMC - alter compare to suppress cart and checkout buttons if cart is empty..
  if ($item_in_cart > 0 && $CONFIG['cpgshop_enable']) {  //* GMC changed compare to > 0
Remember you will need to redo this change any time you upgrade CPGShop.
Logged
Thanks!
Greg
My Coppermine Gallery
Need a web hosting account? See my gallery for an offer for CPG Forum users.
Send me money

JohannM

  • Coppermine frequent poster
  • ***
  • Offline Offline
  • Posts: 252
Re: cpgShop - a PayPal shopping cart
« Reply #361 on: May 14, 2014, 12:52:30 pm »

I tried that code, but it intervere with the plugin Final Extraxt in some way
Logged

JohannM

  • Coppermine frequent poster
  • ***
  • Offline Offline
  • Posts: 252
Re: cpgShop - a PayPal shopping cart
« Reply #362 on: May 14, 2014, 12:53:34 pm »

Stramm ... or anybody else who knows how to get hold of stramm, please send me an email, I want the full version ... thanx.
Logged

JohannM

  • Coppermine frequent poster
  • ***
  • Offline Offline
  • Posts: 252
Re: cpgShop - a PayPal shopping cart
« Reply #363 on: May 15, 2014, 04:55:38 pm »

I have a problem ...

If I put amounts in to charge per country (for when you confirm the order) ... the shop does nod add the country fee ...

Does anyone know how to fix ?

Thanx in advance
Logged

JohannM

  • Coppermine frequent poster
  • ***
  • Offline Offline
  • Posts: 252
Re: cpgShop - a PayPal shopping cart
« Reply #364 on: May 19, 2014, 12:34:49 pm »

Adding a tracking number ?

Hi ... wounder if someone can help perhaps ...

I have a extra field in my table "orders" with the field name of "tracking"

On the admin page of ORDER MANAGER I added a text input field to be able to add a tracking number to the database, but I am not sure where and what code I have to implement ... I tried several ways but could not get the thing working ...

Any help perhaps ?

Thanx in advance
Logged

tupense

  • Coppermine newbie
  • Offline Offline
  • Posts: 14
Re: cpgShop - a PayPal shopping cart
« Reply #365 on: June 06, 2014, 09:31:47 am »

hi can i got the full version of cpgshop i can give some donation ,like you have suggested....
Logged

JohannM

  • Coppermine frequent poster
  • ***
  • Offline Offline
  • Posts: 252
Re: cpgShop - a PayPal shopping cart - Stramm
« Reply #366 on: June 06, 2014, 06:35:12 pm »

Hi

How can we get hold of Stramm for the full version ????

Anybody ???
Logged

anaximander

  • Coppermine newbie
  • Offline Offline
  • Posts: 1
Re: cpgShop - a PayPal shopping cart
« Reply #367 on: June 25, 2014, 08:34:32 pm »

Hi Stramm,

I also would like to get the full version of your plugin (for a donnation).

anaximander
Logged

Aeronautic

  • Coppermine frequent poster
  • ***
  • Country: 00
  • Offline Offline
  • Posts: 125
  • Photographer / film maker turned webmeister...
Re: Reaching Stramm - cpgShop - a PayPal shopping cart
« Reply #368 on: July 07, 2014, 06:27:16 am »

Is there anyone in the Dev community that knows Stramm personally who can update those of us seeking to purchase the full version of the plug-in?

I began asking in March of this year and a few others have followed. If it is a closed project, that would be helpful to know too.

Many thanks!
Logged

Hhappy

  • Coppermine newbie
  • Offline Offline
  • Posts: 6
Re: cpgShop - a PayPal shopping cart
« Reply #369 on: July 13, 2014, 09:23:31 pm »

Would love to get the full version as well.
Thanks
Was just wondering if it's still possible to get the full version (purchase)??
It has been a while..
Logged

phill104

  • Administrator
  • Coppermine addict
  • *****
  • Country: gb
  • Offline Offline
  • Gender: Male
  • Posts: 4885
    • Windsurf.me
Re: cpgShop - a PayPal shopping cart
« Reply #370 on: July 18, 2014, 07:48:26 pm »

Stramm hasn't visited for a while now. I will ping him a PM and see if he responds.
Logged
It is a mistake to think you can solve any major problems just with potatoes.

blackhawk

  • Coppermine newbie
  • Offline Offline
  • Posts: 2
Re: cpgShop - a PayPal shopping cart
« Reply #371 on: August 24, 2014, 12:43:03 am »

Bug Report:
Using this plugin in coppermine standlone seems to work great.  After I bridged coppermine to smf20 the add to cart stopped working.  The cart kept returning empty even tho I added an item to the cart.

To fix this go to libs/cpgDB.class.php

find this line of code:
Code: [Select]
return mysql_insert_id();
and replace with the following
Code: [Select]
return cpg_db_last_insert_id();
this fix works in either standalone or bridged with smf20.  I did not test other apps that coppermine will bridge with.

I'd be interested in the full version of this plugin if the author ever returns.
Logged

Hhappy

  • Coppermine newbie
  • Offline Offline
  • Posts: 6
Re: Re: cpgShop - a PayPal shopping cart
« Reply #372 on: August 26, 2014, 12:09:15 pm »

Stramm hasn't visited for a while now. I will ping him a PM and see if he responds.

any news?
still hoping to be able to get my hands on a full version
Logged

Stramm

  • Dev Team member
  • Coppermine addict
  • ****
  • Country: 00
  • Offline Offline
  • Gender: Male
  • Posts: 6006
    • Bettis Wollwelt
Re: cpgShop - a PayPal shopping cart
« Reply #373 on: September 02, 2014, 06:30:53 pm »

If someone is still interested in the full version, please let me know.

blackhawk

  • Coppermine newbie
  • Offline Offline
  • Posts: 2
Re: cpgShop - a PayPal shopping cart
« Reply #374 on: September 02, 2014, 07:02:17 pm »

yes, I am, I have PM turned on but I can't send a message.  thanks, 
Logged

Hhappy

  • Coppermine newbie
  • Offline Offline
  • Posts: 6
Re: Re: cpgShop - a PayPal shopping cart
« Reply #375 on: September 03, 2014, 02:56:15 pm »

If someone is still interested in the full version, please let me know.
Welcome back and yes please :)
Logged

Hhappy

  • Coppermine newbie
  • Offline Offline
  • Posts: 6
Re: cpgShop - a PayPal shopping cart
« Reply #376 on: September 04, 2014, 07:42:31 am »

Thank you for the pm (can't reply as i'm not allowed (yet) to sent pm's..
Logged

wp180

  • Coppermine newbie
  • Offline Offline
  • Posts: 7
Re: cpgShop - a PayPal shopping cart
« Reply #377 on: September 07, 2014, 03:29:48 pm »

Hi Stramm.

I'm also interesting in the full version.

Thx a lot.
wp180
Logged

Aeronautic

  • Coppermine frequent poster
  • ***
  • Country: 00
  • Offline Offline
  • Posts: 125
  • Photographer / film maker turned webmeister...
Re: cpgShop - a PayPal shopping cart
« Reply #378 on: September 29, 2014, 08:19:48 pm »

Welcome back Stramm!

Please get in touch about buying the full version.

Thanks
Logged

shafeeq

  • Coppermine newbie
  • Offline Offline
  • Posts: 1
Re: cpgShop - a PayPal shopping cart
« Reply #379 on: October 14, 2014, 04:47:47 pm »

Hey Stramm,

Can you please get in touch about buying the full version?

Thanks,
Shafeeq
Logged
Pages: 1 ... 15 16 17 18 [19] 20 21 22   Go Up
 

Page created in 0.037 seconds with 20 queries.