Xpark Media

Forum Replies Created

Viewing 15 posts - 301 through 315 (of 1,644 total)
  • Author
    Posts
  • in reply to: Photos name #56476
    Xpark Media
    Keymaster

    @andrew,

    Use the translation file, to change the names if you created galleries before you may have to refresh your permalink structure. Just save your settings.

    in reply to: Gallery unprotected – not asking for password #56475
    Xpark Media
    Keymaster

    @darknight,

    we will provided a fix soon.

    in reply to: Passworded gallery don't ask password and galleries open #56474
    Xpark Media
    Keymaster

    @kiyama,

    Looks like it is a but with custom post types in WordPress 3.8, we will to implement a fix on the next release

    in reply to: Problems With Checkout Process #56473
    Xpark Media
    Keymaster

    @jcharris,

    1. View the post above.
    2. We just recently added additional information for most hooks. Please check the documentation page.

    in reply to: ims_after_update_cart hook #55615
    Xpark Media
    Keymaster

    @lch503,

    The hook changed, use ims_after_add_to_cart_{$action} where $action is “add” or “update”, if you want to use the hook only when the car is updated use ims_after_add_to_cart_update.

    If you want to run your function every time use ims_after_add_to_cart

    in reply to: Passworded gallery don't ask password and galleries open #55614
    Xpark Media
    Keymaster

    @kiyama,

    if you are an admin or have the access the galleries will not ask you for a password, all other users will be presented with the login form.

    if you want to disable the behavior add this code in your functions.php file or in a plugin.

    function mytheme_remove_ims_actions(){
    global $ImStore;
    remove_action( 'the_post', array( $ImStore, 'bypass_protected_galleries' ), -1 );
    }
    add_action( 'wp', 'mytheme_remove_ims_actions', 300 );
    
    in reply to: CD Implementation #55612
    Xpark Media
    Keymaster

    @lch503,

    We are glad that you were able to find a solution, for future references, in your function you call the global objec $ImStoreCart in the same way you can get access to $ImStore.

    global $ImStoreCart, $ImStore; 
    in reply to: Problems With Checkout Process #55602
    Xpark Media
    Keymaster

    We check the customer registration process and it works, the user must opt-in to create a customer account this is for security both the user and the site

    Xpark Media
    Keymaster

    @kiyama,

    if you use the same slug for galleries and image or event other content type you are going to have conflicts.

    Make sure that your albums, galleries and images have a unique slug

    in reply to: Problems With Checkout Process #55600
    Xpark Media
    Keymaster

    jcharris,

    You are correct, looks like there is an issue with the customer creation, we will look at it and provide a fix on the next release.

    for documentation in how to use the hooks, check WordPress Hook API

    in reply to: CD Implementation #55598
    Xpark Media
    Keymaster

    How are you setting the error? what you want to do is overwrite the error message, when the cart is updated and there is an error. The plugin will do all the work.

    $ImStore->message = false;
    $ImStore->error ="Error message"
    in reply to: Problems With Checkout Process #55581
    Xpark Media
    Keymaster

    jcharris,

    1. Currently there is only documentation for development, and this forum for usage questions.

    2. Under settings > payment select “Email notification only”

    3. No, there is no items. You can modify the receipt under settings > checkout > receipt message; or use the Image store hooks to provide a custom receipt.

    4. The plugin doesn’t have a order tracking system for customers, this can also be implemented by the Image Store hooks.

    5. If you use “Email notification only”, the user will be asked for user information and a customer will be created after checkout.

    After the user has submitted the order they have an option to register to the site to keep track of their purchased images. Be sure that “Checkout login form” is check under settings > checkout

    in reply to: PHP Warning #55576
    Xpark Media
    Keymaster

    @lch503,

    Do you see the error on the front-end or back-end? is WordPress debug setting on?

    We ran a few tests with a clean WordPress installation, the default theme and just Image Store active; we were not able to duplicate the issue.

    This could be a PHP configuration on your server, the plugin uses ob_start() to avoid header warnings, be sure your server allows for stackable output buffers.

    in reply to: ver 3.4 does not work with WP 3.8 #55565
    Xpark Media
    Keymaster

    Anonymous,

    what gateway are you using?

    in reply to: CD Implementation #55564
    Xpark Media
    Keymaster

    @lch503,

    You could use “ims_after_add_to_cart” or “ims_before_save_cart”,

    if you use “ims_after_add_to_cart” all processing by image store is completed and saved and you will have to modify the data and save it back again to the database using “update_post_meta( $orderid, ‘_ims_order_data’, $this->cart );”

    There other hooks base on specific cart actions

    ims_before_save_cart_{$action}
    ims_after_add_to_cart_{$action}

Viewing 15 posts - 301 through 315 (of 1,644 total)