Forum Replies Created
-
AuthorPosts
-
November 15, 2017 at 9:50 am in reply to: Any tips for updating Genesis from 1.8.2 to 2.5.3? #213585oijohnMember
copy website to staging area do the updates and see what happens...
oijohnMemberyou can do it with a plugin such genesis dambuster or you can add a full width template like in business pro
November 12, 2017 at 3:46 pm in reply to: Add Same Content to the Bottom of Every Post – HOW? #213507oijohnMemberAdd this to functions.php
//* 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( 'post' ) )
return;
genesis_widget_area( 'after-entry', array(
'before' => '<div class="after-entry widget-area"><div class="wrap">',
'after' => '</div></div>',
) );
}Then you will want to style it.
add this to style.css
/* After Entry
--------------------------------------------- */
.after-entry {
background-color: #ddd;
border-bottom: 1px solid #222;
border-top: 2px solid #222;
margin-top: 40px;
margin-top: 4rem;
padding: 30px 0;
padding: 3rem 0;
}
.after-entry p:last-child {
margin-bottom: 0;
}
.after-entry .widget {
margin-bottom: 30px;
margin-bottom: 3rem;
}
.after-entry .widget:last-child {
margin-bottom: 0;
}Then your good to go. You may want to change styling slightly all the best.
oijohnMemberissues with footer credits:
use genesis simple edits easy to remove footer links and add your own custom footer.
images as above need to be the same size.
as for contact form just install ninja forms they have a default form set up for you and will fit style of your page.
Nick
-
AuthorPosts