LockeAG4
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Show Taxonomy Post Term NameCan I bump? please?
oh alchymyth, I didn’t see your post, I was writing my last post , let’s try your your idea..
Thanks very much
Esmi , I’m to close to get this thanks to you…
I take the example above and use it like this:
<?php $my_query = new WP_Query('cat=6&showposts=24p&orderby=id&order=asc'); $c = 0;?> <?php while ($my_query->have_posts()) : $my_query->the_post(); $c++;?> <?php if( $c == 1) echo '<div class="page">'; elseif ($c == 6) echo '</div>';?> <?php if( $c == 6) echo '<div class="page">'; elseif ($c == 12) echo '</div>';?> <?php if( $c == 12) echo '<div class="page">'; elseif ($c == 18) echo '</div>';?> <?php if( $c == 18) echo '<div class="page">'; elseif ($c == 24) echo '</div>';?> <div> <?php the_post_thumbnail(); ?> <h1 class="other-item"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h1> </div> <?php endwhile; ?>
But how can I make a simple way to achive this?
Forum: Fixing WordPress
In reply to: How to display all the attached images of the postsZeo Thanks very much for this , unfortunately I’m trying to make that work… but no success …. I place it in a normal loop , without tabs… and is not showing anything…
step by step
– I uploaded 4 images to post 7
– I add <?php echo do_shortcode(‘[gallery]‘); ?> to the loop– refresh front post 7
– the source code and firebug show and empty space inside the class that must contain the gallery.
and really Thank you!…
Forum: Plugins
In reply to: [Plugin: WP-Table Reloaded] : Custom Field as IDtremendous, working like charm , thanks Tobias
and sorry I was wrong about the PDF … waas CVS and Print te table option in your demo page….
I mean will be a great idea to save as PDF ??
But anyway, thanks very much.
Forum: Fixing WordPress
In reply to: How to display all the attached images of the postsHi Zeo ,
well is beccause I using tabs and jquery to display the content.
let me share my idea:
<?php get_header(); ?> <section id="maincontent"> <?php the_breadcrumb(); ?> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <!-- tabs --> <ul class="tabsX"> <a href="#"><?php the_title(); ?></a> <a href="#">Otras Vistas</a> <a href="#">Especificaciones</a> </ul> <!-- single pane. it is always visible --> <div class="panesX"> <div class="postX"> <div class="infoX"> <?php the_post_thumbnail(); ?> <?php the_content(); ?> </div> <br class="clear" /> </div> <div class="postX"> <?php include (TEMPLATEPATH . '/includes/gallery.php'); ?> <br clear="all" /> </div> <div class="postX"> <div class="tableX"> <?php spec_id ('spec_id') ?> <?php the_post_thumbnail(); ?> </div> <br class="clear" /> </div> </div> <?php endwhile; else: ?> <p>Sorry, no posts matched your criteria.</p> <?php endif; ?> </section> <?php get_footer(); ?>
ANd that’s why I can’t use shortcode
Forum: Fixing WordPress
In reply to: How to display all the attached images of the postsOk … I stop trying that ??
I just put 4 custom fields at the function.php … to make it work for the moement
If somebody know how to solve this , It will be very kind! ??
…
Forum: Fixing WordPress
In reply to: rss.php bad charsetSET 4 : THE SOLUTION:
<?php require_once (ABSPATH . WPINC . '/rss.php'); $rss = @fetch_rss('https://YOURFEED'); if ( isset($rss->items) && 0 != count($rss->items) ) { ?> <ul> <?php $rss->items = array_slice($rss->items, 0, 5); foreach ($rss->items as $item ) { ?> <li> <a href='<?php echo wp_filter_kses($item['link']); ?>'> <?php echo wp_specialchars($item['title']); ?> </a> </li> <?php } ?> </ul> <?php } ?>
See’a
Forum: Fixing WordPress
In reply to: rss.php bad charsetSET 3 , Help , I need sombody help , no just anybody ….please
Forum: Fixing WordPress
In reply to: rss.php bad charsetany idea? please
Forum: Fixing WordPress
In reply to: RSS Error on line 22: How To fix???When you validate choose help to see how to fix the problem or to guide your to the source.
Forum: Fixing WordPress
In reply to: rss.php bad charsetSET 2
I just try with another charset like “ISO-8859-1”, and nothing happens , I check the tables of my main blog and some tables are latin1_swedish_ci ?? most of it are plugins tables…
any idea?
thanks
Forum: Fixing WordPress
In reply to: Fold Page List: subpages displaying incorrectlyoh! thanks very much that really do the job, but it separates the parent pages to much, but also check this out :
We should have:
Productos
|_ Pisos Flotantes
|_ Pisos Laminados
GaleriaBut it show like:
Productos
|_ Pisos Flotantes
Galeria
|_ Pisos LaminadosI think now is problem of the code I’m using for the Fold Pages List isn’t?
thanks
Forum: Fixing WordPress
In reply to: Fold Page List: subpages displaying incorrectlyThanks I think you’re right. let’s see if the developers can give me a Hand , and I will came back to post the solution if the is one.
see’a
Forum: Fixing WordPress
In reply to: Fold Page List: subpages displaying incorrectlyany idea? sorry , but I don’t get with the solution.