Elio Rivero
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: TDO Mini Forms] custom taxonomiesameagher, yes, it is compatible with WP 3.0.1
I’ve rolled out an update with support for custom post typesForum: Themes and Templates
In reply to: Delete the html message in commentsJust set ‘comment_notes_after‘ to ” when you call comment_form
<?php comment_form(array('comment_notes_after' => '')); ?>Forum: Fixing WordPress
In reply to: Pages not appearing in nav menuSharon, this is only going to work for new pages. Pages that have been created prior to checking this box are not going to be added.
Forum: Plugins
In reply to: [Plugin: ILC Folding] Default Navigation ModVery interesting, I can see you have removed the href attribute of the ancestor elements. However, you should keep the text enclosed by and and move the text away of the browser area with text-indent: -99999px; so you can still have text on those links that is seen by search engines. I guess
jQuery(“#nav .menu > ul > li.page_item > a”).css(‘text-indent’, ‘-99999px’);
would be enough or you can set it on your stylesheet.
I will try to add this later but it would involve creating an options page so the user can select the desired behaviour for the navigation links.
Best,Elio
Forum: Fixing WordPress
In reply to: how to fix PNG transparency problem in IE?Use the iepngfix behaviour, one of the best solutions out there.
http://www.twinhelix.com/css/iepngfix/Forum: Fixing WordPress
In reply to: WordPress with flash?Virgil, integrating WordPress + Flash is perfectly possible. You might want to check the file that generates the XML output for the NextGen Gallery slideshow. When creating your xml you could add the desired excerpt and images.
There are a number of other solutions when integrating Flash and WordPress. Take a look at this thread in GraphicRiver.Forum: Fixing WordPress
In reply to: New Post and New Page missing after updating to 2.8.1Yes, but I can keep FII open while I’m writing the post, so I can make changes to the images, delete, add title, add a new one. Standard media uploader is fine if you upload one or two images though.
Forum: Fixing WordPress
In reply to: New Post and New Page missing after updating to 2.8.1I had to disable Faster Image Insert plugin in order to properly display the Add New Post/Page sections.
I hope they fix it, Faster Image Insert is a must-have plugin.Forum: Fixing WordPress
In reply to: Flash missing from RSS*bump*
I posted another embedded youtube player and it didn’t make it through Google Reader.
the feed at Feedburner displays correctly the video, but Googl Reader can’t read it.
Any ideas? please?
Forum: Plugins
In reply to: Add new plugins “An unknown error occured”I’m having the same issue. The plugin search/install worked yesterday. Maybe he’s taking the day off.
Forum: Plugins
In reply to: Lightbox and FLVsI’ve finished the plugin and is now hosted on WordPress plugins repository. Please let me know what you think.
Forum: Everything else WordPress
In reply to: Why are most of you being such selfishAssuming you want it on the left of the content, it should be placed before
<div id="content">assuming you want it to the left of the right sidebar, place it before
<?php $current_page = $post->ID; // Hack to prevent the no sidebar error include_once("sidebar-right.php"); ?>One way or another, you theme will most likely get broken, since it hasn’t been designed for another sidebar (i think) but you’ll be able to fix things by hand fixing the css.
One last thing and nothing personal, if nobody answers you is because your question might be too newbie, and it’s better for you to find the answer by yourself. I’ve had few replies in the past due to the newbie nature of my questions, but I figured them out myself and it was a greater learning than having a simple answer like “press this, pull that”. When searching for an answer you’ll always find things that will be helpful to you later. For example, I was once looking for how to insert the extra sidebars and found that include and the TEMPLATEPATH variable defined and figured out that I could include other php files in the same way (I barely know PHP and that makes me a total newbie). Nobody here is evil. We all want to help. I hope you can successfully code your theme, bye.
Forum: Plugins
In reply to: Lightbox and FLVsI’m currently working on a plugin to do this, as I needed it too. Maybe I’ll be getting it done this week.
Forum: Themes and Templates
In reply to: is_home conditional helpI use is_front_page in most of my projects, so you could use
<?php if (!is_front_page()) { ?> <a href="#top"> <img src="<?php bloginfo('template_directory'); ?>/images/top.png" id="toplink"/> </a> <?php } ?>Remember what the Codex says
is_front_page()
When it is the front of the site displayed, whether it is posts or a Page. Returns true when the main blog page is being displayed and the ‘Settings->Reading->Front page displays’ is set to “Your latest posts”, or when ‘Settings->Reading->Front page displays’ is set to “A static page” and the “Front Page” value is the current Page being displayed. Note: this tag was added at Version 2.5.Forum: Plugins
In reply to: Is There A Forum Plug-In?You have several options, but you might want to try first bbPress, it’s easy money.
Now, you can use a plugin like the TDO MiniForms and tweak it to create a forum like the one for TDOMF support, or you can jump to a social network solution like BuddyPress.