Forum Replies Created
-
AuthorPosts
-
Peter
MemberYes the plugin will read exif and iptc data from an uploaded image.
There is also a setting in the “advanced settings” section called “Display IPTC Keywords”
Peter
MemberI logged in to your wordpress site and I regenerated some of the photo seller pages.
Please do not delete the photo seller pages such as the “photo details” and “ipn” etc. These are important for the operation of this plugin.
You main gallery page is this:
[http://www.maricult-photo.com/photogallery/]
Everything appears to working fine except that your problem is that your server does not have enough PHP memory to do some of the watermarking. Here is a log I saw:
[15-Oct-2015 16:44:16] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 4140 bytes) in /home1/maricult/public_html/maricultphoto/wp-content/plugins/wp-photo-seller/models/WPSCommon.php on line 2515
You will need to talk to your host provider and ask them to increase the PHP memory_limit to 256M or 512M.
Peter
MemberHi, We will send you an email to get login information so we can take a closer look.
October 11, 2015 at 8:25 am in reply to: Photo Seller – Misplaced Checkbox for Terms and Conditions #71549Peter
MemberThe address field and the comment fields look oddly tiny.
The following custom CSS will fix this:
#wps_manual_payment .pure-input-1{
width: 100% !important;
}Peter
MemberDo you have another photo gallery plugin active together with the photo seller plugin?
Have you deleted any pages or modified the short code in the “photo details” page?
Peter
MemberThe “Pickup order from the store” with checkbox is showing on mobile, when it isn’t selected to do so and isn’t present on desktop
Will go through the code and look at this and get back to you on monday.
the paypal is default again on mobile only
The mods to this are virtually the same as before. Just open the mob-cart-wps.php file swap around the if statements exactly as before.
October 9, 2015 at 11:53 pm in reply to: Photo Seller – gallery works but individual hi res images not all showing #61960Peter
MemberThose logs are coming from the photo seller plugin. Your server logs would provide more details if you are running out memory.
Can you please check your server’s php error_log file? (ask your host provider to help you find that file)
Memory is 128 is that enough?
It probably isn’t – put it up to 256M and see if that fixes things.
October 9, 2015 at 3:05 am in reply to: Photo Seller – Misplaced Checkbox for Terms and Conditions #71547Peter
MemberGlad I was able to help.
October 9, 2015 at 12:50 am in reply to: Photo Seller – Misplaced Checkbox for Terms and Conditions #71545Peter
MemberPlease make sure that you have installed the version of the plugin I sent you AND also that you have added the custom CSS code I gave you and then let me know so I can look at that page.
October 9, 2015 at 12:20 am in reply to: Photo Seller – Misplaced Checkbox for Terms and Conditions #71543Peter
MemberI’ve sent you an email.
Peter
MemberHi,
Yes this is available in the current live version.
Just in case, grab the latest version:
https://support.tipsandtricks-hq.com/forums/topic/re-install-or-load-a-fresh-build-of-the-plugins
October 6, 2015 at 11:15 pm in reply to: Photo Seller – gallery works but individual hi res images not all showing #61958Peter
MemberIt is likely that your server doesn’t have enough memory to create a watermarked photo.
Check your server log file for logs pertaining to memory being exhausted.
Peter
MemberWe’ve never really had an issue with this before.
I don’t recommend changing the core code because if and when you update the plugin you will lose your changes and you’ll need to keep modifying the files again.
But if you really must, then open the following file:
wp-photo-sellerviewscart-wps-new-tabular.php
find the following code (around line 649):
if(WPSSetting::getValue('use_paypal_standard_checkout') == 'on')
{
echo '<option value="paypalCheckout">'.__('Paypal Checkout','WPS').'</option>';
}
if(WPSSetting::getValue('use_manual_checkout') == 'on')
{
echo '<option value="manualCheckout">'.__('Manual Checkout','WPS').'</option>';
}Swap the if statements around so that they are as follows:
if(WPSSetting::getValue('use_manual_checkout') == 'on')
{
echo '<option value="manualCheckout">'.__('Manual Checkout','WPS').'</option>';
}
if(WPSSetting::getValue('use_paypal_standard_checkout') == 'on')
{
echo '<option value="paypalCheckout">'.__('Paypal Checkout','WPS').'</option>';
}NOTE and disclaimer: We do not support customisations to our code so if you decide to change the code and there are issues then you will need to change it back.
Peter
MemberHmm….your theme is making the input width too small.
Ok delete the customm css code I gave you earlier and replace with this:
.wps_digital_details_table .qtyInput{
min-width: 5em !important;
}Note: chaned “max-width” to “min-width”. If the above is still too small bump up to 7 but I think 5em should be ok.
Peter
MemberI see what you mean. I think you will need to tweak that 7em value and maybe bump it up so that you can view more than 1 character in the quantity column. Try 9em.
-
AuthorPosts