Forum Replies Created
-
AuthorPosts
-
July 17, 2016 at 12:11 am in reply to: WP Photo Seller – buy a bundle of photos in one download #73694
Peter
MemberHi,
No that functionality is not available in this plugin.
We have something else you could possibly use to achieve your aim.
We have the ability to add a special file attachment to specific variations of particular photos.
What you need to do is edit an image (ie, from the gallery settings, click the “edit” link)
Once inside the image edit screen scroll down and you will see a section called “Image Attachment Settings”.
Using these settings you can upload your zip file and it will be sent to the buyer when they buy that particular photo/variation combination.
July 16, 2016 at 7:27 am in reply to: WP Photo Seller – Customer receiving download link after payment #73690Peter
MemberHi,
Have you configured photo seller properly so that download links can be shown on thank you page?
You need to:
– go to Settings >> Advanced Settings >> Thank You Page Settings
You have to enable “Display Download Links & Purchase Info On Thankyou Page”
– you need to enter the required tags which will display the links.
Eg:
Any items to be shipped will be processed as soon as possible, any items that can be downloaded can be downloaded using the encrypted links below.
{product_link_digital_items_only}
July 15, 2016 at 10:27 am in reply to: WP Photo Seller – Customer receiving download link after payment #73688Peter
MemberCan you please double-check the following:
Log into your paypal account and check the following settings:
1) “Auto Return” (this should be enabled)
2) “Payment Data Transfer” (this should be enabled)
3) “Instant Payment Notification (IPN)” (this should be enabled).
4) UTF-8 formatting enabled as per https://support.tipsandtricks-hq.com/forums/topic/some-characters-and-text-not-recognizable-in-the-notification-email
Photo seller side:
1) In Payment Gateway Settings make sure you have entered your paypal email and also the correct PDT identity token.
Also please enable logging for the photo seller:
Go to Settings and scroll to bottom and set “Enable Logging” to yes.
Peter
MemberI have emailed you so you can send me an example of your zip file with 10 photos so I can try a test.
July 13, 2016 at 1:14 am in reply to: WP Photo Sheller Template 4 – Thumbnail Size Change – Bulk Import #73639Peter
MemberOk I have a better way to do this thumbnail change and it doesn’t require you to mess with the photo seller.
I have sent you a copy of a newer version which contains a filter.
You will need to add some code to your theme’s functions.php file.
The following is what you will need to add to your functions.php:
add_filter( 'wps_template4_thumb_path', 'change_template4_thumb', 10, 7 );
function change_template4_thumb( $thumb_url, $image_file_path, $source_dir, $source_dir_url, $special_image_dir, $image_id, $gallery_id ){
$path_info = pathinfo($image_file_path);
$thumb_name = $path_info['filename'].'-259x259.'.$path_info['extension'];
$thumb_path = $source_dir . $thumb_name;
//create a thumb for front end
if(!file_exists($thumb_path)){
$thumb_in_special_dir = $source_dir .'/'.$special_image_dir.'/'.$thumb_name;
if(file_exists($thumb_in_special_dir)){
//simply copy this file to this gallery's root dir
copy($thumb_in_special_dir, $thumb_path);
}else{
$resized_file = image_make_intermediate_size($image_file_path, '259', '259', true); //Make a thumb
if(!$resized_file){
//failed!
return $thumb_url;
}else{
//We need to copy the newly created thumb from special folder to root folder
copy($thumb_in_special_dir, $thumb_path);
}
$thumb_url = $source_dir_url.$thumb_name;
}
}else{
$thumb_url = $source_dir_url.$thumb_name;
}
return $thumb_url;
}The above will produce 259×259 thumbnails. (I tested it and it works)
Then you will need to produce your own custom CSS to make the 150 size boxes larger.
July 13, 2016 at 1:06 am in reply to: problem getting from detail page to cart and then to checkout #66866Peter
MemberI’ve sent you an email.
July 13, 2016 at 12:58 am in reply to: problem getting from detail page to cart and then to checkout #66865Peter
MemberI see that you still have 2.1.3 of the photo seller installed.
Did you get the latest version?
July 13, 2016 at 12:19 am in reply to: problem getting from detail page to cart and then to checkout #66863Peter
MemberPlease create a dummy gallery for me which has a photo price of $0.01 and then send me the link to that gallery and I will make a full purchase to see the behaviour.
July 12, 2016 at 12:51 pm in reply to: WP Photo Sheller Template 4 – Thumbnail Size Change – Bulk Import #73637Peter
MemberPlease note that we do not support any changes made to the core plugin code.
Also, you will lose those changes if you ever upgrade this plugin to a future release.
In other words if you want to modify the code that’s fine but as long as you understand that we cannot provide support for those changes.
Peter
MemberHi,
I misunderstood you the first time – I thought you wanted a cart widget or link.
So back to your original issue:
Your theme is hiding the buttons in the info box after you add a photo to the cart.
To fix this add the following custom css:
.wps_photo_details_view_cart, .wps_photo_details_continue_shopping{
opacity: 1 !important;
display: inline !important;
}July 12, 2016 at 5:12 am in reply to: WP Photo Sheller Template 4 – Thumbnail Size Change – Bulk Import #73634Peter
Memberbut i think i have to change it at the upload function. in which file i will find the code?
No it’s more complicated than that.
I will need to examine the code more carefully to see if it is possible to add some filters instead.
July 12, 2016 at 4:47 am in reply to: WP Photo Seller, layout issues on Product page and in Cart CSS fixes not working #73670Peter
MemberYou’ll find that if you manually refresh the page on either your photo details or cart page, you will suddenly see that most of the page displays correctly.
The reason for the problem in the first place is because your theme is initially loading the photo seller pages using ajax and hence this is bypassing the proper loading needed for our plugin to load the styles etc.
I would like to try a test:
Your theme is using a special jquery plugin called PJAX. I believe this can be disabled in your theme.
Can you please ask your theme developer how to disable the “PJAX” functionality?
July 12, 2016 at 2:28 am in reply to: problem getting from detail page to cart and then to checkout #66859Peter
MemberI also forgot to say that in addition to my previous steps you should also get the latest version of the plugin:
https://support.tipsandtricks-hq.com/forums/topic/re-install-or-load-a-fresh-build-of-the-plugins
July 12, 2016 at 2:20 am in reply to: problem getting from detail page to cart and then to checkout #66857Peter
MemberCan you check the Photo Seller orders menu – do you see any orders in there?
If you do see the recent orders but got no email for them then you should perform the following steps:
July 11, 2016 at 10:33 pm in reply to: problem getting from detail page to cart and then to checkout #66855Peter
MemberPlease check that you have the following configured correctly:
Log into your paypal account and check the following settings:
1) “Auto Return” (this should be enabled)
2) “Payment Data Transfer” (this should be enabled)
3) “Instant Payment Notification (IPN)” (this should be enabled).
4) make sure that UTF-8 formatting is enabled as per https://support.tipsandtricks-hq.com/forums/topic/some-characters-and-text-not-recognizable-in-the-notification-email
Photo seller side:
1) In Payment Gateway Settings make sure you have entered your paypal email and also the PDT identity token.
-
AuthorPosts