- This topic has 3 replies, 2 voices, and was last updated 9 years, 7 months ago by .
Viewing 4 posts - 1 through 4 (of 4 total)
Viewing 4 posts - 1 through 4 (of 4 total)
- You must be logged in to reply to this topic.
Home › Community Forums › Epik Theme Support › How to remove post link or meta from each post.
Tagged: meta, post hyperlink, post title
I’ve seen a few topics similar to this but I can’t figure out how to change this. Recently updated to genesis 2.0 but still using epik 1.2 (i think). I have a page where I have posts but no title for the posts. Now it is showing a hyperlink to the post and I don’t want it to.
I have tried Title Toggle plugin but it works only for pages not posts, unless you put some code in ( I tried and it didn’t work), I have tried puting remove_action( ‘genesis_after_post_content’, ‘genesis_post_meta’ ); with and without a “12” in it but I am not sure if that is the right way to do it, and its possible I am putting the code in the wrong place.
here is the page: http://www.davemcguire.org/short-sales
Any help would be great. Thanks
Take a look here at the SP code snippets – http://my.studiopress.com/snippets/
If you’re using the old XHTML then you’ll see the post meta and post info links (depending on which method you want to implement)
If you’re using the HTML5 version of Epik (1.3 and higher) then you can look for “ENTRY HEADER (HTML5)” and “ENTRY Footer (HTML5)” for the HTML5 code
Thanks for the fast response. I tried the old XHTML previously and it didn’t work so maybe I am doing it wrong. Should I remove post info, or post meta or both? and if so, where should a place the snippet? maybe that is what I am doing wrong. putting it in the wrong place. I am using epik 1.2 and genesis 2.0.1
If you’re using the old markup (epik 1.2) then you would use the XHTML code. Example –
//* Remove the post meta function
remove_action( 'genesis_after_post_content', 'genesis_post_meta' );<!--formatted-->
You would place this in your functions.php file. You could also use the Simple edits plugin – http://wordpress.org/extend/plugins/genesis-simple-edits/ to add it as well…..thats what they recommend for beginners.