Forum Replies Created
- AuthorPosts
-
Xpark Media
KeymasterIt 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.
Xpark Media
KeymasterYou 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 );
Xpark Media
Keymastergive us a few days to look at it.
Xpark Media
Keymasterwe 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?
Xpark Media
KeymasterThe 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
Xpark Media
Keymasternot 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.
Xpark Media
KeymasterPagSeguro 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]
Xpark Media
Keymasterchange the code to this
@media only screen and( max-width:960px ) { #touch-overlay { overflow: scroll; } }
Xpark Media
KeymasterWe 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.
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.
Xpark Media
Keymasterwhat php version are you running on the server?
if you activate wp_debug what error do you see?
What other plugins are you using?Xpark Media
Keymasterwhat other plugin are you using and what theme? we will look at the issue.
Xpark Media
KeymasterYou 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
Xpark Media
Keymasterthere 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.
Xpark Media
Keymasterdid 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.
- AuthorPosts