Forum Replies Created
-
AuthorPosts
-
July 21, 2014 at 10:49 pm in reply to: Adding pagination tags (rel="next" and rel="prev") to individual pages and posts #115321
Lauren Gaige
MemberHi there,
I'm pretty sure you just need to use the <!--nextpage--> tag within your posts where you'd like the post to split and go to the next page.
Here is more info on using this tag:
http://codex.wordpress.org/Styling_Page-Links
Lauren Gaige
MemberHi Mark,
You can decrease that space by adding:
.home .site-inner {
margin: 0 0 40px;
}If you have this on more than just the home page, you can also use the page ID of any other pages it's affecting like this:
.home .site-inner,
.page-id-2 .site-inner {
margin: 0 0 40px;
}Hope this helps!
Lauren Gaige
MemberHi Angela,
You could do it the way you're describing and just do a password protected page. I've seen this done a lot, so it's not uncommon.
Another way to do it, is to the use the Auto-Responder feature within MailChimp and send your free material directly from Mailchimp after the subscription is confirmed.
And one more option is to use the Gravity Forms plugin ( you would need the Developer license to get the Mailchimp add-on) along with the Members plugin for controlled access, easy MailChimp integrations, and easy form submissions from the customer.
Hope this helps!
Lauren Gaige
MemberIf I'm understanding you correctly, you'd like to put a background on the part you've placed a black box around. If this is the case, you will add your image under the .sidebar selector in your style.css file.
July 21, 2014 at 10:23 pm in reply to: [Generate Pro Theme] Help with some minor customisations – Not more than 5 mins #115315Lauren Gaige
MemberHi there,
Looks like you may have gotten #1 and #2 sorted out!
On #3 & #4, when you're using the excerpt feature, it only pulls in the first so many characatars of a post and doesn't show the styling of that text. So you could either shorten that excerpt, or remove it entirely.
To remove it or shorten it, go to your Genesis>Theme Settings and look under the Content Archives section. You can select the content limit and put 0 to remove it, or lower your number to try out different lengths.
Hope this helps!
Lauren Gaige
MemberHi there!
If you're wanting to remove it from more than one page ID, you'll need to write it like this:
is_page( array( 42, 54, 6 ) )
swapping out the page ID's with your own.
For more info on this, check the link below on how Conditional tags can be written:
http://codex.wordpress.org/Conditional_Tags
Hope this helps!
Lauren Gaige
MemberHi there!
I'm not sure specifically what features you're looking for and what's different from one install to over another, but as long as you download a fresh copy of the Agency Theme from your My Studiopress account, you should be all set!
You may have a difference in plugins as well, so you may check those to be sure you aren't missing a feature because you don't have a specific plugin installed.
Hope this helps!
July 21, 2014 at 10:13 pm in reply to: How can I optimize blog post image dimensions for mobile (any orientation) #115311Lauren Gaige
MemberHi there,
You could do a couple things here:
1. You could make your images just a bit bigger so it fills the widget of the landscape view on an iphone.
2. Or.. since most of your images are assigned the class alignright, you can force the alignright class to be like the aligncenter class under the media queries for that screen size.
So you could add:
.alignright {
float: none;
margin: 0 auto;
}under the @media only screen and (max-width: 767px) section.
Hope this helps!
July 21, 2014 at 10:04 pm in reply to: framework 2.1.2 – primary navigation extras – date gone – #115310Lauren Gaige
MemberSure thing! You can add the code below to your functions.php to get your date back!
add_filter( 'wp_nav_menu_items', 'prefix_primary_nav_extras', 10, 2 );
/**
* Filter menu items, appending either a search form or today's date.
*
* @param string $menu HTML string of list items.
* @param stdClass $args Menu arguments.
*
* @return string Amended HTML string of list items.
*/
function prefix_primary_nav_extras( $menu, $args ) {
//* Change 'primary' to 'secondary' to add extras to the secondary navigation menu
if ( 'primary' !== $args->theme_location ) {
return $menu;
}// Uncomment this block to add the date to the navigation menu
/*
$menu .= '<li class="right date">' . date_i18n( get_option( 'date_format' ) ) . '';
*/return $menu;
}Just be sure to take a backup before doing so just in case something goes crazy!
Lauren Gaige
MemberHi Donnie,
Just emailed you the fix through my support desk.
But for anyone else needing the answer...
Change the line that says:
remove_action( 'genesis_after', 'genesis_footer_widget_areas' );
to
remove_action( 'genesis_before_footer', 'genesis_footer_widget_areas' );
and that will remove the footer-widgets from the page landing.
-
AuthorPosts