<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.1" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>THE MOLITOR FORUMS &#187; Topic: Issue with Gallery in Mobile device</title>
		<link>http://www.themolitor.com/forums/topic/issue-with-gallery-in-mobile-device</link>
		<description>THE MOLITOR FORUMS &#187; Topic: Issue with Gallery in Mobile device</description>
		<language>en-US</language>
		<pubDate>Thu, 30 Apr 2026 21:32:27 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.1</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://www.themolitor.com/forums/search.php</link>
		</textInput>
		<atom:link href="http://www.themolitor.com/forums/rss/topic/issue-with-gallery-in-mobile-device" rel="self" type="application/rss+xml" />

		<item>
			<title>THE MOLITOR on "Issue with Gallery in Mobile device"</title>
			<link>http://www.themolitor.com/forums/topic/issue-with-gallery-in-mobile-device#post-30055</link>
			<pubDate>Thu, 10 Jul 2014 12:22:53 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">30055@http://www.themolitor.com/forums/</guid>
			<description><p>Hi there,</p>
<p>I'll email you details for custom work.</p>
<p>Best,</p>
<p>Chris
</p></description>
		</item>
		<item>
			<title>kirkandruth on "Issue with Gallery in Mobile device"</title>
			<link>http://www.themolitor.com/forums/topic/issue-with-gallery-in-mobile-device#post-30052</link>
			<pubDate>Thu, 10 Jul 2014 10:52:34 +0000</pubDate>
			<dc:creator>kirkandruth</dc:creator>
			<guid isPermaLink="false">30052@http://www.themolitor.com/forums/</guid>
			<description><p>Will I still need to make the changes to custom.js if I use the updated plugin?<br />
If so, I ma not a developer and am a little nervous about that.<br />
If it is still required...is this somehting you could do for me? and if so...what is the charge?<br />
Kirk
</p></description>
		</item>
		<item>
			<title>THE MOLITOR on "Issue with Gallery in Mobile device"</title>
			<link>http://www.themolitor.com/forums/topic/issue-with-gallery-in-mobile-device#post-30045</link>
			<pubDate>Thu, 10 Jul 2014 09:52:22 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">30045@http://www.themolitor.com/forums/</guid>
			<description><p>Hi there,</p>
<p>I sent you an updated version of the plugin.</p>
<p>Regarding custom.js, it's inside the scripts folder of the theme. You can edit it via FTP or edit the actual theme files locally and then upload that to your WordPress site.</p>
<p>Let me know if that helps.</p>
<p>Best,</p>
<p>Chris
</p></description>
		</item>
		<item>
			<title>kirkandruth on "Issue with Gallery in Mobile device"</title>
			<link>http://www.themolitor.com/forums/topic/issue-with-gallery-in-mobile-device#post-30035</link>
			<pubDate>Wed, 09 Jul 2014 12:14:40 +0000</pubDate>
			<dc:creator>kirkandruth</dc:creator>
			<guid isPermaLink="false">30035@http://www.themolitor.com/forums/</guid>
			<description><p>Not wanting to sound stupid here - but I am unable to find where you say to Open custom.js
</p></description>
		</item>
		<item>
			<title>THE MOLITOR on "Issue with Gallery in Mobile device"</title>
			<link>http://www.themolitor.com/forums/topic/issue-with-gallery-in-mobile-device#post-30034</link>
			<pubDate>Wed, 09 Jul 2014 10:46:13 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">30034@http://www.themolitor.com/forums/</guid>
			<description><p>Hi there,</p>
