RaymaN
Forum Replies Created
Viewing 5 replies - 1 through 5 (of 5 total)
-
Forum: Fixing WordPress
In reply to: I need help please, rare problemYeah! I have found the solution. Its a problem with the plugin “Acronym Replacer Revisited”. Now works fine 🙂
Forum: Fixing WordPress
In reply to: I need help please, rare problemYes MichaelH, I have the same problem. The theme is this.
Forum: Themes and Templates
In reply to: Problem with asides and tagsI have find the solution!! This is the code of the index.php:
<?php get_header();?> <div id="content"> <div id="content-main"> <?php function stupid_hack($str) { return preg_replace('|</ul>\s*<ul class="asides">|', '', $str); } ob_start('stupid_hack'); ?> <?php if (have_posts()) : ?> <?php while (have_posts()) : the_post(); ?> <?php if ( in_category(1) && !is_single() ) : ?> <ul class="asides"> <li id="p<?php the_ID(); ?>"><?php echo wptexturize(get_the_content(”)); ?><br/> <p class="postmetadata2"><img src="/blog/images/comments.png" align="absmiddle"> <?php comments_popup_link('0', '1','%')?> | <a href="<?php the_permalink(); ?>" title="Permalink: <?php echo wptexturize(strip_tags(stripslashes($post->post_title), '')); ?>" rel="bookmark">#</a> <?php edit_post_link('(edit)'); ?></p></li> </ul> <?php else: // If it's a regular post or a permalink page ?> <div class="post" id="post-<?php the_ID(); ?>"> <div class="posttitle"> <h2><img src="/blog/images/post.gif"></img> <a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2> </div> <div class="entry"> <?php the_content('Continuar leyendo...'); ?> <?php wp_link_pages(); ?> </div> <div class="postmetadata"> <img src="/blog/images/calendar_view_month.png" align="absmiddle"></img> <?php the_time('l, j/m/y') ?> a las <? the_time('G:i') ?> <?php edit_post_link('[Editar]', ''); ?>| <img src="/blog/images/comments.png" align="absmiddle"></img> <?php comments_popup_link('Sin comentarios', '1 Comentario', '% Comentarios'); ?> | <?php akst_share_link(); ?><?php akst_share_form(); ?><br> <img src="/blog/images/folder_page.png" align="absmiddle" /> <?php the_category(', ') ?> | <img src="/blog/images/tag_orange.png" align="absmiddle" /> <?php the_tags('', ', ', ''); ?></div> <?php comments_template(); ?> </div><?php endif; // end if in category ?> <?php endwhile; ?><?php endif; ?> <p align="center"><?php if(function_exists('pagination')) pagination(3,array("Anterior","Siguiente")); ?></p> </div><!-- end id:content-main --> <?php get_sidebar();?> <?php get_footer();?>Forum: Themes and Templates
In reply to: Problem with asides and tagsNobody knows the solution? 🙁
Forum: Themes and Templates
In reply to: Problem with asides and tagsMichaelH, The Loop of my index.php is different because I use the code for asides, how can I solve this? 🙁
Viewing 5 replies - 1 through 5 (of 5 total)