Xpark Media

Forum Replies Created

Viewing 15 posts - 241 through 255 (of 1,644 total)
  • Author
    Posts
  • in reply to: resizing secure image gallery id #56983
    Xpark Media
    Keymaster

    @Duddlebug,

    To hide the message use .message.login{ display:none} this will hide the message and you can add your own directly in the page.

    Not sure what other display changes you need but a screenshot of what you want will help.

    in reply to: Remove Watermark from Purchased Images? #56958
    Xpark Media
    Keymaster

    @jcharris,

    The download links show only when the user has paid for the images. We have a todo item to allow the administrators to override this per image per user but it is not available just yet.

    What you can do to allow the user to access their images; in the sales menu locate their order and change the payment status from pending to completed

    in reply to: Two Possible Noob Apply_Filters Question #56957
    Xpark Media
    Keymaster

    @jcharris,

    try this, also be sure that you have the customer message enable under settings > checkout > Email receipt.

    function jch_test_function( $message, $email_tags ){
    global $ImStoreCart;
    $message . print_r( $ImStoreCart->cart, true );
    return $message ;
    }
    add_filter( 'ims_customer_message', 'jch_test_function', 50, 2 );
    in reply to: Problem With Gallery Shopping Cart Link #56956
    Xpark Media
    Keymaster

    @jcharris,

    Yes that is correct, is hard to determine what page or url each site will like to use. mysite.com/cart is optional if someone wants to add a link to their theme or menu but it behaves just like the gallery cart link.

    in reply to: How To Add Detailed Receipt For E-Mail Only Checkout #56955
    Xpark Media
    Keymaster

    @jcharris,

    You can generate the links to the images yourself in the ims_customer_message hook. In the function all you have to return is html.

    And since you don’t need to validate payment you don’t need to pass the links to the download.php script.

    but if you still need to use the download script this is how you do it.

    function my_ims_customer_message_function(){
    global $ImStore, $ImStoreCart;
    $message = '<p>start html message</p>';
    foreach ( $ImStoreCart->cart['images'] as $id => $sizes ) {
    $enc = $ImStore->url_encrypt( $id );
    foreach ( $sizes as $size => $colors ) {
    foreach ($colors as $color => $item) {
    if ( $item['download'] )
    $message  .= '<a href="' . esc_attr( IMSTORE_ADMIN_URL ) . "/download.php?$nonce&img=" .
    $enc . "&sz=$size&c=" . $item['color_code'] . '" class="ims-download">' .
    esc_html( get_the_title( $id ) . " " . $item['color_name'] ) . "</a>";
    }
    }
    }
    $message .= '<p>finish html message</p>';
    return $message;
    }
    Xpark Media
    Keymaster

    @jcharris,

    The hook page has an example in how to modify or completely change the form. after you change the form you also need to change the validation function to allow submissions with no price.

    You can use ims_before_post_actions or ims_before_add_to_cart

    in reply to: Email notification #56953
    Xpark Media
    Keymaster

    @cavalini,

    do don’t want to modify the plugin css. There is 2 ways in how to modify the settings and still be able to update the plugin without losing your changes.

    1. you can disable the entire plugin css under settings > general and create your own stylesheet in your theme or another plugin.

    2. another option is just to add additional styles to a child theme. these will override the default styles and still be able to update the theme and plugin.

    in reply to: Image #56951
    Xpark Media
    Keymaster

    @d3ad,

    Glad is working. There were a few bugs on the update process on older version of the plugin, if you were using very old versions maybe the settings did not update properly.

    in reply to: Expiration Date #56950
    Xpark Media
    Keymaster

    @carob,

    Do yo have any issues with cron in your site? We’ll still look at it.

    in reply to: Autopost, Possible feature request #56924
    Xpark Media
    Keymaster

    @hickersonj,

    Yes, this is possible but some development is required. We may release this option as an addOn. This will take a while but we will keep it on our request list.

    in reply to: Popular Widget on page #56923
    Xpark Media
    Keymaster

    @dilshan,

    No, there is no shortcode at the moment but you can use the “the_widget” function to display the widget anywhere on your theme.

    in reply to: Problem when adding item in cart #56921
    Xpark Media
    Keymaster

    @carob,

    we will try to improve the functionality on the next release.

    in reply to: Thumbnails in backend Gallery #56919
    Xpark Media
    Keymaster

    @carob,

    We tested a few escenarios and we couldn’t duplicate the issue.

    What other plugin are you using?
    Do you see any javascript errors in the page?
    If you link to the image directly do you see a 404 page or and error?

    in reply to: Backup / restore image store #56918
    Xpark Media
    Keymaster

    @lch503,

    how are you trying to migrate the site? We recommend moving the entire database as it is an just changing the domain on the options table.

    That way you will not have any problems with the galleries. There is no export tool at the moment.

    Other option is to move the folder gallery and scan each gallery one by one.

    in reply to: Email notification #56917
    Xpark Media
    Keymaster

    What do you mean by the selection button? do you want to add icons? do you know css?

    .img-metadata .ims-label {
    border: none;
    overflow: hidden;
    padding: 5px;
    text-indent: -999em;
    width: 24px;
    background: url("image-url.png") no-repeat 50% 50%;
    }

    You just have to modify/add the css file. we are woking on a premium theme but there are a few bugs that we need to fix before we release it.

Viewing 15 posts - 241 through 255 (of 1,644 total)