<p>Received. I sent you the zip. Here's how add support for the Zoom Box plugin I sent you...</p>
<p>Open custom.js and change the following on lines 348-374 from this...</p>
<pre><code>////////////////
//PRETTY PHOTO
////////////////
function prettyPhotoFunc(){
//if(!body.hasClass(&#039;respond&#039;)){
jQuery(&#34;a[href$=&#039;jpg&#039;],a[href$=&#039;png&#039;],a[href$=&#039;gif&#039;]&#34;).attr({rel: &#34;prettyPhoto&#34;});
jQuery(&#34;.gallery-icon &#62; a[href$=&#039;jpg&#039;],.gallery-icon &#62; a[href$=&#039;png&#039;],.gallery-icon &#62; a[href$=&#039;gif&#039;]&#34;).each(function(){

	var thisLink = jQuery(this),
		galleryID = thisLink.parents(&#039;.gallery&#039;).attr(&#039;id&#039;);

	thisLink.attr({rel: &#34;prettyPhoto[&#34;+galleryID+&#34;]&#34;});
});
jQuery(&#34;a[rel^=&#039;prettyPhoto&#039;]&#34;).prettyPhoto({
	animation_speed: &#039;normal&#039;, // fast/slow/normal
	opacity: 1, // Value betwee 0 and 1
	show_title: false, // true/false
	allow_resize: true, // true/false
	overlay_gallery: false,
	keyboard_shortcuts: false,
	counter_separator_label: &#039; of &#039;, // The separator for the gallery counter 1 &#34;of&#34; 2
	//theme: &#039;light_rounded&#039;, // light_rounded / dark_rounded / light_square / dark_square
	hideflash: true, // Hides all the flash object on a page, set to TRUE if flash appears over prettyPhoto
	modal: false // If set to true, only the close button will close the window
});
//}
}</code></pre>
<p>...to this...</p>
<pre><code>//////////
//ZOOM BOX
//////////
function prettyPhotoFunc(){
	jQuery(&#34;a[href$=&#039;jpg&#039;],a[href$=&#039;png&#039;],a[href$=&#039;gif&#039;]&#34;).attr({rel: &#34;zoomBox&#34;});
	jQuery(&#34;.gallery-icon &#62; a[href$=&#039;jpg&#039;],.gallery-icon &#62; a[href$=&#039;png&#039;],.gallery-icon &#62; a[href$=&#039;gif&#039;]&#34;).attr({rel: &#34;zoomBox[gallery]&#34;});
}</code></pre>
<p>I kept the function name "prettyPhotoFunc" because it's used throughout the panels script.</p>
<p>Let me know if that works better for you.</p>
<p>Best,</p>
<p>Chris
</p></description>
		</item>
		<item>
			<title>kirkandruth on "Issue with Gallery in Mobile device"</title>
			<link>http://www.themolitor.com/forums/topic/issue-with-gallery-in-mobile-device#post-30030</link>
			<pubDate>Wed, 09 Jul 2014 09:48:35 +0000</pubDate>
			<dc:creator>kirkandruth</dc:creator>
			<guid isPermaLink="false">30030@http://www.themolitor.com/forums/</guid>
			<description><p>I just sent the request on Themeforest.<br />
thanks
</p></description>
		</item>
		<item>
			<title>THE MOLITOR on "Issue with Gallery in Mobile device"</title>
			<link>http://www.themolitor.com/forums/topic/issue-with-gallery-in-mobile-device#post-30028</link>
			<pubDate>Wed, 09 Jul 2014 09:36:29 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">30028@http://www.themolitor.com/forums/</guid>
			<description><p>Hi there,</p>
<p>Unfortunately there aren't a lot of lightbox features that work well on mobile. </p>
<p>As it turns out, I'm actually working on a lightbox plugin of my own. If you want to try out the beta, send me a message from my profile page on ThemeForest and I'll send it over to you to try out.</p>
<p><a href="http://themeforest.net/user/themolitor" rel="nofollow">http://themeforest.net/user/themolitor</a></p>
<p>Best,</p>
<p>Chris
</p></description>
		</item>
		<item>
			<title>kirkandruth on "Issue with Gallery in Mobile device"</title>
			<link>http://www.themolitor.com/forums/topic/issue-with-gallery-in-mobile-device#post-30013</link>
			<pubDate>Tue, 08 Jul 2014 13:58:24 +0000</pubDate>
			<dc:creator>kirkandruth</dc:creator>
			<guid isPermaLink="false">30013@http://www.themolitor.com/forums/</guid>
			<description><p>Is there a supported browser you recommend that I could test...I am using Chrome on Android
</p></description>
		</item>
		<item>
			<title>kirkandruth on "Issue with Gallery in Mobile device"</title>
			<link>http://www.themolitor.com/forums/topic/issue-with-gallery-in-mobile-device#post-30012</link>
			<pubDate>Tue, 08 Jul 2014 13:38:59 +0000</pubDate>
			<dc:creator>kirkandruth</dc:creator>
			<guid isPermaLink="false">30012@http://www.themolitor.com/forums/</guid>
			<description><p>ON the adnroid phone...I can go to any gallery page, then click on any image in the gallery. The picture opens up...<br />
1) I single tap nothing happens<br />
2) I can double tap and the picture expands to full size<br />
3) I can pinch it to resize<br />
4) IF I swipe it nothing happens<br />
...so the only way to get it off the screen is to hit the main BACK button on the phone and that takes me back to images page 1 where I see the menus again.
</p></description>
		</item>
		<item>
			<title>THE MOLITOR on "Issue with Gallery in Mobile device"</title>
			<link>http://www.themolitor.com/forums/topic/issue-with-gallery-in-mobile-device#post-30011</link>
			<pubDate>Tue, 08 Jul 2014 12:26:33 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">30011@http://www.themolitor.com/forums/</guid>
			<description><p>Hi there,</p>
