tiagommorena
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: SimpleModal Login] Animated gif never stop spinningEric,
I discovered it´s an incompability with smoothgallery for wordpress (mootools) and the jquery.simplemodal. I edited the osx.js to strip all $ signs to jQuery no conflict, but still the simplemodal can´t reiniciate after the submit. When I put a non-existing user, it shakes and freezes with loading animation. With Firebug I saw the POST is going thru. Do you know any way around it?
Forum: Plugins
In reply to: [Plugin: SimpleModal Login] Animated gif never stop spinningEric,
I just saw that, thank you! I tried to use Jqzoom but I found another zoom plugin that works better and faster, the Cloud Zoom. That code is not necessary anymore. Sad news is I deleted it, got no errors in the Firebug console but still the same problem. Can this be a conflict or jquery version mismatch?
Thanks,
TiagoForum: Plugins
In reply to: [Plugin: SimpleModal Login] Animated gif never stop spinningEric,
Thank you for your answer. I notice that it works in 2 pages – ?page_id=513 and ?page_id=511 – both have a login form also in the page body.
I´m developing the page at http://www.sambacine.com.br/teapot and you can login Tiago Morena and password is test2010.
I´m using this code
<?php wp_loginout($_SERVER['REQUEST_URI']);?>in my header.phpBest Regards,
TiagoForum: Themes and Templates
In reply to: Query two or more custom posts (wordpress 3.0)It´s easy, just find a answer looking into the codex:
<?php query_posts( array( 'post_type' => array('type1', 'type2') , 'posts_per_page' => 10 ) ); ?>Hope this helps someone.