clyra
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Help! Page of posts not workingThanks alchymyth, you pointed me to the right direction. Pasting the codes of the 2 indexes made me realize my child theme index was very different. Before, I was suspecting of the innocent ‘Page-of-posts’. Now I’m using a exact copy of the Parent index.php at the Child index.php, and everything is working fine. Saddly I have to say that the problem arises from the following ready-made child:
Forum: Fixing WordPress
In reply to: Help! Page of posts not workingThank you for your attention. I’d just like to see all the posts scrolling down that page, regardless of category. Nothing “specialized”.
Forum: Fixing WordPress
In reply to: Help! Page of posts not workingForum: Fixing WordPress
In reply to: Help! Page of posts not workingNow the child index.php
[broken code moderated – please mark any posted code according to the forum guidelines http://codex.wordpress.org/Forum_Welcome#Posting_Code
or better, use the pastebin for large amounts of code]
Forum: Fixing WordPress
In reply to: Help! Page of posts not workingsorry, I sent the “twenty eleven” PARENT index! hold on
Forum: Fixing WordPress
In reply to: Help! Page of posts not workingThis is the index.php inside my twenty-eleven-child
<?php
/**
* The main template file.
*
* This is the most generic template file in a WordPress theme
* and one of the two required files for a theme (the other being style.css).
* It is used to display a page when nothing more specific matches a query.
* E.g., it puts together the home page when no home.php file exists.
* Learn more: http://codex.wordpress.org/Template_Hierarchy
*
* @package WordPress
* @subpackage Twenty_Eleven
*/get_header(); ?>
<div id=”primary”>
<div id=”content” role=”main”><?php if ( have_posts() ) : ?>
<?php twentyeleven_content_nav( ‘nav-above’ ); ?>
<?php /* Start the Loop */ ?>
<?php while ( have_posts() ) : the_post(); ?><?php get_template_part( ‘content’, get_post_format() ); ?>
<?php endwhile; ?>
<?php twentyeleven_content_nav( ‘nav-below’ ); ?>
<?php else : ?>
<article id=”post-0″ class=”post no-results not-found”>
<header class=”entry-header”>
<h1 class=”entry-title”><?php _e( ‘Nothing Found’, ‘twentyeleven’ ); ?></h1>
</header><!– .entry-header –><div class=”entry-content”>
<p><?php _e( ‘Apologies, but no results were found for the requested archive. Perhaps searching will help find a related post.’, ‘twentyeleven’ ); ?></p>
<?php get_search_form(); ?>
</div><!– .entry-content –>
</article><!– #post-0 –><?php endif; ?>
</div><!– #content –>
</div><!– #primary –><?php get_sidebar(); ?>
<?php get_footer(); ?>Forum: Fixing WordPress
In reply to: Help! Page of posts not workingblog pages shows max. [10] posts
Forum: Fixing WordPress
In reply to: Help! Page of posts not workingI selected that page as “page of posts” at the “Customize” area of WP.
Forum: Themes and Templates
In reply to: How to change the "Home" title on the main menu?Thanks Christine and Alchymyth. I used the functions.php solution and I’m glad it worked.
Forum: Themes and Templates
In reply to: How to remove the comments formGot it. Removed the line from the sidebar-page.php (the template for all the pages)!
Resolved.
Forum: Themes and Templates
In reply to: How to remove the comments formThanks, karunshakya45, but it didn’t work for the pages, only for posts.
Forum: Themes and Templates
In reply to: How to remove the comments formThank you, Cooper. I’m more interested in removing the comments from the “pages” than the “posts”. Can you tell me how do I hide the comment box with display:none?
Forum: Fixing WordPress
In reply to: bulletsI restarted MAMP and the bullets are gone now.
#secondary li {list-style: none;}
I don’t know how but it’s solved.
Thanks
Forum: Fixing WordPress
In reply to: bulletsI’m using the virtual host MAME.
Forum: Fixing WordPress
In reply to: bulletsI have done the download and reinstalled WP, but the change of list-style have no effect.