Forum Replies Created
- AuthorPosts
- Xpark MediaKeymaster
Thank you for the feedback we have added the code in version 3.3.0
Xpark MediaKeymasterThe issue has been fix and stable in version 3.3.0
Xpark MediaKeymasterThis issue has been fix in Image Store 3.3.0
Xpark MediaKeymasterA correction here there is a ims-image.php, but this file works most of part with the default WordPress themes, you can use this file to create your own template and be sure that the template is translatable.
Xpark MediaKeymasterXpark MediaKeymasterTry the new version and see if you still have issues Image Store 3.3.0
Xpark MediaKeymasterYou can create a plugin to remove the images once they are uploaded, we recently did it for one of our clients, modify it as needed.
function ims_delete_original_image( $metadata, $attachment_id ){ if (empty($metadata['file']) || 'ims_image' != get_post_type($attachment_id) ) return $metadata; if( file_exists( $metadata['file'] )) @unlink( $metadata['file'] ); return $metadata; } add_filter('wp_generate_attachment_metadata','ims_delete_original_image');
Xpark MediaKeymasterFor layout issues you shouldn’t have to edit any PHP files, use cases to fix any issues.
You can add the styles to your theme or include a new stylesheet to fix the issues. Also if you want to complete restyle all the image store pages you can deactivate the default stylesheet under settings > general > Use CSS.
If you still want to modify the files we suggest using a secondary plugin so that you can update the plugin for future leases.
Use the filter “ims_order_form_path” to use the modified version
Xpark MediaKeymasterThe with the new Image store version 3.3.0 user will be allowed to create a “customer” account. If you want to allow them to create galleries you will need to install a roles plugin and allow the “customer” role to create galleries.
Xpark MediaKeymasterUpdate your permalinks, just by clicking update. if you are still having issues set the setting to the defaults
Xpark MediaKeymasterYou are right, at the moment this is not a setting, by default it should use caption and then title but it is not. We will try to fix this issue in the next release.
Xpark MediaKeymasterI think you just need to update your permalinks, is this link an album or gallery?
If it is a gallery you may have permission problems set all they setting to the default.
you can also try testing Image Store 3.3.0 RC1
Xpark MediaKeymaster@ tax87,
This is user permission problems, what role are you using to create the galleries?
If you are using the permission options in the plugin, there is an issue using ImStore 3.2.9 and WP 3.5.0+.
We have corrected the issue and the fix will be available in the next release. At this moment what you can do is install a roles plugin and assign the right permissions.
Xpark MediaKeymasterCheck two things, make sure that the price list you are updating is the list assigned to the gallery in the “Gallery information” metabox.
Do you have a cache plugin? Clear the cache.
To move items in the price list just click and drag the price row.
Xpark MediaKeymasterThe template options are controlled by the theme you are using, I am afraid if you don’t have additional option you will need to create a gallery template or an additional WordPress page template.
- AuthorPosts