Gr1dsl
Forum Replies Created
-
Forum: Plugins
In reply to: [Carousel Slider] Carousel not shows where I wantSame problem here! Glad I am not the only one. I reverted back to 1.3 until a fix is applied.
Forum: Plugins
In reply to: [Kimili Flash Embed] Not working since WordPress 4.0.1 updateUnfortunately the alternative TinyMCE advanced seems to not be working well with my theme. ?? I can just hope Kimili get an update soon.
Forum: Fixing WordPress
In reply to: Problems after giving wordpress it's own directoryProblem solved. Cache was the culprit it seems. If all the problems in the world could be solved while sleeping… ??
Same issue here also.
Any idea is welcome!UPDATE : seems that I debugged myself by removing the if($this->CanLoadScript()) line 756, in read-more-right-here.php file.
Do not know if it is correct but it works.
GOOD NEWS! I’ve made a fix for our problem! ??
Not sure it’s the right syntax nor the right place to put it but I added the following code into the file “jquery.galleryview-2.0.js” which can be found in the galleryView plugin folder on the server :
wp-content/plugins/wordpress-nextgen-galleryview/GalleryView/scripts/jquery.galleryview-2.0.jsAdded code, line 1000 in the MAIN PLUGIN CODE part :
// ***** Transitions jumping bug fix ***** // // Stop transitions when leaving the page/tab of the browser $(window).blur( function () { $(document).stopTime("transition"); } ); // Restart transitions when coming back to the page/tab $(window).focus( function () { $(document).everyTime(opts.transition_interval,"transition",function(){ showNextItem(); }); });
However putting the code directly in on of the plugin files is not a perfect idea since it may be erased with the next plugin update.
I just mixed raw pieces of code together, it does the trick.NEXT I tried to put the exact same code in the footer of my wordpress active theme, so that it cannot be overwritten. The transitions do stop when we leave the page/tab of the browser but do not restart when coming back… I’m just searching a way to call back the transition but I’m not really good at programming.
HELP PLEASE ! ^^
Added code in footer:
<script type="text/javascript"> jQuery(document).ready(function($) { // ***** Transitions jumping bug fix ***** // // Stop transitions when leaving the page/tab of the browser $(window).blur( function () { $(document).stopTime("transition"); } ); // Restart transitions when coming back to the page/tab $(window).focus( function () { //???? }); }); </script>
I have only one slideshow in my page, I don’t think it’s the root of the problem.
But I JUST GOT A THEORY!!
I think I manage to identify what’s going on :
The problem appears when I leave the page, switching to another tab in my browser (by the way I’m testing on Firefox 7.0). When I come back to the page with the slideshow, the wild jumping starts, but the fast transitions only last the exact number of transitions I missed while away from the page!!! Like if they were waiting for the tab to become active again… These missed transitions cleared, the slideshow goes back to normal on its own!I’ll try to fix the issue in the code but I’m not a big brain at programming so HELP IS STILL NEEDED !
Or else does someone know another plugin, jquery powered, able to show images and videos ??
Forum: Fixing WordPress
In reply to: Get a Blog Introduction with a one column in a two column pageHello, I had the exact same problem and just find a way to resolve it.
In your website files :
wp-content/your theme/index.php(or the page where you want to display the introduction)
Just add this following line above the container with the 2 columns:<?php bintro_print(); ?>
Ex:
<big container> <?php bintro_print(); ?> <container> <column1></column1> <column2></column2> </container> </big container>