Invision Community 4: SEO, prepare for v5 and dormant account notifications Matt November 11, 2024Nov 11
July 19, 20168 yr in html validator i'm getting error on a double class declared by your plugin: <ul class='slider_12' class='sliderContainer'> How can i solve this?
July 20, 20168 yr Author 5 hours ago, modman said: in html validator i'm getting error on a double class declared by your plugin: <ul class='slider_12' class='sliderContainer'> How can i solve this? It will be fixed in the next version.
July 20, 20168 yr 6 hours ago, Tripp_UK said: I seem to be unable to renew... Keeps saying expired invoice, with no option to actually renew once I hit renew. When it happens, I select a different quantity then presume the checkout normally...But don't pay. Go back and then change the quantity back to the original (usually 1), and then the order resets itself. See if this works for you.
July 21, 20168 yr i've moved all my storage path to a subdomain, why the images used in your plugin stay in the older path? can you fix this? all other plugins have changed the path without problem and they have updated the url of images to the new path Thanks
July 22, 20168 yr Author 6 hours ago, modman said: i've moved all my storage path to a subdomain, why the images used in your plugin stay in the older path? can you fix this? all other plugins have changed the path without problem and they have updated the url of images to the new path Thanks Hi, Please give me ACP access I will take a look.
July 24, 20168 yr @onlyME, I have a weird issue with iPad and mobile devices. More than half the image in the slider is cut off. Doesn't happen on desktop. Thoughts? I had some CSS changes (padding) that I took out to see if that was the issue but the result is the same.
July 24, 20168 yr 3 hours ago, pilotguy said: @onlyME, I have a weird issue with iPad and mobile devices. More than half the image in the slider is cut off. Doesn't happen on desktop. Thoughts? I had some CSS changes (padding) that I took out to see if that was the issue but the result is the same. are you using a specific image width and setting it to show more than 1 image in the maximum? If you set it to show 1 image at a time it might fix it. Otherwise yes I agree that the app still has a while to go before it is finished, numerous styling/alignment issues still with it.
July 25, 20168 yr Author 5 hours ago, pilotguy said: @onlyME, I have a weird issue with iPad and mobile devices. More than half the image in the slider is cut off. Doesn't happen on desktop. Thoughts? I had some CSS changes (padding) that I took out to see if that was the issue but the result is the same. Do you use the newest version? Try to revert templates and css of the app.
July 28, 20168 yr @onlyME Is there any way you could please add a feature for images on the slider to open up in the ips lightbox (I think that is what it's called?) The overlay that pops up on your screen when you click an attached image inside a forum post that is larger than the thumbnail. Thanks, Neej
July 28, 20168 yr Author 1 minute ago, Neej said: @onlyME Is there any way you could please add a feature for images on the slider to open up in the ips lightbox (I think that is what it's called?) The overlay that pops up on your screen when you click an attached image inside a forum post that is larger than the thumbnail. Thanks, Neej It's so confused for the auto slider from RSS, Forums that have images from external urls.
July 28, 20168 yr Just now, onlyME said: It's so confused for the auto slider from RSS, Forums that have images from external urls. I'm not referring to any "feeds", but the manually added image sliders that directly get an image from what the user adds to the slider. Would it be possible for it to open a lightbox when clicking these images instead of opening a new tab to display the "link" (for me my links are all to the image .jpg). You can see what I am talking about on the slider at http://www.soc-aus.net/companies/planetside2/ps2_info/ All those images just open a new tab with the image, but it would be great if these links could have an option when adding the images manually to open a lightbox instead.
July 28, 20168 yr Author Just now, Neej said: I'm not referring to any "feeds", but the manually added image sliders that directly get an image from what the user adds to the slider. Would it be possible for it to open a lightbox when clicking these images instead of opening a new tab to display the "link" (for me my links are all to the image .jpg). You can see what I am talking about on the slider at http://www.soc-aus.net/companies/planetside2/ps2_info/ All those images just open a new tab with the image, but it would be great if these links could have an option when adding the images manually to open a lightbox instead. I'm not sure but I will consider your idea.
July 29, 20168 yr 19 hours ago, onlyME said: I'm not sure but I will consider your idea. If you don't add the feature, do you know of any way I can customise the links to a specific slider? <a href="http://www.site.com/image_large.jpg" title="Enlarge image" data-ipslightbox="" data-ipslightbox-group="12345"> <img src="http://www.site.com/image_thumbnail.jpg" alt="" /> </a> I don't think I can easily add this kind of code in to the templates for FeaturedImages without it effecting all of my sliders, and unfortunately not all of my sliders are simply thumbnails.
July 29, 20168 yr Author 21 minutes ago, Neej said: If you don't add the feature, do you know of any way I can customise the links to a specific slider? <a href="http://www.site.com/image_large.jpg" title="Enlarge image" data-ipslightbox="" data-ipslightbox-group="12345"> <img src="http://www.site.com/image_thumbnail.jpg" alt="" /> </a> I don't think I can easily add this kind of code in to the templates for FeaturedImages without it effecting all of my sliders, and unfortunately not all of my sliders are simply thumbnails. Try {{if $Slider->id == 1}} .... {{else}} ... {{endif}}
July 30, 20168 yr Author 4 hours ago, Ausy said: @onlyME Updated to latest version and responsiveness is gone. You need to revert all templates and css of this application.
July 30, 20168 yr On 29/07/2016 at 2:41 PM, onlyME said: Try {{if $Slider->id == 1}} .... {{else}} ... {{endif}} Hey mate, Got it working by changing the following code in the 'showSlider' template. From {{if $Slider->bitoptions['nolink'] != 1}} <a href="{$row['url']}" title="{$row['title']}" {{if $Slider->bitoptions['newwin'] == 1 || $row['newtab'] == 1}}target=_blank{{endif}}> {{endif}} to This; {{if $Slider->bitoptions['nolink'] != 1}} {{if $Slider->id == 7}} <a href="{$row['url']}" title="{$row['title']}" data-ipslightbox="{$row['title']}" data-ipslightbox-group="12345"> {{else}} <a href="{$row['url']}" title="{$row['title']}" {{if $Slider->bitoptions['newwin'] == 1 || $row['newtab'] == 1}}target=_blank{{endif}}> {{endif}} {{endif}} Result can be seen on this page http://www.soc-aus.net/companies/planetside2/ps2_info/ The lightbox actually allows you to scroll through the images with the left and right arrows too, so that's a bonus.
July 30, 20168 yr 18 hours ago, onlyME said: You need to revert all templates and css of this application. Seems nothing to revert on any of them. I tried it on a fresh test install and same problem.
July 31, 20168 yr Author 5 hours ago, Ausy said: Seems nothing to revert on any of them. I tried it on a fresh test install and same problem. Please give me the url.
July 31, 20168 yr Author 1 hour ago, Ausy said: https://www.barcs.co.uk/ Try to set max slides = 1, min slides = 1 And edit your theme > featuredcontent > front > embed > showSlider Find height:{$height}; width:100%; Replace by max-height:{$height}; width:100%; Save Edited July 31, 20168 yr by onlyME
July 31, 20168 yr I get the following error - trying to upgrade from an old version (3.x) to the new one. 1S111/1 Table 'mysite.featuredcontent_sliders' doesn't exist
July 31, 20168 yr Author Just now, Kjell Iver Johansen said: I get the following error - trying to upgrade from an old version (3.x) to the new one. 1S111/1 Table 'mysite.featuredcontent_sliders' doesn't exist Try to run 'Get Support' to fix the databases.
July 31, 20168 yr 1 hour ago, onlyME said: Try to run 'Get Support' to fix the databases. Thanks - yes that was working.