Forum Replies Created
-
AuthorPosts
-
June 21, 2013 at 1:37 pm in reply to: Restore theme design settings (colors, sizes, margins, etc) from backup file #47091
tracyBCarpenter
MemberNot sure if this is still an issue, or if you have your backup files, but I would look in /wp-content/uploads/prose for settings.css and settings.php
tracyBCarpenter
MemberI tried deleting those files, and nothing in the visual side of the site broke, but I'm not sure what the actual effect of this on the Genesis/Prose system would be.
tracyBCarpenter
MemberIf you did your customizations in functions.php and custom.css (rather than in the dashboard under Genesis/Design Settings or Custom code), look in wp-contents/uploads/prose to see if files have been written there that override your changes.
tracyBCarpenter
MemberIf you could send a link to your page, that would be very helpful.
tracyBCarpenter
MemberNailed it!
FROM:
// Remove default content for this Page Template
remove_action('genesis_post_content', 'genesis_do_post_image');
remove_action('genesis_post_content', 'genesis_do_post_content');TO:
// Remove default content for this Page Template
remove_action('genesis_post_content', 'genesis_do_post_image');
add_action('genesis_post_content', 'genesis_portfolio_content');
function genesis_portfolio_content() {
if ( ! in_category( 'portfolio' ) )
remove_action('genesis_post_content', 'genesis_do_post_content');
}tracyBCarpenter
MemberI'd love to do this too! It's: http://tracycarpenter.info/portfolio/
The trick (whatever it may be) is to figure out how to control the content for just the category, and not the posts.
page_portfolio.php has this:
remove_action('genesis_post_content', 'genesis_do_post_content');
If you comment it, you get the content not just for the archive, but for the posts as well.
-
AuthorPosts