Scheduled Maintenance: 10-11-2025 Electricity company maintenance between 09:00 and 15:00.

3.1.x Extensions Database 3.1 / 3.2Nivo Slider

<span class="qte-attr qte_31_32-qte">3.1.x &amp; 3.2.x</span>
User avatar

proavia
Users
Users
Posts: 65
Joined: 30 Aug 2015, 22:50
    Windows 7 Internet Explorer

Re: Nivo Slider

Post by proavia »

Thanks DM - changing the 1 to a 0 in nivo-slider.css fixed the issue.

In prosilver common.css, under /* Inner box-model clearing */ - line 1118 in common.css

Code: Select all

.dropdown-extended {
	display: none;
	z-index: 1;
}
Is that the one for the Notification drop-down - only one I found with z-index <2.

So a lower number (even negative) will move an element lower in the stack - therefore behind other elements with a higher number?

WOW - I learn something new pretty much every time I come here! :tumbsyes:

User avatar

FranckTH
Users
Users
Posts: 3
Joined: 07 Nov 2016, 09:35
    Windows 10 Firefox

Re: Nivo Slider

Post by FranckTH »

Hi,
Nice extension, do you think that's possible to scroll horizontally as youtube gallery addon ?

User avatar

FranckTH
Users
Users
Posts: 3
Joined: 07 Nov 2016, 09:35
    Windows 10 Firefox

Re: Nivo Slider

Post by FranckTH »

I'm trying it but i have a problem with height of images

i have two images 90*90 but on my board i see 1120*1120 px :shock:

how to reduce the height please ?
demo :
http://www.graphogames.fr/foe/index.php

User avatar

bagravi
Users
Users
Posts: 2
Joined: 01 Dec 2016, 06:43
    Windows 10 Firefox

Re: Nivo Slider

Post by bagravi »

Prev and Next Buttons not displaying

how to correct it

style : prosilver Special Edition

thanks

User avatar

elsa23
Users
Users
Posts: 3
Joined: 19 Jan 2016, 10:32
    Windows 10 Chrome

Re: Nivo Slider

Post by elsa23 »

elsa23 wrote: 20 Aug 2016, 20:31 Hi, can not see images bullets.png and arrows.png in nivo slider, how to fix that please
UP ?
sorry for my bad english

User avatar

jan_2017
Users
Users
Posts: 203
Joined: 05 Feb 2017, 10:21
    Android Chrome

Re: Nivo Slider

Post by jan_2017 »

Hi @all

i would like to add more pics in the nivoslider.

after i have added Pic number 8 i can not add one pic once again.

in the settings under "Controller" i can See only 8 entries

How could i change this to show more pictures in nivo Slider?


thx jan

[ Post made via Android ] Image

User avatar

Topic Author
dmzx
Founder
Founder
Posts: 6467
Joined: 13 Jan 2014, 21:45
    Windows 10 Chrome

Re: Nivo Slider

Post by dmzx »

jan_2017 wrote: 27 Oct 2017, 16:54 hi @all

i would like to add more pics in the nivoslider.

after i have added Pic number 8 i can not add one pic once again.

in the settings under "Controller" i can See only 8 entries

How could i change this to show more pictures in nivo Slider?


thx jan

[ Post made via Android ] Image
Jan for now this is not possible, maybe future release it can be.

User avatar

jan_2017
Users
Users
Posts: 203
Joined: 05 Feb 2017, 10:21
    Android Chrome

Re: Nivo Slider

Post by jan_2017 »

OK.....thanks for a while :buigen:

bye

[ Post made via Android ] Image

User avatar

jan_2017
Users
Users
Posts: 203
Joined: 05 Feb 2017, 10:21
    Windows 10 Firefox

Re: Nivo Slider

Post by jan_2017 »

jan_2017 wrote: 28 Oct 2017, 09:50 OK.....thanks for a while :buigen:

bye

[ Post made via Android ] Image
Hello everybody.

I tried a little bit.For all experts here, this is not a wonder of the world.

Here is a description to increase the number of slides.
Please make a backup before you start to change.... :cool:
Find dmzx/nivoslider/controller/settings.php ==> line 95

Code: Select all

$this->config->set('slider_sl8_cap',	$this->request->variable('slider_sl8_cap', '',true));
Add after dmzx/nivoslider/controller/settings.php ==> line 95

Code: Select all

$this->config->set('slider_sl9_img',	$this->request->variable('slider_sl9_img', '',true));
$this->config->set('slider_sl9_url',	$this->request->variable('slider_sl9_url', '',true));
$this->config->set('slider_sl9_cap',	$this->request->variable('slider_sl9_cap', '',true));
Find dmzx/nivoslider/event/main_listener.php ==> line 96

Code: Select all

'SLIDER_SL8_CAP'			=> (string) $this->config['slider_sl8_cap'],
Add after dmzx/nivoslider/event/main_listener.php ==> line 96

Code: Select all

'SLIDER_SL9_IMG'			=> (string) $this->config['slider_sl9_img'],
'SLIDER_SL9_URL'			=> (string) $this->config['slider_sl9_url'],
'SLIDER_SL9_CAP'			=> (string) $this->config['slider_sl9_cap'],
Find dmzx/migrations/nivoslider_install.php ==> line 60

Code: Select all

array('config.add', array('slider_sl8_cap', '')),
Add after dmzx/migrations/nivoslider_install.php ==> line 60

Code: Select all

