About Sridhar Katakam
I am an independent WordPress web consultant with 10 years of experience in WordPress theme installation, customization, administration, maintenance, support, documentation, troubleshooting and PSD/design to WP.
Genesis and WordPress Tutorials
Session expired
Please log in again. The login page will open in a new tab. After logging in you can close it and return to this page.
Hello Shridhar,
You know what Damn I was searching for this code for so long, and finally atlast you came up with this topic, appreciated man.
Before XHTML my site was fine with this short of code
add_action( ‘genesis_before’, ‘child_conditional_actions’ );
function child_conditional_actions() {
if( is_home() || is_front_page() ) { //if page is home page or front page
remove_action( ‘genesis_after_post_content’, ‘genesis_post_meta’ );
}}
But once I made it HTML 5, it was showing no matter what code i apply…
And the code which you have given above have Solved the Problem.
Thanks.
Hello Once again,
After updating the code everything went fine but today i saw that in the categories section its still showing – file under, so can you suggest how to remove this.
( as well you can delete this section as its out of post related query,
Today i was Struct in one customization and hope it can be solved by u.
I have made homepage 2 Column, and post page 3 column 160 720 310 size sidebar – content – sidebar respectively.
But Can i know how to shift/move the left side of 160 size below the post title.
So that the title area cover full length of 160 + 720,
In short how to move left sidebar below post title so that Title can cover left sidebar space as well.
Thanks in advance, hope to get the reply soon.)
Change
if (!is_home())
to
if ( !is_home() || !is_category() )
so that the code below works only on homepage and category archive pages.
Can you provide the URL of your site?
I have changed the code to if ( !is_home() || !is_category() ) but still categories page is same,
As well Instead of writing my domain name its the same Sri in my profile, so please visit and follow up will be appreciated.
I have same problem when i try to remove entry footer (category and tags) from website.
Do you have solution for removing cat and tags from all except single (full) posts ?
Thank you in advance !
Well I have used this coding before. Everything works fine but if I delete .entry-footer and add the code you have stated above than the theme stops working and shows fatal error headers already set by output stated at http://_________________. can you tell me any possible solutions
This is helpful for me. I wanted to move the same thing from under my posts. However, I have another question that is still on the same topic somewhat. I am using the Genesis Simple Hook Entry Footer to post email subscription box, but for some reason it is showing up in my category listing. When someone clicks on a category, the email box shows up below each snippet listing. How can I make it to only show up in my full posts?
Worked flawlessly, thank you!
Sridhar and techisayJason Thanks for Helping Me.I was trying it’s Worked
Great Post Sridhar
This is exactly what I needed! Thank you, Sridhar!!