Xpark Media

Forum Replies Created

Viewing 15 posts - 616 through 630 (of 1,644 total)
  • Author
    Posts
  • in reply to: Upload error since last update #53114
    Xpark Media
    Keymaster

    This 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');
    
    in reply to: country field in shipping info #53113
    Xpark Media
    Keymaster

    @Deep,

    The field is not the problem looks like you just have to do some css ajustments for the fields to align properly.

    in reply to: Image store not compatible with my theme (CSS problem) #53112
    Xpark Media
    Keymaster

    @Evan,

    the gallery is no longer there, but if you updated from a very old version there were a few css changes.

    in reply to: Images are not shown on the child theme #53111
    Xpark Media
    Keymaster

    @tabaibamedia,

    your 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.

    in reply to: Thumbnails not always loading #53069
    Xpark Media
    Keymaster

    @chrisb,

    The 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.

    in reply to: Internet Explorer – IM Insert removes content #53058
    Xpark Media
    Keymaster

    we fixed the issue and it will be part of the next release

    in reply to: Thumbnails not always loading #53051
    Xpark Media
    Keymaster

    @franklin82,

    Do 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.

    Screen Shot 2013-05-12 at 12.45.07 AM

    A cache plugin could help with memory or load issues , be sure to cache the ?i= query string.

    Implementation of CloudFlare could also help.

     

    in reply to: Member account #53050
    Xpark Media
    Keymaster

    @mililaw,

    Please, send a list of your requirements to [email protected] to provide you with an accurate quote.

    in reply to: Images are not shown on the child theme #53049
    Xpark Media
    Keymaster

    @tabaibamedia,

    You 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.

    in reply to: Sales not filtering #53047
    Xpark Media
    Keymaster

    @lch503,

    Thank you for the feedback it will be corrected on the next release.

    in reply to: Share botton on all content #53046
    Xpark Media
    Keymaster

    @jbbcs,

    Provably 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.

    in reply to: Dynamic Shortcode for Client Area #53045
    Xpark Media
    Keymaster

    @chrisb,

    Thanks 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

    in reply to: Disabling Promotional code #53044
    Xpark Media
    Keymaster

    Here you go, add it to your child theme style.css file

     .ims-shopping-cart .ims-table tfoot tr.row:nth-child(2n){ display: none}
    in reply to: Sales Page #53041
    Xpark Media
    Keymaster

    @franklin82,

    You 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

    in reply to: Member account #53040
    Xpark Media
    Keymaster

    @mililaw,

    We 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

Viewing 15 posts - 616 through 630 (of 1,644 total)