array('config.add', array('slider_sl9_img', '')),
array('config.add', array('slider_sl9_url', '')),
array('config.add', array('slider_sl9_cap', '')),
Find dmzx/styles/prosilver/template/nivoslider.html ==> line 264+265

Code: Select all

								<button type="button" class="removeslide button icon-button delete-icon" title="{L_SLIDER_REMOVE_SLIDE}"></button>
							</dl>
Add after dmzx/styles/prosilver/template/nivoslider.html ==> line 265

Code: Select all

							<dl class="panel <!-- IF SLIDER_SL9_IMG -->alwayson<!-- ENDIF -->">
								<dt><label for="slider_sl9_img">{L_SLIDER_SLIDE9}</label></dt>
								<dd>
									<input placeholder="{L_SLIDER_PLACEHOLDER}" title="{L_SLIDER_TITLE_IMAGE}" type="text" class="inputbox" name="slider_sl9_img" id="slider_sl9_img" size="30" value="{SLIDER_SL9_IMG}" />
								</dd>
								<dd>
									<input placeholder="{L_SLIDER_PLACEHOLDER_URL}" title="{L_SLIDER_PLACEHOLDER_URL_TITLE}" type="text" class="inputbox" name="slider_sl9_url" id="slider_sl9_url" size="30" value="{SLIDER_SL9_URL}" />
								</dd>
								<dd>
									<input placeholder="{L_SLIDER_PLACEHOLDER_CAPTION}" title="{L_SLIDER_PLACEHOLDER_CAPTION_TITLE}" type="text" class="inputbox" name="slider_sl9_cap" id="slider_sl9_cap" size="30" value="{SLIDER_SL9_CAP}" />
								</dd>
								<!-- IF SLIDER_SL9_IMG -->
								<div class="slideimg"><img src="{BOARD_URL}ext/dmzx/nivoslider/images/{SLIDER_SL9_IMG}">
								</div><!-- ENDIF -->
								<button type="button" class="removeslide button icon-button delete-icon" title="{L_SLIDER_REMOVE_SLIDE}"></button>
							</dl>
Find dmzx/styles/prosilver/template/slider.html ==> line 19+20

Code: Select all

	<!-- IF SLIDER_SL8_URL --><a href="{SLIDER_SL8_URL}"><!-- ENDIF --><!-- IF SLIDER_SL8_IMG --><img src="{BOARD_URL}ext/dmzx/nivoslider/images/{SLIDER_SL8_IMG}" alt="" <!-- IF SLIDER_SL8_CAP -->title="{SLIDER_SL8_CAP}"<!-- ENDIF -->><!-- ENDIF --><!-- IF SLIDER_SL8_URL --></a><!-- ENDIF -->
Add after dmzx/styles/prosilver/template/slider.html ==> line 20

Code: Select all

		<!-- IF SLIDER_SL9_URL --><a href="{SLIDER_SL9_URL}"><!-- ENDIF --><!-- IF SLIDER_SL9_IMG --><img src="{BOARD_URL}ext/dmzx/nivoslider/images/{SLIDER_SL9_IMG}" alt="" <!-- IF SLIDER_SL9_CAP -->title="{SLIDER_SL9_CAP}"<!-- ENDIF -->><!-- ENDIF --><!-- IF SLIDER_SL9_URL --></a><!-- ENDIF -->
Find dmzx/nivoslider/language/en/common.php ==> line 71

Code: Select all

	'SLIDER_SLIDE8'							=> 'Example 8',
Add after dmzx/nivoslider/language/en/common.php ==> line 71

Code: Select all

	'SLIDER_SLIDE9'							=> 'Êxample 9',
This is only a descreption for ONE picture (slide) ore in nivoslider ext.

Upload with ftp in root

Clean cache

Have fun :-D

User avatar

jan_2017
Users
Users
Posts: 203
Joined: 05 Feb 2017, 10:21
    Windows 10 Firefox

Re: Nivo Slider

Post by jan_2017 »

How can i change the position from nivoslider?
can i put this above hederbanner ? Or better into the headerbanner?

thx Jan

User avatar

miri4ever
Users
Users
Posts: 71
Joined: 22 Jan 2017, 15:39
    Windows 10 Opera

Re: Nivo Slider

Post by miri4ever »

How to add Font Awesome Button in front of the name in private menu ?

User avatar

moffacostanzo
Users
Users
Posts: 151
Joined: 30 Oct 2015, 10:34
    Mac OS X Chrome

Re: Nivo Slider

Post by moffacostanzo »

This one is compatible with 3.3

thx

User avatar

venometal
New user
New user
Posts: 1
Joined: 11 Jan 2021, 03:46
    Windows 7 Chrome

Re: Nivo Slider

Post by venometal »

I am now posting your nivoslider with up to 28 slides if anyone needs this :mml:

Just from your FTP program, upload and replace the files to the exact places as below:

settings.php --> dmzx/nivoslider/controller/ folder

main_listener.php --> dmzx/nivoslider/event/folder

nivoslider_install.php --> dmzx/migrations/folder

nivoslider.html --> dmzx/styles/prosilver/template/folder
slider.html --> dmzx/styles/prosilver/template/ folder

common.php --> dmzx/nivoslider/language/en/ folder

js_op.js --> dmzx/styles/prosilver/template/slider/js/ folder

Thank you for your codings :wave:
You do not have the required permissions to view the files attached to this post! Maybe your post count is too low.

Post Reply Previous topicNext topic