cpgShop - a PayPal shopping cart - Page 5 cpgShop - a PayPal shopping cart - Page 5
 

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

cpgShop - a PayPal shopping cart

Started by Stramm, October 11, 2010, 05:04:51 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

johnbcheetah

Stramm, although I have the options and option sets under some control, the Item doesn't show in the invoice confirmation to the customer,  or to the admins e-mail . I've tried many combinations, also in the pricing (part is below).... what's the solution? There are also question marks on the pdf invoice, obviously something that's missing there.

Item name   Item and option price   Price each   Qty   Ship   Total
461|2010_Defile-008.jpeg   Item price: € 4.00
________________________________________   € 4.00   1   delivery   € 4.00

johnbcheetah

Does anyone know........

How do I enter the company details on the PDF and e-mail purchase confirmations/invoice?
How can I change the question mark on the PDF forms to a Euro sign?

Stramm

Please read the docs. I think I've already answered this questions there.

johnbcheetah

ok, managed to get the address done, but the ? sign is still on the PDF invoice instead of €  (not the mail confirmation) to the customer. Furthermore  the ä in Seinäjoki comes out as Seinäjoki, how do I rectify, Stramm?

Stramm

Save the lang file in utf-8 encoding. The Windows editor is capable of doing that.
With the € sign... looks like I haven't written that down yet. Depending what libraray is available on your server to create pdfs it's necessary to edit the lang file. In the $currency_symbol array you'll find
'EUR' => '€',
//'EUR' => '€',


uncomment the second entry and comment out the first
//'EUR' => '€',
'EUR' => '€',


On your server GD is used to create the pdfs,not the best solution but at tleast it works (images not supported as far as I remember).

johnbcheetah

Ok, works now...... thank you for your patience!

ReVoX

Hi,
I need and idea about how to remove the shipping module. I will explain better, When a person make an order in my gallery with CPGshop, the client must pick up It in my physical shop.
It's possible? Thank you.

Stramm

There's a config entry for that

http://stramm.bplaced.net/wiki/doku.php?id=cpgshop#parcel_delivery_settings
QuoteCustomers can pickup their items

(Yes/No) If you want to allow customers to come into your office and pick up their prints

ReVoX

Yes I know It. I am searching for remove the shipping module. I don't want in the registration form anything about adress ect. In addition I want to remove the shipping module, skip this step.

Stramm

For registration you can make all the fields not mandatory but you can't skip the shipping part without changing code

saleks

Hi,
it is great plugin. Congratulations!
I'm new in using Coppermine and have no experience. OK, I put album and photos, I enable cpgShop, make all settings, make Prices and Optoins, its work. Then I come to test with ordinary user account, go to album. There is Add to Cart everything else, but when click on photo it open in new window in full size and I can download. And why I to buy, when I can dounload in full size?
May be I wrong something with Settings?

Stramm

That's coppermine settings you need to change if you do not want your users to be able to download pics in full size.

Eg you could not display full sized images at all (config) but have them on your server (htaccess protected) so you can let your customers download images in the size you sold them. Or, you can upload lets say 4000x2000 and keep this as original, the fullsize you resize to 1024x800 and then you have your intermediate at 640x480. Set it up as you wish it to be.

Read the Coppermine docs and the plugin docs. If you still should have questions come back here.

saleks

Hi,
I read all documents and again have problem. I set all like simple 'No full-size pop-ups':
Go to coppermine's config and set:

    * "Create intermediate pictures" to "no"
    * "Max width or height of an intermediate picture/video" to "800"
   * "Max width or height for uploaded pictures/videos" to "1024"
   * "Auto resize images that are larger than max width or height" to "Yes:Everyone"

and only see 800px in album, but can download fullsize 1024?
I can not find download settings anywhere?
I don't understand what is meaning of this, if users can download fullsize image how you to sell them?
May be put wattermark? Or sett see only thumbnails in registered users?


saleks

I solve my problem! Thank you for help! :)

Juztme

I hope that this is the correct place to post this. I want to change the valuta to KR (Danish Kroner), but when I do that, the prices end up being 0.00. If I then change valuta back to dollars, euro etc., it's not a problem. I have tried using codes like DKK. DKR, KR... I really want this to work, so please help...

And then I have tried to use option, but that won't work either...

In the title I write papertype...
In the next field I write mat|blank| Well I figured that out - foolish me I had fogotten one of the | There should be two of those between each option  ::) Never mind then...

But I need help with the valuta thingy...

Kind regards Susanne

Stramm

You need to use DKK (cause of PayPal)... then  at two places you have to add that
1. lang file: array $currency_symbol... something like
$currency_symbol = array(
'USD' => 'US $',
'CAD' => 'CA $',
'GBP' => '£',
'EUR' => '€',
//'EUR' => '€',
'JPY' => '¥',
'DKK' => 'DKK',
);


and in libs/cpgTool.class.php
function currency_rate($currency) {
$exc_rate = array(
'USD' => 1,
'CAD' => 0.99597997037873,
'GBP' => 0.4914309894915,
'EUR' => 0.70526835460893,
'JPY' => 115.34663939629,
'DKK' => 1,

);
return $exc_rate[$currency];
}


the exchange rate doesn't matter as it's not used yet, just prepared for the future.

Juztme

Thank you very much... I just found it myself too using a seach for USD... Now it working perfectly...


Juztme

Hmm another question, that I have tried to find the answer for... If I want to have the price last in the listbox, where do I do that??

Now it is written like this xx kr. (10x15 cm.) I want it to be 10 x 15 cm. - xx kr.

Is it difficult to get it written like that??

With Kind regards Susanne

Stramm

libs/HTMLElement.class.php
have a look at the function advance_select

Rockas

I'm not sure if this is the right place to ask this but looks like Stramm has private messages disabled.
i would like to know how can i get the full version of this plugin?

thank you for you time and great work
My opinions may change but not the fact that I am right!