Forum Replies Created
- AuthorPosts
- April 24, 2013 at 10:07 pm in reply to: I would like to display a photo title on a thank you message #52781Xpark MediaKeymaster
no, you currently can’t. You will have to create you own template using the “ims_customer_message” filter
Xpark MediaKeymasterThe issue has been fixed in version 3.2.6
Xpark MediaKeymasterthere is 3 ways to do it.
1. create a templage for the galleries and add the code “single-ims_gallery.php or content-ims_gallery.php”
2. use a hook to add the content at the bottom of the gallery:
function ims_after_page_function(){ } add_filter('ims_after_page','ims_after_page_function')
3. enable the editor on the content type and add the code to each gallery
function ims_gallery_post_type_function( $post_type ){ $post_type['supports'][] = 'editor'; return $post_type; }add_filter('ims_gallery_post_type', "ims_gallery_post_type_function");
Xpark MediaKeymasterenable the “photo” page in your galleries by unchecking the “disable photo” page in the settings general tab,
the search setting is a display bug that is fixed on v3.2.6
and if you’re messing the other pages be sure to you don’t have the store feature disable in the general tab, and refresh your permalinks
Xpark MediaKeymasterlooks like was a problems with your images were scanned/uploaded, the image height and width are set to 1px, the images are there but they too small
Xpark MediaKeymasterwhat version are you using, the issue was fixed on v3.2.4 we test it and we confirmed that is fixed can you provide a link to your site
Xpark MediaKeymasterunder payment (pago), uncheck all the payment gateway and just check paypal, and enter your email account
Xpark MediaKeymasterwhat do yo mean by hiding? do you mean from a menu or from the default navigation in the image store?
if you taking about the pages “image store” and “cart” if you don’t need them you can delete the pages, the galleries will provide other links to process the images
If you have this pages in a menu you can just go to the menu and remove the pages from the menu
Xpark MediaKeymasterthat is because you are linking your images to the image page not image file, if you want the images to open on the lightbox be sure that the images link to the file not to the page.
If you want to link to the page you need to disable the lightbox for the wordpress galleries under settings > galleries > Ligthbox for WP galleries
Xpark MediaKeymasterwe can confirmed that this is an issue will try to provide a fix an update this weekend,
if you need a quick fix add this code to your theme’s functions.php file or to a module
function register_ims_post_status(){ register_post_status( 'expire', array( 'label' => _x( 'Expired', 'post' ), 'public' => false, 'exclude_from_search' => true, 'show_in_admin_all_list' => true, 'show_in_admin_status_list' => true, 'label_count' => _n_noop( 'Expired (%s)', 'Expired (%s)' ), ) ); } add_action( 'init','register_ims_post_status',50 );
Xpark MediaKeymasterI checked your site and I couldn’t find a problem, are you getting the same message on sandbox? it looks like some sitting that you modify on your papal account
Xpark MediaKeymasteryou can create your own checkout for by using the a filter
add_filter(“ims_checkout_path”, ‘your_theme_checkout_path’)
function your_theme_checkout_path( $path){
return “path-to-your-checkout-form.php”;
}You can also add you own gateway use _inc/gateways/google.php as a guide, you will need also need to add the setting to activate the gateway by using these hooks (filters).
“ims_gateways”
“ims_setting_fields”Xpark MediaKeymasterthey don’t have to scroll back, the navigation bar move down along the screen,
but we agree that is why we are adding it but we have to be sure that is woking properly if not is going to be even worst for the user.
no there is no hack, that is why were removed and we are woking on getting it back
Xpark MediaKeymastercurrently the search will return a list of galleries where the images are located, this is the default functionality on all standard themes. If you need something different you will need to create you own template or contact the theme developer
Xpark MediaKeymasterThe ITPC data is scanned, title and caption (2#105, 2#120 ) will save on the right fields, you can see all other values by clicking the ITPC link to the meta column in each image.
to display the data in your theme use
$meta = get_post_meta( $imageid, ‘_wp_attachment_metadata’, true );
$meta[‘image_meta’];
- AuthorPosts