MyBB Community Forums
[For 1.6] Dynamic To Top - Printable Version

+- MyBB Community Forums (https://community.mybb.com)
+-- Forum: Extensions (https://community.mybb.com/forum-201.html)
+--- Forum: Plugins (https://community.mybb.com/forum-73.html)
+---- Forum: Plugin Releases (https://community.mybb.com/forum-102.html)
+---- Thread: [For 1.6] Dynamic To Top (/thread-78596.html)

Pages: 1 2


RE: Dynamic To Top - Dragonzsoul - 2011-07-05

it is interesting Thank


RE: Dynamic To Top - bidouille - 2011-07-05

I confirm
Incompatibility with QUICKQUOTE version Aries-Belgium


RE: Dynamic To Top - mihu - 2011-09-26

If you want to fix this plugin please follow all these steps :
1.Deactivate your plugin.
2.Open file dynamictotop.php (you can find this file into inc/plugins directory), search :
<script type=\"text/javascript\">
		$(document).ready(function() {
			/*
			var defaults = {
	  			containerID: \'moccaUItoTop\', // fading element id
				containerHoverClass: \'moccaUIhover\', // fading element hover class
				scrollSpeed: {\$mybb->settings[\'scrollSpeed\']},
				easingType: \'{\$mybb->settings[\'easing\']}\' 
	 		};
			*/
			
			$().UItoTop({ easingType: \'{\$mybb->settings[\'easing\']}\' });
			
		});
</script>
and replace with :
<script type=\"text/javascript\">
		jQuery(document).ready(function() {
			/*
			var defaults = {
	  			containerID: \'moccaUItoTop\', // fading element id
				containerHoverClass: \'moccaUIhover\', // fading element hover class
				scrollSpeed: {\$mybb->settings[\'scrollSpeed\']},
				easingType: \'{\$mybb->settings[\'easing\']}\' 
	 		};
			*/
			
			jQuery().UItoTop({ easingType: \'{\$mybb->settings[\'easing\']}\' });
			
		});
</script>
After replacement you can save and close file.
3.Open file jquery.ui.totop.js, from directory inc/plugins/dynamic-to-top/js, and before :
(function($){
add next line :
jQuery.noConflict();
4.After step 3 everything should be ok! Now you can activate it and use with QuickQuote.


RE: Dynamic To Top - bidouille - 2011-09-26

Mihu

It's good for me.

Thanks


RE: Dynamic To Top - SLAVOO - 2013-04-13

Don't work.
After activate is:
Quote:Fatal error: Cannot redeclare find_replace_templatesets() (previously declared in /virtual/insidery.cba.pl/inc/adminfunctions_templates.php:22) in /virtual/insidery.cba.pl/inc/adminfunctions_templates.php on line 101

Please help me!


RE: Dynamic To Top - Markus_Wolf - 2013-04-23

not working for me.


RE: Dynamic To Top - Astorm - 2013-09-02

Works for me too after doing the fix, thanks for that


RE: Dynamic To Top - Bitz - 2013-09-03

(2011-09-26, 03:41 PM)mihu Wrote: If you want to fix this plugin please follow all these steps :
1.Deactivate your plugin.
2.Open file dynamictotop.php (you can find this file into inc/plugins directory), search :
<script type=\"text/javascript\">
		$(document).ready(function() {
			/*
			var defaults = {
	  			containerID: \'moccaUItoTop\', // fading element id
				containerHoverClass: \'moccaUIhover\', // fading element hover class
				scrollSpeed: {\$mybb->settings[\'scrollSpeed\']},
				easingType: \'{\$mybb->settings[\'easing\']}\' 
	 		};
			*/
			
			$().UItoTop({ easingType: \'{\$mybb->settings[\'easing\']}\' });
			
		});
</script>
and replace with :
<script type=\"text/javascript\">
		jQuery(document).ready(function() {
			/*
			var defaults = {
	  			containerID: \'moccaUItoTop\', // fading element id
				containerHoverClass: \'moccaUIhover\', // fading element hover class
				scrollSpeed: {\$mybb->settings[\'scrollSpeed\']},
				easingType: \'{\$mybb->settings[\'easing\']}\' 
	 		};
			*/
			
			jQuery().UItoTop({ easingType: \'{\$mybb->settings[\'easing\']}\' });
			
		});
</script>
After replacement you can save and close file.
3.Open file jquery.ui.totop.js, from directory inc/plugins/dynamic-to-top/js, and before :
(function($){
add next line :
jQuery.noConflict();
4.After step 3 everything should be ok! Now you can activate it and use with QuickQuote.
Thanks a bunch. Worked perfectly.


RE: Dynamic To Top - User 6029 - 2016-11-27

Dynamic To Top 1.1 ( for 1.8x )

* updated 11/26/2016 for 1.8.x by Vintagedaddyo

* 1.1 adds option to display on portal


.zip   Plugin_dynamic_to_top_1.1.zip (Size: 51.4 KB / Downloads: 102)