Forum Replies Created
-
AuthorPosts
-
[email protected]Member
All normal:
[email protected]MemberThanks for the reply Porter! Yeah, as you said removing the padding, which I could do in a round about way in css (and probably will) will solve it, but why the heck are those "buttons to the home page with no text" areas in there? Where did they come from??
August 26, 2015 at 4:13 pm in reply to: Different excerpt/content display for Custom Post Type Archives #163640[email protected]Memberbumping this up - any suggestions?
[email protected]MemberHey James! I'm still using that plugin because I'm using the grid loop functions in a totally different way for the category archives, and so I needed the homepage to function like a regular gridloop + pagination, which I achieved with the Amplified plugin. (Super roundabout, but this is like the 3rd generation of how the homepage was functioning).
BUT ALL THAT SAID - I really think the Amplified plugin is a red herring here. When I deactivate it completely, my problem with capped pagination at 28 pages persists!
September 2, 2014 at 12:50 pm in reply to: Metro Pro – Why so many extra, blank Pagination pages? #122448[email protected]MemberHi Anita! Yep, tried that right after I posted here - no effect 🙁
Realized I no longer needed the amplification features for this one, so kept it off.
Any other ideas?
MH
January 29, 2014 at 1:34 pm in reply to: Combining Date, Post Title, and comments link into one line #87716[email protected]MemberOK got this figured out! here's what I did:
in Functons.php:
add_action( 'genesis_entry_header', 'custom_entry_header', 5); function custom_entry_header() { if ( ! is_page() ) { echo '<div class="entry-time">'; echo do_shortcode( '[post_date]' ); echo '</div><!-- end .entry-time -->'; } }
then just messing with FLOAT in the stylesheet for .entry-time .entry-comments-link
thanks for your help MarketLearner!
January 27, 2014 at 7:41 pm in reply to: Combining Date, Post Title, and comments link into one line #87360[email protected]MemberAh, OK I've never messed with priority numbers before. How do I tell it to do [post-date] first, then the post title, then the [post_comments]?
Something like this? Or am I making it way too complicated?
remove_action('genesis_entry_header', 'genesis_do_post_title'); add_action( 'genesis_entry_header', 'custom_entry_header' ); function custom_entry_header() { if ( ! is_page() ) { echo '<div class="entry-time">'; echo do_shortcode( '[post_date' ); echo '</div><!-- end .entry-time -->'; add_action( 'genesis_entry_header', 'do_genesis_post_title' ); echo '<div class="entry-comments-link">'; echo do_shortcode( '[post_comments' ); echo '</div><!-- end .entry-comments-link -->'; } }
[email protected]MemberThat did the trick! thank you!
For anyone referring back to this post, here's how I tweaked it:
/** make single post titles H2 instead of H1 **/add_filter( 'genesis_post_title_output', 'ac_post_title_output', 15 );
function ac_post_title_output( $title ) {
if ( is_single () )
$title = sprintf( '<h2 class="entry-title"><span>%s</span></h2>', apply_filters( 'genesis_post_title_text', get_the_title() ) );
return $title;
}[email protected]MemberFOUND A STOPGAP SOLUTION:
Using this code for a new plugin and deactivating the main Genesis Tabs plugin (but not deleting): https://gist.github.com/4455461
Then delete the current widget that wasn't working, drop in a new one, and there is a field for "Number of posts per cat?"
I had to re-tweak some CSS stuff, but it's working.
The selected-category is still not staying as the hover color though - this may be a deeper issue in the plugin.
Matt
[email protected]MemberNote - the error wherein the selected tab does not take on the new color is a problem on the unedited plugin - it's happening on the NEWS Child Theme demo page as well. Seems like the plugin itself will need an update to fix that regardless of our multiple posts hacks.
[email protected]MemberOne other thing that has broken with that, in my Stylesheet had these lines that made the current tab selected display as the hover cover, like a a:current in a nav bar. The hover still works correctly, but not the selected
#home-top .ui-tabs ul.ui-tabs-nav li a:hover, #home-top .ui-tabs ul.ui-tabs-nav li.ui-tabs-selected a { background-color: #cae5f0; color: #fff; }
[email protected]MemberSame problem here - just realized the 3.5 update broke 3 of my sites this way! If anyone finds a solution, please let me know!
Matt
[email protected]MemberBumping this up - any help? please??
-
AuthorPosts