Forum Replies Created
-
AuthorPosts
-
Holly BergforsMember
I've used Paid Memberships Pro on a few different sites and haven't had any conflicts with other plugins, plus it's super easy to set up and has options for just about every type of membership plan imaginable. I've experimented with most of the popular premium and free membership plugins and it's by far my favorite.
Need help getting your Genesis site up and running? Check out my portfolio and get in touch!
Holly BergforsMemberThe genesis_meta hook is perfect, you just need to set the priority of the action to "1" and it'll load ahead of everything else between the <head> tags. Just add the "1" at the very end like so:
add_action( 'genesis_meta', 'int_meta_tag', 1 );
Need help getting your Genesis site up and running? Check out my portfolio and get in touch!
Holly BergforsMemberHi there!
You're going to want to go into your Genesis theme folder (parent, not child theme), copy search.php, then paste it into the root of your child theme folder. Open up the child theme copy of search.php in whatever text editor you usually use for code editing then add this line of code within the genesis_do_search_title function ahead of the rest of its contents:
echo get_search_form();
So the function should look like this when you're done:
function genesis_do_search_title() { echo get_search_form(); $title = sprintf( '<div class="archive-description"><h1 class="archive-title">%s %s</h1></div>', apply_filters( 'genesis_search_title_text', __( 'Search Results for:', 'genesis' ) ), get_search_query() ); echo apply_filters( 'genesis_search_title_output', $title ) . "\n"; }
Save the file then test to make sure it shows up on your search results page. The styling will probably have to be tweaked a bit, but that should get you what you need.
Need help getting your Genesis site up and running? Check out my portfolio and get in touch!
-
AuthorPosts