Jump to content

Featured Content for IPS4.x+


Recommended Posts

Posted

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? ^_^ 

Posted
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.

Posted
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. :smile:

Posted

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

Posted
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.

Posted

 @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. 

image.jpeg

Posted
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. 

image.jpeg

 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. 

Posted
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. 

image.jpeg

Do you use the newest version? Try to revert templates and css of the app.

Posted

@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

Posted
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.

Posted
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.

Posted
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.

Posted
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.

Posted
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}}

 

Posted
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.

Posted
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.

Posted (edited)
1 hour ago, Ausy said:

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 by onlyME
Posted
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.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...