Forum Replies Created
-
AuthorPosts
-
Dan
ParticipantJen - you rock so hard you boulder! I had no idea that was there and it would cause that - thank you so so much!
I'm off to try and restore some grey hair...
Dan
ParticipantHey Andrea,
Many thanks! Plugin updated and she's all good to go!Dan
ParticipantAhh, thanks Sridhar! That's good to know, I'll follow that up right away.
Dan
ParticipantDon't mind me - found a solution...
Looks like Mailchimp have updated the form action code in between the time I first added it to the site and today's first round of testing. They now provide a protocol relative version. WIN!
Dan
ParticipantHi Tom,
Many thanks for your help!I didn't think to try hide that link with CSS, so I'll go play around, see if I can't get that to do the job.
🙂
Dan
ParticipantQuick update - just realised need to add an
if(!is_admin()){
conditional unless you want to hide the items in the dashboard too!
🙂
Dan
ParticipantThat, Brad, is EXACTLY what I wanted to do - thank you so much!
September 30, 2013 at 1:55 am in reply to: Going Green 3.0.0 – Featured Image for Static Homepage? #64753Dan
ParticipantNM - just worked it out...
Modify line 80 in functions.php from is_single to is_page.
🙂
September 30, 2013 at 1:46 am in reply to: Going Green 3.0.0 – Featured Image for Static Homepage? #64751Dan
ParticipantHowdy sparkleseo!
Did you find a workaround for this? Just running into exactly the same issue.Thanks!
Dan
ParticipantHi @baconzoo - yeah I did the old copy / paste trick, but that grid loop section wouldn't pick up the code tags, so it's presented as text. Been caught out like that a couple times myself. Glad you got it sorted though. 🙂
September 11, 2013 at 5:44 am in reply to: Minimum Pro – Thumbnails with latest posts on home page? #61887Dan
ParticipantHi Kipley,
If you're still looking to do this (I noticed you'd switched themes on the link above), I was looking for a similar solution and worked out what needed to be done. Hope this helps!Dan
Dan
ParticipantI did, yes! (Updated my own forum post on the topic with the 'how')
Thank you for the follow up, much appreciated
🙂
Dan
ParticipantNever mind - worked it out!
September 10, 2013 at 12:58 am in reply to: Minimum Pro: Front Page Featured Image Thumbnails #61627Dan
ParticipantWohoo! Figured it out. For reference for others:
In functions.php, add your desired image sizes
//* Add new image sizes add_image_size( 'portfolio', 540, 340, TRUE ); add_image_size( 'your-thumbnail-image-name', 240, 100, TRUE );
(Note: If you do this after uploading the images you want to use, grab the Regenerate Thumbnails plugin and run it)
Next modify the following grid loop helper section of front-page.php to:
`//* Genesis grid loop
function minimum_grid_loop_helper() {if ( function_exists( 'genesis_grid_loop' ) ) {
genesis_grid_loop( array(
'features' => 0,
'feature_image_size' => 0,
'feature_content_limit' => 0,
'grid_image_size' => 'insert-your-thumbnail-image-name-you-created-here',
'grid_image_class' => 'alignleft post-image',
'grid_content_limit' => 200,
'more' => __( '[Read more]', 'minimum' ),
) );
} else {genesis_standard_loop();
}
}
`
And that should do you.
🙂Dan
ParticipantHi OP!
Sorry to hijack your thread - I've a post up that references your site here as I'm trying to get the featured image thumbnails on the front page as you have done.Can you tell me, did you do anything special, or am I just completely overlooking something? (Not unheard of!)
Many thanks, and again, apologies for the intrusion.
Dan
Dan
ParticipantHi jordydme,
Can you try adding the profile URL in the site's header and footer scripts section (rather than on the user profile) please?As per Greg Rickaby's excellent post on the subject:
Step 1) Log into your WordPress dashboard and go to: Genesis -> Theme Settings -> Header and Footer Scripts
Step 2) Paste your Google+ Profile URLStep 3) Save
Step 4) TestAlso, if you have any caching plugins running make sure you clear them before step 4.
Let us know how you go!
February 7, 2013 at 5:56 pm in reply to: Executive Theme – How to maintain current marker on portfolio items #18788Dan
ParticipantGlad to have helped!
Dan
ParticipantHi Michele,
I've had similar issues when using Gravity Forms before. To the best of my understanding, the plugin is not responsive, so you would need to add custom CSS styles to its fields for the lower size screen resolutions.Of note too - you may find http://www.studiopress.com/responsive/ useful for helping you with those smaller screen sizes!
HTH
Dan
ParticipantHey Tyy,
If you're still looking, there's a myriad of different options for member logins, but if you want to stick with something written by someone with a solid WP reputation for good coding practices, have a look at Justin Tadlock's Members plugin.It's a while since I've needed it myself, but I recall it being pretty easy to use and setup.
Hopefully it'll meet your needs!
Dan
January 19, 2013 at 10:23 pm in reply to: Executive Theme – How to maintain current marker on portfolio items #13220Dan
ParticipantHey nightingale,
I'll have a stab at the URL change, I'm working on a site using Executive at the moment so I'll see what I can do. In the child theme functions.php, you should see this block of code:
/** Create portfolio custom post type */
add_action( 'init', 'executive_portfolio_post_type' );
function executive_portfolio_post_type() {
register_post_type( 'portfolio',
array(
'labels' => array(
'name' => __( 'Portfolio', 'executive' ),
'singular_name' => __( 'Portfolio', 'executive' ),
),
'exclude_from_search' => true,
'has_archive' => true,
'hierarchical' => true,
'menu_icon' => get_stylesheet_directory_uri() . '/images/icons/portfolio.png',
'public' => true,
'rewrite' => array( 'slug' => 'portfolio' ),
'supports' => array( 'title', 'editor', 'author', 'thumbnail', 'excerpt', 'trackbacks', 'custom-fields', 'comments', 'revisions', 'page-attributes', 'genesis-seo' ),
)
);
}
If all you have to work on is the 'live' site, give yourself a fall back and duplicate the code, rather than modifying it (which might break something). Substitute 'portfolio' for 'our-fleet':
/** Create portfolio custom post type */
add_action( 'init', 'ourfleet_post_type' );
function ourfleet_post_type() {
register_post_type( 'ourfleet',
array(
'labels' => array(
'name' => __( 'Our Fleet', 'executive' ),
'singular_name' => __( 'Our Fleet', 'executive' ),
),
'exclude_from_search' => true,
'has_archive' => true,
'hierarchical' => true,
'menu_icon' => get_stylesheet_directory_uri() . '/images/icons/portfolio.png',
'public' => true,
'rewrite' => array( 'slug' => 'our-fleet' ),
'supports' => array( 'title', 'editor', 'author', 'thumbnail', 'excerpt', 'trackbacks', 'custom-fields', 'comments', 'revisions', 'page-attributes', 'genesis-seo' ),
)
);
}You'll need to re-save your permalinks once done, but that should add a second custom post type called 'Our Fleet'. Test it by duplicating a couple of the trucks you already have. If it's all working, duplicate the remaining posts across. (You may be able to find a change-post-type plugin that can help you here if there's too many)
I would also recommend making a note of the old URLs and redirecting them to the new ones once you're done too - no point hobbling yourself with dead urls (if you remove the old /portfolio items) or duplicate content (if you don't) in the search engine race... Look for the 'Simple 301 Redirects' plugin if you're not up for getting your hands dirty in your .htaccess file.
Of course, if any one has a better / more efficient method, I'll defer to greater minds!
HTH
-
AuthorPosts