Forum Replies Created
-
AuthorPosts
-
Xpark MediaKeymaster
omarf,
The system doesn’t generate a receipt email since the user doesn’t provide any payment information. The email notification option is more of a manual process.
I guess the customer can still receive an email with a list of purchased items but they will not receive download links
Xpark MediaKeymasterTake a look at this post Thumbnails link broken
Xpark MediaKeymasterWill look at it, I been thinking to replace the currently gallery script for something that is more HTML5/mobile friendly anyway.
If I find the problem it will be resolve on the next release.
Xpark MediaKeymasteryes, you could but not through the settings you will have to add something on the cart or use the Image Store API to make the change
Xpark MediaKeymasterI am looking at this issue.
one thing that you guys should know is if paypal or google is unable to process the payment or if the payment has a pending status the links are not generated until the payment is approve.
if your customers are not getting the email advice them to check their spam box.
Some hosting companies restrict emails created by php, your server should have a registered email address that looks like this [email protected]
One other thing, check is your image sizes make sure that you are using pixel for downloadable image and that the images that you are uploading are big enough.
Image sizes will work better if you name them using the image dimensions something like 20×20 16×26
Xpark MediaKeymasterDuplication > No Download Links and Order Receipt Mail to Customer
Xpark MediaKeymasterXpark MediaKeymastersettings > slideshow
Xpark MediaKeymasterwhat version of the plugin are you using this was an issue on 3.0.6
take a look at this post for more information: Image Store doesn’t work after upgrade
Xpark MediaKeymasterwhat version of the plugin are you using? what list are not woking? receipt, email to customer, paypay or gogle checkout?
Xpark MediaKeymasterchange your php notification settings or change the following links in the image.php file
$ext = end( explode( '.', basename( $this->image_dir ) ) );
for
$extarray = explode( '.', basename( $this->image_dir ) ); $ext = end( $extarray );
do_action( 'ims_apply_color_filter', &$image );
for
do_action( 'ims_apply_color_filter', $image );
May 21, 2012 at 2:50 am in reply to: Heading links (Photos, Favorites, Exit…) not working (returns 404 error) #47187Xpark MediaKeymasterRefresh your permalink structure,
Xpark MediaKeymasterThe folders that you have to check is image-store/admin/key and the folder where you are saving the images . Also make sure that your hosting company has all the PHP GD libraries anable.
Check your error logs and the image.php file inside the image store plugin
May 18, 2012 at 2:04 am in reply to: Are other payment gateways supported other than Paypal or Google Checkout? #47148Xpark MediaKeymasterThere is “other” option that will allow you to past information via GET or POST data to your gateway but will need to do some testing.
If the gateways do not accept GET or POST modifications to the plugin are needed using the image store plugin API
Xpark MediaKeymasterSteve,
Here a list of the items needed to support PDF.
– Modify the file types allow.
– Modify the image/file upload and download script
– File sizes and pricing, pdf don’t need file dimensions.
– Image links for previewa good alternative will be to add a file download field to each image that way you can still just upload a image but when the user downloads the file it down load a pdf instead of the image.
-
AuthorPosts