Forum Replies Created
- AuthorPosts
-
Xpark Media
KeymasterThank you for the feedback we have added the code in version 3.3.0
Xpark Media
KeymasterThe issue has been fix and stable in version 3.3.0
Xpark Media
KeymasterThis issue has been fix in Image Store 3.3.0
Xpark Media
KeymasterA 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 Media
KeymasterXpark Media
KeymasterTry the new version and see if you still have issues Image Store 3.3.0
Xpark Media
KeymasterYou 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 Media
KeymasterFor 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 Media
KeymasterThe 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 Media
KeymasterUpdate your permalinks, just by clicking update. if you are still having issues set the setting to the defaults
Xpark Media
KeymasterYou 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 Media
KeymasterI 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 Media
Keymaster@ 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 Media
KeymasterCheck 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 Media
KeymasterThe 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