Forum Replies Created
-
AuthorPosts
-
February 17, 2017 at 7:31 pm in reply to: Mobile Menu Toggle Not Centered, Offscreen at Smaller Screen Sizes #201429acleanplateMember
Thanks a million!!!
acleanplateMemberGot it, thanks Victor!
June 4, 2016 at 12:53 pm in reply to: Format Archive/Blog Template to Display Entry Thumbnails Before Entry Title #186949acleanplateMemberThe second one worked, thank you!!!
June 3, 2016 at 4:17 pm in reply to: Format Archive/Blog Template to Display Entry Thumbnails Before Entry Title #186916acleanplateMemberThe first one in functions.php and the second one in new blog-page and archive-page phps.
June 3, 2016 at 4:09 pm in reply to: Format Archive/Blog Template to Display Entry Thumbnails Before Entry Title #186913acleanplateMemberThanks Brad! I tried using the code in that article but on my archive and blog templates and it didn't work.
acleanplateMemberThanks, but I want to be able to keep the display of the social icons branded with my site, and it doesn't look like Font Awesome has that capability.
I'm comfortable with styling but not so much functions. If someone can help me out with getting the widget to load before the search bar, I'd really appreciate it!
acleanplateMemberI wrote the page in CSS and don't see that HTML anywhere (or know where to look to edit it, apparently).
Any other ideas?
December 28, 2015 at 5:48 pm in reply to: Divine – After-entry widget doesn't display on custom post types #174985acleanplateMemberThank you, Susan! That is exactly what I needed. In case anyone else runs into a similar issue, here is the code I dropped into my functions.php file:
//* Register widget areas genesis_register_sidebar( array( 'id' => 'after-entry', 'name' => __( 'After Entry', 'theme-prefix' ), 'description' => __( 'This is the after entry section.', 'theme-prefix' ), ) ); //* Hooks after-entry widget area to single posts add_action( 'genesis_entry_footer', 'my_after_entry_widget' ); function my_after_entry_widget() { if ( ! is_singular( 'recipe' ) ) return; genesis_widget_area( 'after-entry', array( 'before' => '<div class="after-entry widget-area"><div class="wrap">', 'after' => '</div></div>', ) ); }
Where 'recipe' is the custom post type that was previously not displaying the after-entry widget.
What I wanted to know from Divine's support was where the after-entry widget area code like Carrie provides is located in their php files, because I thought all I would have to do is add is_singular( 'recipe') somewhere in the theme. Their answer was that I could hire them to do it for $50, but this really should have been a five-minute fix with no sweat if I'd just known up front which file I had to edit.
Thanks again, Susan!
-
AuthorPosts