ale152
Forum Replies Created
-
Forum: Plugins
In reply to: [Advanced Code Editor] Automatically scroll against me!It only happens on my EEEPC 1000H, not on my desktop with the same configuration ??
Forum: Plugins
In reply to: [Advanced Code Editor] Automatically scroll against me!(I’m using latest version of chrome on Kubuntu 12.04)
Forum: Plugins
In reply to: [Lightbox Plus Colorbox] [Plugin: Lightbox Plus] Infinite scroll issueI found that if I call, from firebug console, this code:
$("a[rel*=lightbox]").colorbox({maxHeight:"100%",opacity:0.8,slideshow:true,slideshowAuto:false,slideshowSpeed:2500,slideshowStart:"start",slideshowStop:"stop"});
the lightbox list of images will update with the new images!
The problem is that if I call this code from within the infinite scroll callback, it doesn’t work!This is my infinite scroll callback:
$('#sort').infinitescroll({ /// ... ... ... /// },function( newElements ){ var $newElems = $( newElements ); $newElems.css('position', 'absolute'); $newElems.css('margin', '10px'); console.log($newElems); $('#sort').masonry( 'appended', $newElems, true ); $("a[rel*=lightbox]").colorbox({maxHeight:"100%",opacity:0.8,slideshow:true,slideshowAuto:false,slideshowSpeed:2500,slideshowStart:"start",slideshowStop:"stop"}); });
What am I doing wrong?
I don’t know if I explained my problem well, but I would like to use the carousel like a lightbox.
Is it possible to do that? Can I open a list of featured images with the carousel?
It would be also great if comments showed in the carousel refer to the post of which image is featured to.Thank you!
This is a really useful thing, but I don’t know if it can solve my problem…
I don’t have a “gallery” as indented by WordPress, but just a lot of posts with featured image.
I collect all these featured images with a loop in the home page, and I would like to open them with the carousel.Forum: Themes and Templates
In reply to: WordPress page template as indexAnd if I use the same index.php, then how do I link the blog page to the index.php?
Forum: Themes and Templates
In reply to: WordPress page template as indexUhm… and what is the default index query, so I can use the same one?
Forum: Themes and Templates
In reply to: the weirdest bug i ever seenI have the same issue!
I noticed it since I created a new function.php to my child theme, but removing it didn’t solve the problem.
What is it?Mhhh, I’m having some problems editing custom fields.
I edited booking-fields.php with my custom fields, then I edited classes/em-booking.php with the same values:/** * Contains an array of custom fields for a booking. This is loaded from em_meta, where the booking_custom name contains arrays of data. * @var array */ var $custom = array( 'name' => array('name'=>'name','type'=>'%s'), 'family_name' => array('name'=>'family_name','type'=>'%s'), 'ASWG' => array('name'=>'ASWG','type'=>'%s'), 'date_place_arr' => array('name'=>'date_place_arr','type'=>'%s'), 'date_place_dep' => array('name'=>'date_place_dep','type'=>'%s'), 'tshirt' => array('name'=>'tshirt','type'=>'%s') ); /**
What should I do now to make it work?
Great! That is what I was looking for!
But now… If I edit the input form, how do I insert these data into the DB?Thank you very much! ??
I’m using wordpress 3.1.4 and I can’t add extra fields from “Dashboard > Users > Add New” ??
What can I do?Forum: Fixing WordPress
In reply to: BBcode commentsI don’t need another plugin… I just want to process my comments for bbcode, like other posts…
Forum: Fixing WordPress
In reply to: BBcode commentsPlease… help me!