Forum Replies Created
- AuthorPosts
- Xpark MediaKeymaster
how big are your images? the script may be running out of memory. this will show in you php error log.
Try reseting the settings to the defaults. and changing the settings one by one
February 18, 2014 at 9:51 pm in reply to: Is it possible to remove the window size selection and quantity? #56913Xpark MediaKeymasteryou can use the “ims_before_order_form” to completely modify the form.
February 14, 2014 at 12:44 am in reply to: Problem with name gallery and with gallery deleted #56897Xpark MediaKeymasterthat is correct. do you have any other plugins installed. Try uninstalling and installing one by one to see if it’s a conflict with another plugin.
February 14, 2014 at 12:41 am in reply to: Is it possible to remove the window size selection and quantity? #56896Xpark MediaKeymasterdid you try using the setting above?
Xpark MediaKeymasterYou want to change the permissions on the folder where you are saving the galleries, and be sure all new directories will inherit them.
Yes, you want to use a ftp application or command line.
This is how you can turn on debug mode on wordpress, but before you do it check your php log for any errors from the image store plugin. You can ask your hosting company where the file is located
Xpark MediaKeymasterTry reseting all values to the default and set everything again. It could be a settings issue.
if you are using and ftp software there usually and info window or a permission tab, you want to allow the all user to read the content.
Xpark MediaKeymastercheck the file permission here you are saving your images. If you view the image link directly what do you see, a 404 page or an error?
Xpark MediaKeymasterCheck your file permissions, the link url are retuning black images. Also check your php log for error. If you see anything please provide the information.
http://www.cmfphotographie.com/wp-content/plugins/image-store/image.php?i=gIZwjp2eq4qk
Xpark MediaKeymasteryou can change the size of the fields using css if you have worked with css. you want to add this to your child theme so you don’t lose the changes when you update your theme or image store.
If you need help with the css rules please provide a link to your site.
add this code in your child theme or into a plugin, and change the wording “To view your images please enter your login information below”. You canl also change the html if you know how.
function theme_change_imstore_login_user_form( $form, $gallery ){ $gallery_label = "ims-galbox-{$gallery->ID}"; $password_label = "ims-pwdbox-{$gallery->ID}"; $nonce = wp_create_nonce( 'ims_access_form' ); $output = '<form action="' . get_permalink( $gallery->ID ) . '" method="post"> <p class="message login">' . __( "To view your images please enter your login information below:", 'ims' ) . '</p> <div class="ims-fields"> <label for="' . $gallery_label . '">' . __("Gallery ID:", 'ims') . '</label> <input type="text" id="' . $gallery_label . '" name="' . $gallery_label . '" /><span class="linebreak"></span> <label for="' . $password_label . '">' . __("Password:", 'ims') . ' </label> <input name="' . $password_label . '" id="' . $password_label . '" type="password" /> <span class="linebreak"></span> <input type="submit" name="login-imstore" value="' . esc_attr__("log in", 'ims') . '" /> <input type="hidden" name="_wpnonce" value="' . esc_attr( $nonce ) . '" /> ' . apply_filters( 'ims_after_login_form', '' ) . ' </div> </form> '; return $output; } add_filter( 'ims_login_form', 'theme_change_imstore_login_user_form', 50, 2 );
Xpark MediaKeymasterit is normal that the gallery name will not match the folder name. If you look at the Gallery infor metabox you can see where you can control the name of the gallery directory.
The second is not normal. We will look into it. Do you see any php errors on your server? what are the permissions on the directories 600, 755 or other?
February 8, 2014 at 9:40 am in reply to: Is it possible to remove the window size selection and quantity? #56856Xpark MediaKeymasterYou could do it using Image Store Hook’s. But if you want a way to do it just by modifying the settings this is what you can do.
Create a new price list. Add one image size with the $0 cost.
For the payment gateway use email notification only.
All new galleries be sure to use the $0 cost price list.Xpark MediaKeymasterThere is only two ways to log out of galleries using the gallery url.
domain.com/gallery-name/logout
Ex: xparkmedia.com/galleries/chinese-year-2013/logoutor from the cart page if you are using it.
domain.com/cart/logoutOr do you want to redirect the user after logout?
Xpark MediaKeymasterlooks like the issue is the slow performance in the site. The ajax call doesn’t update properly. Try updating the store.js file in the _js folder with this file store.js
Xpark MediaKeymasterit does, but we are willing to look at your dev site to see if there is a conflict with another plugin or theme.
Xpark MediaKeymasterdo you have a test site that we can look at?
The download option should work if the payment is valid an you are not using the “email notification”.
- AuthorPosts