Forum Replies Created
- AuthorPosts
- Xpark MediaKeymaster
Use the translation file, to change the names if you created galleries before you may have to refresh your permalink structure. Just save your settings.
Xpark MediaKeymasterwe will provided a fix soon.
January 6, 2014 at 4:39 pm in reply to: Passworded gallery don't ask password and galleries open #56474Xpark MediaKeymasterLooks like it is a but with custom post types in WordPress 3.8, we will to implement a fix on the next release
Xpark MediaKeymaster1. View the post above.
2. We just recently added additional information for most hooks. Please check the documentation page.Xpark MediaKeymasterThe hook changed, use ims_after_add_to_cart_{$action} where $action is “add” or “update”, if you want to use the hook only when the car is updated use ims_after_add_to_cart_update.
If you want to run your function every time use ims_after_add_to_cart
December 28, 2013 at 3:13 pm in reply to: Passworded gallery don't ask password and galleries open #55614Xpark MediaKeymasterif you are an admin or have the access the galleries will not ask you for a password, all other users will be presented with the login form.
if you want to disable the behavior add this code in your functions.php file or in a plugin.
function mytheme_remove_ims_actions(){ global $ImStore; remove_action( 'the_post', array( $ImStore, 'bypass_protected_galleries' ), -1 ); } add_action( 'wp', 'mytheme_remove_ims_actions', 300 );
Xpark MediaKeymasterWe are glad that you were able to find a solution, for future references, in your function you call the global objec $ImStoreCart in the same way you can get access to $ImStore.
global $ImStoreCart, $ImStore;
Xpark MediaKeymasterWe check the customer registration process and it works, the user must opt-in to create a customer account this is for security both the user and the site
December 27, 2013 at 1:34 pm in reply to: link to a certain gallery get redirected to image displaying page #55601Xpark MediaKeymasterif you use the same slug for galleries and image or event other content type you are going to have conflicts.
Make sure that your albums, galleries and images have a unique slug
Xpark MediaKeymasterjcharris,
You are correct, looks like there is an issue with the customer creation, we will look at it and provide a fix on the next release.
for documentation in how to use the hooks, check WordPress Hook API
Xpark MediaKeymasterHow are you setting the error? what you want to do is overwrite the error message, when the cart is updated and there is an error. The plugin will do all the work.
$ImStore->message = false; $ImStore->error ="Error message"
Xpark MediaKeymasterjcharris,
1. Currently there is only documentation for development, and this forum for usage questions.
2. Under settings > payment select “Email notification only”
3. No, there is no items. You can modify the receipt under settings > checkout > receipt message; or use the Image store hooks to provide a custom receipt.
4. The plugin doesn’t have a order tracking system for customers, this can also be implemented by the Image Store hooks.
5. If you use “Email notification only”, the user will be asked for user information and a customer will be created after checkout.
After the user has submitted the order they have an option to register to the site to keep track of their purchased images. Be sure that “Checkout login form” is check under settings > checkout
Xpark MediaKeymasterDo you see the error on the front-end or back-end? is WordPress debug setting on?
We ran a few tests with a clean WordPress installation, the default theme and just Image Store active; we were not able to duplicate the issue.
This could be a PHP configuration on your server, the plugin uses ob_start() to avoid header warnings, be sure your server allows for stackable output buffers.
Xpark MediaKeymasterAnonymous,
what gateway are you using?
Xpark MediaKeymasterYou could use “ims_after_add_to_cart” or “ims_before_save_cart”,
if you use “ims_after_add_to_cart” all processing by image store is completed and saved and you will have to modify the data and save it back again to the database using “update_post_meta( $orderid, ‘_ims_order_data’, $this->cart );”
There other hooks base on specific cart actions
ims_before_save_cart_{$action}
ims_after_add_to_cart_{$action} - AuthorPosts