Wordpress Themes - WP Forum at BFA

Wordpress Themes - WP Forum at BFA (http://forum.bytesforall.com/index.php)
-   Center area post/pages (http://forum.bytesforall.com/forumdisplay.php?f=32)
-   -   Titles only on Blog Posts Page (http://forum.bytesforall.com/showthread.php?t=7450)

Marnie Jun 5, 2010 06:02 PM

Titles only on Blog Posts Page
 
Wordpress 2.92
Atahualpa 3.46
url: http://tinyurl.com/26sqgly

I'm using a static front page and would like the blog posts page to display post titles only. It's currently using excerpts. Reading through the forum I believe it involves the center column and the loop, but I don't know how to formulate the syntax.

TIA for any assistance.

Marnie

lmilesw Jun 5, 2010 07:52 PM

Set the number of words to show to 0 and alternatively remove the read more code.

Marnie Jun 5, 2010 10:20 PM

Thanks, I tried that earlier but didn't know how to remove the footer on that page. Figured that out, now to change the size and spacing for that page only...

juggledad Jun 6, 2010 05:47 AM

<body class="blog logged-in">

to keep parts of a post from showing on the blog page, weither is is the landing page or another page,
a - go to ATO->Style & edit CENTER COLUMN->The LOOP
b - find the part you don't want, like
<?php bfa_post_footer('<div class="post-footer">','</div>'); ?>
c - change the leading '<?php ' to '<?php if (!is_home()) {'
d - change the ending from '?>' to ' } ?>'

so that
HTML Code:

        <?php bfa_post_footer('<div class="post-footer">','</div>'); ?>
becomes
HTML Code:

        <?php if (!is_home()) { bfa_post_footer('<div class="post-footer">','</div>'); } ?>
so to get rid of the byline you change
HTML Code:

<?php bfa_post_byline('<div class="post-byline">','</div>'); ?>
to
HTML Code:

<?php if (!is_home()) { bfa_post_byline('<div class="post-byline">','</div>'); } ?>

Marnie Jun 6, 2010 02:58 PM

Thanks for the detailed response. I'm beginning to understand, rather than simply copy and pasting.

Sorry if this is stupid - to address the styling of the post titles on that specific page do I need to address <body class="blog logged-in">?

juggledad Jun 6, 2010 04:01 PM

sorry, I copied my answer from another thread where they wanted to deal with logged in users. I've deleted it from my previous post


All times are GMT -6. The time now is 10:10 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.