Forum Replies Created
-
AuthorPosts
-
liannef
MemberTHANK YOU!! That did it....
I only installed the caching plugin because I heard that it makes your site run faster. Is that true or is this really just unnecessary?
-Lianne
liannef
MemberThanks! Since I use FeedBlitz...should I cancel re-direction before I do this?
liannef
MemberI did that and no luck...any other suggestions??
liannef
MemberThank you! Do I add this to my functions.php or is this in place of the other code I added earlier?
This is what I have currently
/** Register Before Posts widget area On Blog Page Only**/ genesis_register_sidebar( array( 'id' => 'before-blog', 'name' => __( 'Before Blog Widget', 'wpsites' ), 'description' => __( 'This is the before post widget area on the blog page only.', 'wpsites' ), ) ); /** * @author Brad Dalton - WP Sites * @link http://wp.me/p1lTu0-9Jr */ /** Before Posts On Blog Page Only*/ add_action( 'genesis_before_loop', 'wpsites_before_blog_widget', 9 ); function wpsites_before_blog_widget() { if ( is_page( '22714' ) ) { echo '<div class="before-blog">'; dynamic_sidebar( 'before-blog' ); echo '</div><!-- end .before-blog -->'; } }
liannef
MemberHi There! I figured that out, and I have it set with the blog page template BUT I don't know how to add an intro paragraph at the top without trampling all over the breadcrumbs. I actually used your code at the suggestion of another member in my functions php to set up a widget that would appear before posts but now the breadcrumbs are below it
November 25, 2013 at 8:20 am in reply to: Genesis Featured Widget Amplified Plugin for Site Archives #75505liannef
MemberTHANK YOU!!! Now I just need to figure out how to move the breadcrumbs up above what i just did LOL
November 25, 2013 at 7:22 am in reply to: Genesis Featured Widget Amplified Plugin for Site Archives #75500liannef
MemberAWESOME THANK YOU!! Also, do you know if I can display an intro paragraph before the posts??
liannef
MemberHey Andrea,
I added this code to a new .php file and uploaded it but it's not showing in my template options for the page
<?php remove_action( 'genesis_loop', 'genesis_do_loop' ); add_action( 'genesis_loop', 'child_grid_loop_helper' ); /** Add support for Genesis Grid Loop **/ function child_grid_loop_helper() { if ( function_exists( 'genesis_grid_loop' ) ) { genesis_grid_loop( array( 'features' => 0, 'feature_image_size' => 0, 'feature_image_class' => 'alignleft post-image', 'feature_content_limit' => 0, 'grid_image_size' => 30, 'grid_image_class' => 0, 'grid_content_limit' => 250, 'more' => __( '[Continue reading]', 'genesis' ), ) ); } else { genesis_standard_loop(); } } genesis();
liannef
MemberThey aren't pages - they just have the "category" stripped via the Yoast plugin. Those are the actual categories....I just want to be able to display a grid on a page instead of this list that appears (i think I'm using the archive template) http://themakeupgirl.net/archive/
liannef
MemberOkay, I have the plugin installed. But there isn't anyplace to specify what pages only this
Enable on:
Blog Home Category Archives Tag Archives Author Archives Search Results
Is there a shortcode to use it on a page?
liannef
MemberDoes that conflict with the grid loop code that is already in the theme?
liannef
MemberHey Andrea,
Any idea how I can do the grid on that link?
-Lianne
liannef
MemberHey Andrea,
I was trying something - it's back now LOL
liannef
MemberTHANK YOU!!!! Worked like a charm....I think I need to take a PHP class! 😀
liannef
MemberHey Andrea...
I did that and now it looks like this
liannef
MemberThanks Amanda! (wow, you've heard a lot from me the past few days huh?! LOL)
(edited to remove all the PHP code)
liannef
MemberTHANK YOU Andrea!!!! Best best best... 😀
liannef
MemberI should have been clearer - sorry
they aren't showing up on the FRONT page - they are fine everywhere else.
-Lianne
liannef
MemberThank you!!!!
liannef
MemberDONE....thank you again!
-
AuthorPosts