Missing Categories


Author Message
Kelley

Posted: 10/25/2011
Quote message 

Hi all,

On this page (or any category landing page):

http://65.49.76.181/category/career-coaching/

I'd like all the categories to appear in the side bar. I've set up the "logic" widget to display these on all archives, posts, etc.

Thanks,

Kelley
 
Kelley

Posted: 10/25/2011
Quote message 

For the same site, but this page, how/where do we add the HR line break in the latest version of Artisteer/WordPress?

http://65.49.76.181/blog/ or any category page of blogs -- so that there is definition between posts.

It used to be in postmetadata-footer.php but I don't believe I have that page any more?

Thanks again!
 
Gina

Posted: 10/25/2011
Quote message 

Hi Kelley,

Did you place Ctegories widget into sidebar in wp-admin (Appearance --> Widgets)? I can't see it the source code of the page. Your sidebar contains only text-widget
 
Kelley

Posted: 10/25/2011
Quote message 

Thanks for the reply Gina.

Yes, it's there and then controlled by a Widget Logic plugin which tells it where to display this information. I have post, single, archive, search, 404 selected -- that about covers the gamut I think for blog pages.

-Kel
 
Gina

Posted: 10/25/2011
Quote message 

So, in this Widget Logic you are supposed to choose the php files that?

If so, add content.php
 
Abland

Posted: 10/25/2011
Quote message 

Hi, Kelley,

In your theme's "content.php" find the line: (yours might differ)
'after' => theme_get_metadata_icons( 'category,tag,comments', 'footer' )

Add the horizontal line by placing . '<br /><hr /><br />' at the end of the line:
'after' => theme_get_metadata_icons( 'category,tag,comments', 'footer' ) . '<br /><hr /><br />'

For widget context, did you also select to show on all categories? If so, try the reverse and hide it from all pages and front page, etc...
 
Kelley

Posted: 10/25/2011
Quote message 

Abland,

You are wise beyond your years! LOL. I did the reverse logic and that worked a treat! Thanks, too, for the revised horizontal code.

Gina, I appreciate your efforts, too!

Kelley
 
Lynn

Posted: 4/22/2014
Quote message 

Quote Abland:

Hi, Kelley,

In your theme's "content.php" find the line: (yours might differ)
'after' => theme_get_metadata_icons( 'category,tag,comments', 'footer' )

Add the horizontal line by placing . '<br /><hr /><br />' at the end of the line:
'after' => theme_get_metadata_icons( 'category,tag,comments', 'footer' ) . '<br /><hr /><br />'

For widget context, did you also select to show on all categories? If so, try the reverse and hide it from all pages and front page, etc...


Thank you!!