Forum Replies Created
- AuthorPosts
-
Xpark Media
KeymasterThis is an issue with the e-commerce plugin it loads on all custom post types and it shouldn’t; specially when other plugin are making ajax calls. We have recently helped a customer with this issue.
Add this code in the functions.php file of your theme or create a plugin.
function ims_fix_issue_wp_ecommerce( $filepath ){ remove_filter('wp_insert_post_data','wpsc_pre_update', 99, 2 ); remove_action( 'save_post', 'wpsc_admin_submit_product', 10, 2 ); return $filepath; } add_action( 'ims_before_read_image', 'ims_fix_issue_wp_ecommerce');
Xpark Media
KeymasterThe field is not the problem looks like you just have to do some css ajustments for the fields to align properly.
Xpark Media
Keymasterthe gallery is no longer there, but if you updated from a very old version there were a few css changes.
Xpark Media
Keymasteryour files are there but you may have a function error or missing links on your footer or a file before the footer.
Check your error log.
Xpark Media
KeymasterThe plugin uses a method called “lazy load”, to improve the load of multiple images in one page using javascript.
With that said, I checked your site and images are loading, but there are a few Javacript errors that may cause problems.
Xpark Media
Keymasterwe fixed the issue and it will be part of the next release
Xpark Media
KeymasterDo you have a memory or bandwidth limit with your hosting?
That happens because the images are returning a 500 error, but you are right they are different images at different times. Check also your server log for errors.
A cache plugin could help with memory or load issues , be sure to cache the ?i= query string.
Implementation of CloudFlare could also help.
Xpark Media
KeymasterPlease, send a list of your requirements to [email protected] to provide you with an accurate quote.
Xpark Media
KeymasterYou have a major problem with your theme HTML page, notice that you and tags are missing.
Image store uses a lazy load script to load the image to improve performance, but since your page is not properly formatted it thinks that you page did loaded and it never runs.
Please check your theme for any problems and missing template files.
Xpark Media
KeymasterThank you for the feedback it will be corrected on the next release.
Xpark Media
KeymasterProvably we will never implement this as a default option, but you can use the Image Store API, to create a separate plugin or add this to your theme.
You could use the “ims_image_tag_meta” filter to add the like button.
Xpark Media
KeymasterThanks for the feedback we can confirm that there is a bug on the album short-code, it will be fixed in the next release.
on the note if you are adding values directly to a mysql query be sure to scape to avoid database injections
Xpark Media
KeymasterHere you go, add it to your child theme style.css file
.ims-shopping-cart .ims-table tfoot tr.row:nth-child(2n){ display: none}
Xpark Media
KeymasterYou can try using the post_save hook to try to change the permissions once the gallery is saved. This will only work if the images are being saved of course.
We will look at our end too to see if we can do something about it
Xpark Media
KeymasterWe will look at the option but we will not be implemented for a while. If you need it right assay you can have a developer add the option using image store’s API.
For the catalog, just create a price list without any options like shipping, color, etc and add a image size with 0 price and hide or disable pages and fields that you don’t need.
For the zip download this is not an option but is easy to implement using the API, a few months ago we implemented this option for a customer
- AuthorPosts