Xpark Media

Forum Replies Created

Viewing 15 posts - 466 through 480 (of 1,644 total)
  • Author
    Posts
  • in reply to: Sales amount not showing #54511
    Xpark Media
    Keymaster

    It may be a bug on the display function. You said that you can see the right price on the details page correct?

    We will look at it.

    in reply to: Download link not working in galleries #54510
    Xpark Media
    Keymaster

    @d3ad,

    You need to provide a link to the file, not the attachment page. Two ways to do it using the plugin’s hooks or modify the attachment template to add the link.

    you can get the image values by using the function get_post_meta( $image->ID, '_wp_attachment_metadata', true );

    in reply to: Problem Gateway PagSeguro Shipping #54508
    Xpark Media
    Keymaster

    @Jhonathan,

    give us a few days to look at it.

    in reply to: Need Help with Photo Album – not working 3.3.1 #54506
    Xpark Media
    Keymaster

    @gdisalvo,

    we checked the short code for albums and it is working fine. What theme and plugins are you using?

    did you tried deactivating the plugins one by one to see if there any conflict? check the shortcode is this what you are using [image-store album=ALBUM_ID]

    What sort order are you using for your albums?

    in reply to: Help changing text links by images in im store links #54455
    Xpark Media
    Keymaster

    @danielgm,

    The plugin uses it’s on hooks just like WordPress to allow you to make modification without editing the code. That way you can update the plugin at any time.

    You can use is these two hooks

    function  change_image_store_links( $link, $data ){
    if( $data[ 'value' ] == 'something'  ){
    // modify link here
    $link = "my-new-link";
    }
    return $link;
    }
    add_filter( 'ims_image_link', 'change_image_store_links' )
    

    You can use add_filter( 'ims_image_data', 'my_function' ) to modify the data provided in the previous function.

    You can add additional links by using add_filter( 'ims_image_tag_meta', 'my_function' )

    I hope this helps

    in reply to: Automatic price groups… #54454
    Xpark Media
    Keymaster

    @WebDreamsAgency,

    not at the moment. What you can do is set up different price list and create galleries base on the image size and assign the right price list to the correct gallery.

    I know this is probably not the best option but Image Store doesn’t assign price base on images, it uses galleries instead.

    in reply to: Problem Gateway PagSeguro Shipping #54453
    Xpark Media
    Keymaster

    @Jhonathan,

    PagSeguro is still in a beta face, is there any way you can provide access to your test environment to see the problem?

    you can send the information to [email protected]

    in reply to: Add to cart popup not seeig properly on iphone. #54451
    Xpark Media
    Keymaster

    change the code to this

    @media only screen and( max-width:960px ) {
    #touch-overlay { overflow: scroll; }
    }
    in reply to: Notice with WordPress 3.6 Update #54450
    Xpark Media
    Keymaster

    We are aware of the issues with php notifications, but it should not show if you have the WP_DEBUG option off, if any other plugin is activating this option by default they have big issues.

    We were busy updating our site as you can see but we will release a fix for the php notices in a few days and we will look at php download issue.

    In the mean try just update an option in the image store plugin that should update any cache on the images that is if you guys are not using any other cache plugin.

    in reply to: Sales do not appear in Dashboard! help! #54449
    Xpark Media
    Keymaster

    @nadia,

    We couldn’t find any issues with the notification process. Check a few things

    • server logs
    • check for a file “ipn_log.txt” inside the image store folder. this is indication of incomplete transactions.
    • check your PayPal account be sure you don’t have a IPN path added to your account this will overwrite the path set by the plugin.
    in reply to: HTTP Error #54099
    Xpark Media
    Keymaster

    @artvesta,

    what php version are you running on the server?
    if you activate wp_debug what error do you see?
    What other plugins are you using?

    in reply to: Sales do not appear in Dashboard! help! #54098
    Xpark Media
    Keymaster

    @nadina,

    what other plugin are you using and what theme? we will look at the issue.

    in reply to: Notice with WordPress 3.6 Update #54096
    Xpark Media
    Keymaster

    @carob,

    You should not operate your live site with the wp_debug on. This is not a major issue and should not cause problems if you deactivate debug mode.

    The notice will be remove on the next release

    in reply to: Issues with Additional Comments and Sales Panel #54063
    Xpark Media
    Keymaster

    @rivercityphotography,

    there is not much we can do without additional information, like theme and other plugins that you are using.

    Did you try deactivating some of the other plugin to see if there is an issue? if your server is rejecting all pins none of the data including email notifications will work.

    in reply to: Most Viewed tab stopped working recently #54062
    Xpark Media
    Keymaster

    @stevivor,

    did you update the plugin? if you did you may have download it a corrupt version of the plugin please try downloading the plugin update again.

Viewing 15 posts - 466 through 480 (of 1,644 total)