<p>Unfortunately I don't have an android phone to test this on (not an actively supported browser). When viewing the pop-up, what happens when you click the image?</p>
<p>Let me know.</p>
<p>Best,</p>
<p>Chris
</p></description>
		</item>
		<item>
			<title>kirkandruth on "Issue with Gallery in Mobile device"</title>
			<link>http://www.themolitor.com/forums/topic/issue-with-gallery-in-mobile-device#post-30009</link>
			<pubDate>Tue, 08 Jul 2014 11:38:12 +0000</pubDate>
			<dc:creator>kirkandruth</dc:creator>
			<guid isPermaLink="false">30009@http://www.themolitor.com/forums/</guid>
			<description><p>on the desktop - it works as you have described...click an image and arrows are visible on hover. If I use my android phone (Galaxy S III) I click to open a picture and I can pinch to resize it, but no arrows show up to navigate through the gallery...the only option at that point is to hit the main "back" button on my phone and it takes me to page 1 of the images page.
</p></description>
		</item>
		<item>
			<title>THE MOLITOR on "Issue with Gallery in Mobile device"</title>
			<link>http://www.themolitor.com/forums/topic/issue-with-gallery-in-mobile-device#post-30005</link>
			<pubDate>Tue, 08 Jul 2014 10:20:05 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">30005@http://www.themolitor.com/forums/</guid>
			<description><p>Hi there,</p>
<p>If you take a look at how the gallery pop-up works, if you click an image, it shows up and the arrows are only visible on hover. </p>
<p>Does clicking the image not do anything for you?</p>
<p>Best,</p>
<p>Chris
</p></description>
		</item>
		<item>
			<title>kirkandruth on "Issue with Gallery in Mobile device"</title>
			<link>http://www.themolitor.com/forums/topic/issue-with-gallery-in-mobile-device#post-29999</link>
			<pubDate>Tue, 08 Jul 2014 02:37:55 +0000</pubDate>
			<dc:creator>kirkandruth</dc:creator>
			<guid isPermaLink="false">29999@http://www.themolitor.com/forums/</guid>
			<description><p>Hi Chris...clearing the caching was the issue on not seeing the changes thanks. </p>
<p>So I'm back to square 1 where I see the photos on the phone, but I do not see the navigation arrows allowing me to scroll through a gallery. I can only view 1 picture and then hit the BACK button on the phone to get out of it. </p>
<p>Is that the way the native theme should be working?
</p></description>
		</item>
		<item>
			<title>THE MOLITOR on "Issue with Gallery in Mobile device"</title>
			<link>http://www.themolitor.com/forums/topic/issue-with-gallery-in-mobile-device#post-29996</link>
			<pubDate>Mon, 07 Jul 2014 14:04:16 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">29996@http://www.themolitor.com/forums/</guid>
			<description><p>Hi there,</p>
<p>I see you're using a caching plugin too. This is probably why your changes aren't showing up. Be sure to clear your caching plugin and let me know if that helps.</p>
<p>Best,</p>
<p>Chris
</p></description>
		</item>
		<item>
			<title>kirkandruth on "Issue with Gallery in Mobile device"</title>
			<link>http://www.themolitor.com/forums/topic/issue-with-gallery-in-mobile-device#post-29991</link>
			<pubDate>Mon, 07 Jul 2014 10:35:52 +0000</pubDate>
			<dc:creator>kirkandruth</dc:creator>
			<guid isPermaLink="false">29991@http://www.themolitor.com/forums/</guid>
			<description><p>Here is what the code looks like<br />
&#60;!--nextpage--&#62;<br />
&#60;h1&#62;New Year's Eve 2013&#60;/h1&#62;<br />
[pagelink page="3"]<br />
[button size="small"]...More [/button]<br />
[/pagelink]</p>
<p>[gallery link="file" columns="4" ids="5826,5820,5817,5818,5819,5825,5837,5827"]</p>
<p>If I change "file" to say "media file" or "image file" the result is the same look as I get on the mobile device - not sure how to attache a screen grab  here....but if I change it back to say "file" then it looks right on the website, but the mobile does not change. </p>
<p>The code says "file" even though I have selected "Media file" from the drop down option.
</p></description>
		</item>
		<item>
			<title>THE MOLITOR on "Issue with Gallery in Mobile device"</title>
			<link>http://www.themolitor.com/forums/topic/issue-with-gallery-in-mobile-device#post-29990</link>
			<pubDate>Mon, 07 Jul 2014 10:20:30 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">29990@http://www.themolitor.com/forums/</guid>
			<description><p>Hi there,</p>
