Forum Replies Created
- AuthorPosts
- Xpark MediaKeymaster
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.
Xpark MediaKeymasterThe 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
Xpark MediaKeymastertry 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 );
Xpark MediaKeymasterYes 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.
February 22, 2014 at 10:24 am in reply to: How To Add Detailed Receipt For E-Mail Only Checkout #56955Xpark MediaKeymasterYou 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; }
February 22, 2014 at 10:15 am in reply to: Is it possible to remove the window size selection and quantity? #56954Xpark MediaKeymasterThe 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
Xpark MediaKeymasterdo 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.
Xpark MediaKeymasterGlad 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.
Xpark MediaKeymasterDo yo have any issues with cron in your site? We’ll still look at it.
Xpark MediaKeymasterYes, 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.
Xpark MediaKeymasterNo, there is no shortcode at the moment but you can use the “the_widget” function to display the widget anywhere on your theme.
Xpark MediaKeymasterwe will try to improve the functionality on the next release.
Xpark MediaKeymasterWe 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?Xpark MediaKeymasterhow 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.
Xpark MediaKeymasterWhat 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.
- AuthorPosts