chavo
Forum Replies Created
-
Thanks Viper!!!
What if I want an auto height? I tried putting $atts[‘height’] = ‘auto’; but it didn’t work.
Once again, thanks.
Thanks Viper!!! This code goes within the_content();?
Actually, I have this code in my frontpage:
<?php query_posts(‘showposts=1&category_name=videos’); ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class=”video-home-content” id=”post-<?php the_ID(); ?>”>
<h3>Videos RFID</h3>
<h2><?php the_title(); ?>
</h2><?php the_content(); ?>
</div>
<?php endwhile; endif; ?>Update:I add the filter to the vipers-video-quicktags.php file. The codes works pretty fine. But I can’t get it working if I change the code to if (is_home()) instead of if (is_single()).
Did you find a solution to this issue?. I want to do the same: have an automatic video size in the front page and a different size in the post page.
Thanks in advance.
Forum: Plugins
In reply to: [Plugin: Ad-minister 0.6] WP 2.7 Tracker Url FixHi. I’m trying to use the tracker in swf banners and gif or jpg banners but I don’t know how to implement it.
Can you post an example of this for both cases?.
Thanks in advance.
Forum: Plugins
In reply to: IMM GLOSSARY AlphabetizedHi. Look at this page
http://itsvista.com/topic/glossary/
They have both plugins working togheter. I think that the solution is getting terms as individual post instead a page. But I don’t know how they make it work.
Anyone have an idea?
Thanks in advance.
Forum: Fixing WordPress
In reply to: [Plugin: NextGEN Gallery] Flash ads on the top over photosDid you tried with with the parameter wmode=transparent for the swf file?
Usually this fix the problem.
Forum: Fixing WordPress
In reply to: Migrate from Joomla 1.0.13 to WordPress 2.6Same problem.
I tried with Joomla2Wordpress Import Wizard v.3 buy I get the next message:
INSERT INTO wp_term_relationships (object_id, term_taxonomy_id) VALUES (’4′, ‘3′)
Query failedDoes anyone can help us?
Thanks in advance.
Forum: Fixing WordPress
In reply to: Exclude currently displayed post(s) from Recent Posts listI’m looking for same solution.
Anyone knowns how to do it?
Thanks in advance.
Forum: Plugins
In reply to: Do we have the chance get the archive links according to specific category?Hi bnfan. Can you post how did you do that?. I’m looking for the same solution and I can’t find it yet.
Thanks in advance.
Forum: Plugins
In reply to: Pages with “more” tagHi. Your plugin works fine, but I want to know how to display the post in a single post template. I want that “more” tag link to <?php the_permalink() ?>.
Thanks in advance.
Forum: Fixing WordPress
In reply to: more tag not functioningHello. I’m having a similar situation than clicknathan describes.
I’m using WP as a CMS. Usually, I use category templates archives to display content but I dislike the url it generates.Supose I have a main menu that have this buttons:
Portfolio | Approach | News.
In the portfolio page, I want to display all posts in portfolio category, but I don’t want that url looks like this: siteurl/category/portfolio.
I want that url looks like this: siteurl/portfolio (if another method is avalaible to do that I don´t know it).
So, I create a Page and I assign a Page template file to this.
This template file is coded using query.
Before the loop I put:
<?php query_posts('category_name=portfolio'); ?>
In this way, I get only all post from portfolio category. But I usually combine different looks for posts in a same page. In my case, I want that posts posted in feauted-portfolio category be in first place and the rest below it. I want that featured post display content whith more tag and the others with the_excerpt.But…you say it. More tag doesn’t work with Pages. (I didn´t know it). Although that, is there a way to get it working?. Or, is possible to get short urls instead of /category/ betweeb siteurl and category name?
Thanks in advance.
ps: sorry for too long post an my bad english.
Forum: Fixing WordPress
In reply to: Is the new dropdown_categories working?Hello, It´s me again. I´m tryng the dropdown menu with the child_of parameter. I want that when I select a sub-category item its redirects to siteurl/category/parent_category/child.
So, if the parent category is “links”, when I select the “links_2” sub-category from the dropdown menu list I want that the url looks like this: site_url/category/links/links_2.
If I put a list_category in the sidebar and I click in a sub-category, the url looks like the url I want, but when I select a sub-category from the dropdown the url looks like this: siteurl/?cat=#
note: # = sub-category ID.Any ideas about how to change it?
Thanks in advance.ps: sorry for my bad english.
Forum: Fixing WordPress
In reply to: many posts, same titles, but need only one to be returned.Same problem. Anyone known a solution?
Thanks in advance.
Forum: Themes and Templates
In reply to: Excluding categories in the_categoryI have been looking for a solution for something like this and I make some modifications to some code posted in various topics and I get this
<?php foreach((get_the_category()) as $cat) {
if (!($cat->cat_ID==’#’)) echo $cat->cat_name . ‘ ‘;
} ?>#= yout cat ID.
I hope it works for you.