<p>Are you sure? I see attachment links for this gallery: <a href="http://www.alliancechristiancenter.org/gallery/2/" rel="nofollow">http://www.alliancechristiancenter.org/gallery/2/</a></p>
<p>Let me know.</p>
<p>Best,</p>
<p>Chris
</p></description>
		</item>
		<item>
			<title>kirkandruth on "Issue with Gallery in Mobile device"</title>
			<link>http://www.themolitor.com/forums/topic/issue-with-gallery-in-mobile-device#post-29989</link>
			<pubDate>Mon, 07 Jul 2014 10:20:08 +0000</pubDate>
			<dc:creator>kirkandruth</dc:creator>
			<guid isPermaLink="false">29989@http://www.themolitor.com/forums/</guid>
			<description><p>My current process is:<br />
1) upload pictures into Wordpress media library<br />
2) go to page I want to add a gallery to<br />
3) click on Add Media button<br />
4) click Create Gallery<br />
5) Select the images I want to use<br />
6) click create gallery<br />
7) set option for the number of columns</p>
<p>Am I doing something wrong?
</p></description>
		</item>
		<item>
			<title>kirkandruth on "Issue with Gallery in Mobile device"</title>
			<link>http://www.themolitor.com/forums/topic/issue-with-gallery-in-mobile-device#post-29987</link>
			<pubDate>Mon, 07 Jul 2014 10:16:27 +0000</pubDate>
			<dc:creator>kirkandruth</dc:creator>
			<guid isPermaLink="false">29987@http://www.themolitor.com/forums/</guid>
			<description><p>when I go in to Edit the gallery I see a drop down which allows me to select<br />
1)Attachement Page<br />
2)Media File<br />
3) None</p>
<p>I checked and All galleries are set to Media file...is this what you mean?
</p></description>
		</item>
		<item>
			<title>THE MOLITOR on "Issue with Gallery in Mobile device"</title>
			<link>http://www.themolitor.com/forums/topic/issue-with-gallery-in-mobile-device#post-29984</link>
			<pubDate>Mon, 07 Jul 2014 09:59:35 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">29984@http://www.themolitor.com/forums/</guid>
			<description><p>Hi there,</p>
<p>It looks like you have your images linking to the attachment page. Be sure to have them link to the image file (or media file). </p>
<p>Let me know if that helps.</p>
<p>Best,</p>
<p>Chris
</p></description>
		</item>
		<item>
			<title>kirkandruth on "Issue with Gallery in Mobile device"</title>
			<link>http://www.themolitor.com/forums/topic/issue-with-gallery-in-mobile-device#post-29973</link>
			<pubDate>Thu, 03 Jul 2014 05:52:15 +0000</pubDate>
			<dc:creator>kirkandruth</dc:creator>
			<guid isPermaLink="false">29973@http://www.themolitor.com/forums/</guid>
			<description><p>Also if you go onto the image page for Work Party June 2014 - the picture shows up - not outside the website as in page 7 mentioned above.
</p></description>
		</item>
		<item>
			<title>kirkandruth on "Issue with Gallery in Mobile device"</title>
			<link>http://www.themolitor.com/forums/topic/issue-with-gallery-in-mobile-device#post-29972</link>
			<pubDate>Thu, 03 Jul 2014 04:56:18 +0000</pubDate>
			<dc:creator>kirkandruth</dc:creator>
			<guid isPermaLink="false">29972@http://www.themolitor.com/forums/</guid>
			<description><p>Chris I tried a few plugins last night and the pics got so messed up on the mobile that I ended up having to restore the website to a backup.</p>
<p>I tried the following and none seem to work on the mobile.<br />
1) Responsive Lightbox by dFactory<br />
2) blueimp lightbox<br />
3) WP Lightbox 2<br />
4) FooBox Image Lightbox</p>
<p>I think (not sure) I am back to just the PANELS Out-Of-The-Box Gallery creation --- is that what this is? And it still seems to be problematic.</p>
<p>If you look on my website <a href="http://www.alliancechristiancenter.org" rel="nofollow">http://www.alliancechristiancenter.org</a> and go to IMAGES&#62;page 7 you will see that when you open a photo it appears that it is an EVENT and it is opening in a page that is outside the website...see the "back to alliance chritian center" button?</p>
<p>Not sure what to do here.<br />
Kirk
</p></description>
		</item>
		<item>
			<title>THE MOLITOR on "Issue with Gallery in Mobile device"</title>
			<link>http://www.themolitor.com/forums/topic/issue-with-gallery-in-mobile-device#post-29966</link>
			<pubDate>Wed, 02 Jul 2014 14:09:57 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">29966@http://www.themolitor.com/forums/</guid>
			<description><p>Hi there,</p>
