Photo Shop - removing the need to register in Coppermine. Photo Shop - removing the need to register in Coppermine.
 

News:

CPG Release 1.6.26
Correct PHP8.2 issues with user and language managers.
Additional fixes for PHP 8.2
Correct PHP8 error with SMF 2.0 bridge.
Correct IPTC supplimental category parsing.
Download and info HERE

Main Menu

Photo Shop - removing the need to register in Coppermine.

Started by mpwmedia, February 18, 2007, 03:43:54 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

mpwmedia

Is there any way of removing the need to register from the Photo Shop plugin?

i.e. once a customer had placed an order and confirmed it they would be taken direct to PayPal.

Thank you.

Stramm

I just answered a similar question

Quote- with the current shop layout people necessarily have to register no matter what. The person ordering this shop wanted to print and send photos to his customers. So he's in need of the address. The shop admin makes use of the customer details. Without that no uid, customer user/ nick name, nothing you could use to connect an order to

Removing the need to register is easy... but then you'd have to modify most of the admin functions too

to just remove the redirect to the register page open photo_shop_checkout.php and comment out that block
//if user isn't logged in redirect to shop register/ login page
if(!USER_ID) {
    photoshop_refresh($_SERVER['PHP_SELF'].'?file=photo_shop/photo_shop_register');
exit;
}


but as said... there's more to do than that