Forum Replies Created
-
AuthorPosts
-
Peter
MemberI have sent you an email so I can take a closer look at your site.
Peter
MemberI wonder if there is a plugin or something else on your site which is limiting the photo size?
When I tested this scenario on my photo test site it produces the desired resolution photo on the details page but obviously the display of the photo is shown as smaller so that it fits on the page. (but the origin of the photo is the max size).
Therefore I recommend that you perform some tests to see if another plugin or your theme is restricting the size:
https://support.tipsandtricks-hq.com/forums/topic/test-to-identy-a-conflicting-theme-or-plugin
Peter
MemberHi,
Can you please choose the “Name Ascending” sort order setting for one of your galleries and then provide the link so I can take a quick look?
Peter
MemberCan you provide a link to the page where you say the photo is displaying as 720px?
Peter
MemberCan you provide a link to the gallery?
Also in the meantime, I recommend that you go to the following menu page:
Wp Photo Seller >> Admin Functions
Then click the “Regenerate Default Pages” button and check your gallery again to see if the issue is fixed.
October 21, 2016 at 2:01 am in reply to: How to move the View Gallery Button to top of Details Page ? #74396Peter
MemberAfter thinking about this, a better way to solve your issue without hacking the plugin is to add some code to your theme’s functions.php file which will use javascript to add a button after page is loaded.
Here’s an example:
add_action( 'wp_footer', 'footer_tasks' );
function footer_tasks()
{
?>
<script type="text/javascript">
jQuery(document).ready(function($){
var cloned = $('.wps_photo_details_continue_shopping_section').clone().addClass('continue_shopping_section_top');
$('.wps-image-details').prepend(cloned);
$('.continue_shopping_section_top').wrap('<div class="continue-shopping-top"></div>');
});
</script>
<?php
}Peter
MemberHi,
The issue is actually not with mobile browsers but appears to be something on your server because that image cannot be downloaded even with desktop browser, ie, it comes back as 0 bytes.
Can you check the following thread to see if your issue is similar:
Peter
MemberI have a Samsung phone and I would like to try downloading one of your links.
Can you please create a download link using the Photo Seller Admin functions menu and post it here?
October 17, 2016 at 11:29 am in reply to: How to move the View Gallery Button to top of Details Page ? #74395Peter
MemberI think the best way to do this would be to add a wordpress filter in the code which renders the photo details page. You would then use that filter by putting code in your theme’s functions.php file and hence you will never need to modify the photo seller core code.
I will look into this and let you know later in the week.
October 13, 2016 at 10:40 pm in reply to: WP Photo Seller – Can we add breadcrumbs with gallery name on photo details page #74375Peter
MemberI forgot to mention that the “View Gallery” at the bottom of the photo details page is designed to always return the visitor to the referring page.
Peter
MemberYou can set the size of photo details page photo by setting the “Watermarked Max Preview Dimension” in the gallery settings.
Have you tried increasing that?
Peter
MemberHi,
The plugin currently doesn’t integrate with external systems such as google photo.
This is something we are planning to add in the future but keep in mind there is a bit of complexity involved.
October 12, 2016 at 1:17 pm in reply to: WP Photo Seller – Can we add breadcrumbs with gallery name on photo details page #74373Peter
MemberHi,
I will see what I can do about adding a breadcrumb for the photo details page.
In the meantime you can always create a menu item via the wordpress Appearance >> Menus page and add all of the individual gallery pages.
Peter
MemberI’ve sent you an email with a copy of a new version of the plugin for you to try.
Peter
MemberPlease delete your current version and get the latest version of the plugin and install it.
https://support.tipsandtricks-hq.com/forums/topic/re-install-or-load-a-fresh-build-of-the-plugins
-
AuthorPosts