Forum Replies Created
-
AuthorPosts
-
August 6, 2017 at 8:43 am in reply to: Aspire Pro theme – Setting a non-home page as the Blog posts page #210046
kworthington
MemberThanks Brad, that worked perfectly. Have a great day!
kworthington
MemberYou are absolutely right! Thanks so much!
kworthington
MemberPlease disregard. I got it.
The effect of uncommenting:
remove_action( ‘genesis_before_post_content’, ‘genesis_post_info’ );and adding:
function genesischild_post_info($post_info) {
$post_info = 'Posted on [post_date]';
return $post_info;
}
add_filter( 'genesis_post_info', 'genesischild_post_info' );Makes it just show the date. Thanks everyone for your help. I really appreciate it.
kworthington
MemberThanks for the reply. Those ideas did not work for me, though I did fix my CSS, so thanks for that.
I had this in my functions.php:
remove_action( 'genesis_before_post_content', 'genesis_post_info' );
The above removes the date of the post and the "Leave a Comment" link. We want that link gone, but we want to leave the date. Any ideas?
kworthington
MemberNo, it still does not show up, even without the conditional.
kworthington
MemberThanks for the reply, but that didn't add the dates. URL: http://tracyguarino.com/tracy-guarino-new-ceo-forcex-inc/ … for example...
kworthington
MemberThanks for your replies.
In Settings > Reading, I have the "A static page (select below)" radio button selected: Home as the Front Page, and "Blog" as the Posts Page.
I deactivated all plugins. It did not have any effect on showing the dates for posts.
I am not using any custom templates.
Any other ideas? I have already run out of ideas myself.
kworthington
MemberThat code was perfect and works verbatim. Thanks so much Carrie! 🙂
kworthington
MemberI am trying to do this as well, but it just show the thumbnails.
Here is a screenshot of my settings:
http://gyazo.com/394e3050558ca4b77b179af9b2359909.pngThis is the category page in question:
http://everydaywithjoy.com/category/food-as-fuelI also tried Bill Erickson's Genesis Grid plugin as well as the Genesis Post Teasers plugin to accomplish this. Any help is really appreciated since I'm running out of ideas.
Thanks very much.
November 7, 2013 at 7:44 am in reply to: Adding a Landing Page to PixelHappy but don't want the footer widgets #71462kworthington
MemberYES! That's it! Thanks so much Carrie!
November 7, 2013 at 6:56 am in reply to: Adding a Landing Page to PixelHappy but don't want the footer widgets #71458kworthington
MemberThanks for your reply.
Yes, I tried that by itself, but it didn't remove the 3 footer widgets.
I'm not sure if this helps, but here is a screenshot of the Widgets area with the footer widgets supplied by pixelhappy theme:
kworthington
MemberThanks, WiggleChicken - I appreciate the reply.
My client actually decided that the LEAVE A COMMENT block shouldn't be at the top of the Executive theme's posts, so I simply removed it. If this comes up again, I will certainly submit a support ticket.
Thanks again.
kworthington
MemberI am having the same problem - changing "Leave a Comment" to simply "Comments" - though I am using a different snippet:
//* Modify comments header text in comments
add_filter( 'genesis_title_comments', 'custom_genesis_title_comments' );
function custom_genesis_title_comments() {
$title = '<h3>Comments</h3>';
return $title;
}This is on the Executive child theme. I'd really appreciate some help. Thanks.
kworthington
MemberGot it working, please disregard. Thanks.
kworthington
MemberUpdate: this is only happening on the homepage.
I also tried setting the "Homepage Document Title:" on the "Genesis - SEO Settings" page.
Still with no luck. Help is much appreciated! Thanks.
kworthington
MemberI'm running into this same problem, and I did remove that function but it still isn't showing anything between the title tags.
Here is the site: http://fly.codeshippers.com/
Any help is extremely appreciated!
January 24, 2013 at 8:00 pm in reply to: Best practice for displaying a different header image on each page? #14509kworthington
MemberYes, that got me on track - thank you!
For anyone else using Pixel Happy specifically, I used:
.page-id-25 .header-image #title-area, .header-image #title-area #title, .header-image #title-area #title a {
background-image: url(http://mydomain.com/wp-content/uploads/2013/01/Page25Header.png);
background-position: initial initial;
display: block;
float: left;
width: 960px;
height: 120px;
margin: 0;
padding: 0;
text-indent: -9999px;
overflow: hidden;
background-repeat: no-repeat no-repeat;
}January 24, 2013 at 5:23 pm in reply to: Best practice for displaying a different header image on each page? #14457kworthington
MemberThanks John, I'll check it out.
-
AuthorPosts