Bring Your Business to Life › Support › WP Plugin Image Store 3.0 Features
Forum Replies Created
- AuthorPosts
- March 31, 2014 at 10:11 pm in reply to: Manage the number of galleries (secured) displayed per page ? #70235Xpark MediaKeymaster
Using the shortcode you can only limit the number of images shown, but not per page. The only way to do it, it’s using the taxonomy pages or creating a custom template.
Xpark MediaKeymasterSorry for the late reply, but the user “test” password “test” doesn’t work anymore
Xpark MediaKeymasterare you using the paypal sanbox or production? You said that you don’t see any php errors, right? please try to update to the latest version and reset all settings.
If that doesn’t work will may need access to your test site to test it.
Xpark MediaKeymasterNo, is not a working example, try this. Change the path to the full path of your file.
function ims_change_customer_edit_file( $file, $dir ) { return "full/path/to/new/file.php"; } add_filter('ims_include_customer-edit', 'ims_change_customer_edit_file', 10, 2);
Xpark MediaKeymasterplease take a look at the WordPress template doc page
Xpark MediaKeymasterWe added the hooks in the last release, we hope it will help
Xpark MediaKeymasterWe will be making the change, we modify the message location on the previous release. The will not will not close in case the user wants to add additional sizes.
Xpark MediaKeymasterWe did not find an issue with the functionally, this could be an issue with WordPress cron
Xpark MediaKeymasteryou can add additional values using the ims_cutomer_data_row hook.
if you want to complete rewrite the form use ims_include_{file_name}
Xpark MediaKeymasterAdd this code to a theme of module make sure that use a unique name for the function “MY_THEME_filter_image_by_image_meta”
function MY_THEME_filter_image_by_image_meta( ){ global $ImStore; if( empty( $ImStore->attachments ) || ! is_array( $ImStore->attachments ) ) return false; foreach( $ImStore->attachments as $key => $attachment ){ if( empty( $attachment->meta['image_meta']['credit'] ) || $attachment->meta['image_meta']['credit'] !== 000 ) unset( $ImStore->attachments[$key] ); } } add_filter( 'ims_before_galleries', 'MY_THEME_filter_image_by_image_meta' );
Xpark MediaKeymasterif the user is logged in using any WordPress account the exit gallery link will not show since the permissions are controlled by their role to exit they will need to log out also.
Administrators will not see the exit links since they have access to all galleries.
Xpark MediaKeymasterIs the price symbol (€) not changing on the receipt page, or somewhere else?
We are not familiar with ideal can you explain what page is “the page where I can pay my orders”
Xpark MediaKeymasterIf you are password protecting your galleries and a user logs in, a “Exit Gallery” link should display along with the Photos, Price List, Shopping Cart link.
Other 2 options to add a log out link is just adding “logout” at the end of the gallery url ex: http://domain.com/galley-name/logout.
If you are using the “Cart” page created by the plugin you can also use the cart url ex: http://domain.com/cart-url/logout.
Al links above assumes that you are using permalinks and you have an english language web site.
Xpark MediaKeymasterQuieres quitar la votación? hay una opción en configuración > general > voto y deselecciona la opción.
Para activar la opción de select tienes que tener la tienda activada o la opción de favoritos
Xpark MediaKeymasterLas galerías que estás creando tienen contraseña? esta seria la una razón por la cual usuarios anónimos no pueden accesar la galleria.
Que tema estas utilizando y que otros plugin? trata de activar uno por uno para ver si hay un conflicto.
- AuthorPosts