<p>I'm not familiar with that plugin, so the best thing to do is test it out and see how it works. If you have issues, let me know. If the theme is causing trouble I'll definitely check it out, but please keep in mind that I don't provide support for issues caused by plugins.</p>
<p>Let me know.</p>
<p>Best,</p>
<p>Chris
</p></description>
		</item>
		<item>
			<title>kirkandruth on "Issue with Gallery in Mobile device"</title>
			<link>http://www.themolitor.com/forums/topic/issue-with-gallery-in-mobile-device#post-29962</link>
			<pubDate>Wed, 02 Jul 2014 09:54:43 +0000</pubDate>
			<dc:creator>kirkandruth</dc:creator>
			<guid isPermaLink="false">29962@http://www.themolitor.com/forums/</guid>
			<description><p>I downloaded dFactor Responsive Lightbox and activated it...Will this be all I need to do, or must I recreate the galleries as well?
</p></description>
		</item>
		<item>
			<title>THE MOLITOR on "Issue with Gallery in Mobile device"</title>
			<link>http://www.themolitor.com/forums/topic/issue-with-gallery-in-mobile-device#post-29956</link>
			<pubDate>Wed, 02 Jul 2014 08:41:08 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">29956@http://www.themolitor.com/forums/</guid>
			<description><p>Hi there,</p>
<p>If you want to use a different system, you can try searching for "lightbox" plugins on the plugins page of your WordPress dashboard. </p>
<p>Let me know if that helps.</p>
<p>Best,</p>
<p>Chris
</p></description>
		</item>
		<item>
			<title>kirkandruth on "Issue with Gallery in Mobile device"</title>
			<link>http://www.themolitor.com/forums/topic/issue-with-gallery-in-mobile-device#post-29951</link>
			<pubDate>Tue, 01 Jul 2014 15:14:33 +0000</pubDate>
			<dc:creator>kirkandruth</dc:creator>
			<guid isPermaLink="false">29951@http://www.themolitor.com/forums/</guid>
			<description><p>I am not sure how to go about changing (prettyPhoto) to something you would recommend. Please advise.
</p></description>
		</item>
		<item>
			<title>THE MOLITOR on "Issue with Gallery in Mobile device"</title>
			<link>http://www.themolitor.com/forums/topic/issue-with-gallery-in-mobile-device#post-29943</link>
			<pubDate>Tue, 01 Jul 2014 10:11:29 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">29943@http://www.themolitor.com/forums/</guid>
			<description><p>Hi there,</p>
<p>1. The lightbox script used (prettyPhoto) doesn't currently have responsive support. As a result, when clicking the images on mobile devices, you'll view the actual image file.</p>
<p>2. I see the back button show up. It's just not in view initially. With the way you have it setup, you currently have to scroll down to see it.</p>
<p>Let me know if that helps.</p>
<p>Best,</p>
<p>Chris
</p></description>
		</item>
		<item>
			<title>kirkandruth on "Issue with Gallery in Mobile device"</title>
			<link>http://www.themolitor.com/forums/topic/issue-with-gallery-in-mobile-device#post-29934</link>
			<pubDate>Tue, 01 Jul 2014 04:36:02 +0000</pubDate>
			<dc:creator>kirkandruth</dc:creator>
			<guid isPermaLink="false">29934@http://www.themolitor.com/forums/</guid>
			<description><p><a href="http://www.alliancechristiancenter.org" rel="nofollow">http://www.alliancechristiancenter.org</a><br />
Two issues:<br />
1) On my site I have an "images" page. If I open the images on a desktop I get the forward/backward arrows &#60;  &#62; that show up to help navigate through the set - but the navigation arrows are not showing up on a mobile device (Galaxy S3).</p>
<p>2) Also if you click on the Valentine Dinner 2014 set of pics there should be a "Next Gallery" button and a "Back" button at the bottom of the gallery (just as in all the other galleries) to assist in navigation. Both buttons show up on the desktop-but only the "Back" button shows up here. </p>
<p>thanks<br />
Kirk
</p></description>
		</item>

	</channel>
</rss>
