• Skip to main content
  • Skip to forum navigation

StudioPress

  • Shop for Themes
  • My StudioPress

Forum navigation

  • Home
  • General Genesis Discussions
  • StudioPress Themes
  • Genesis Blocks
    • Genesis Blocks
    • Genesis Custom Blocks
  • Retired Themes
  • FAQs
  • Forum Rules
  • Internationalization and Translations
  • Forum Bugs and Suggestions
  • Forum Log In

Are You Using The WordPress Block Editor?

Genesis now offers plugins that help you build better sites faster with the WordPress block editor (Gutenberg). Try the feature-rich free versions of each plugin for yourself!

Genesis Blocks Genesis Custom Blocks

Dan B

Welcome!

These forums are for general discussion on WordPress and Genesis. Official support for StudioPress themes is offered exclusively at My StudioPress. Responses in this forum are not guaranteed. Please note that this forum will require a new username, separate from the one used for My.StudioPress.

Log In
Register Lost Password
  • Profile
  • Topics Started
  • Replies Created
  • Engagements
  • Favorites

Forum Replies Created

Viewing 20 posts - 1 through 20 (of 23 total)
1 2 →
  • Author
    Posts
  • November 16, 2018 at 12:28 am in reply to: No Sidebar Pro – Remove large featured post on front page, Smaller post only #224391
    Dan B
    Member

    Brilliant. I'lll have a go at it.

    Speaking of images sizes, I would guess that means that all post snippets on the front page are loading full-size images and resizing via CSS?


    Dan @ ZindaMedia
    Marketing, Fundraising and Social Media strategies for non-profits.

    March 22, 2018 at 4:21 am in reply to: Atmosphere Pro – How to Add a Slider to Front Page 1 Widget #218233
    Dan B
    Member

    Any update on how you managed this?


    Dan @ ZindaMedia
    Marketing, Fundraising and Social Media strategies for non-profits.

    September 1, 2015 at 8:16 am in reply to: Cafe Pro Responsive Menu #164208
    Dan B
    Member

    So what solution did you settle on??


    Dan @ ZindaMedia
    Marketing, Fundraising and Social Media strategies for non-profits.

    June 22, 2015 at 1:06 am in reply to: Altitude Pro | How to make small 'stationary' dark menu the default? #157113
    Dan B
    Member

    Excellent. Worked perfectly.


    Dan @ ZindaMedia
    Marketing, Fundraising and Social Media strategies for non-profits.

    May 25, 2015 at 10:20 pm in reply to: No way to add featured image on posts #153593
    Dan B
    Member

    Excellent. Thanks.


    Dan @ ZindaMedia
    Marketing, Fundraising and Social Media strategies for non-profits.

    January 29, 2015 at 4:10 am in reply to: Cafe Pro: Featured header image same height? #138938
    Dan B
    Member

    Excellent, that worked for me too! Thanks...

    Do we still need to keep the home.js file?


    Dan @ ZindaMedia
    Marketing, Fundraising and Social Media strategies for non-profits.

    June 18, 2014 at 9:09 pm in reply to: parallax pro dropdowns #110478
    Dan B
    Member

    Hi Scottz.... I see that you have given up, as the menu on your site is still not working on Android (as tested on my Nexus 5).

    The issue here is that Android and iOS have a different on-click behavior. Android will always perform a click through, where as iOS will treat it as an on-hover, and then allow you to press again for a click through.

    Practically, this means that - on an iOS device - when you touch on the About link in your menu (and the about link has a submenu under it) the touch will bring up the submenu and allow you to view it. Then you may select any link.

    Whereas on Android, the very first touch will pull up the submenu, but will ALSO take you straight to the About page. You would have to be extraordinarily fast to make it down the submenu to, for example, reach the FAQs page on your site. Near impossible.

    So, the simple solution, as Tom mentioned, is to simply not allow the About page to be a link, but to use it as a placeholder instead. You can still have a page called About, for people who stumble upon it, but essentially you'd place all content in the submenu. To use it as a placeholder simply set the link URL as #.

    There must be a better solution out there, but I think that would probably require conditional functions for various mobile devices.

    If you find any better solution, do post here. I'd love to explore other possibilities.


    Dan @ ZindaMedia
    Marketing, Fundraising and Social Media strategies for non-profits.

    March 17, 2014 at 2:02 am in reply to: Add different Sidebars to each post of a CPT #95253
    Dan B
    Member

    Brilliant! Thanks Brad.

    I was searching the forums looking for a way to add the sidebar selector to my custom post types pages. The following code in my functions.php file did the trick (note that my custom post type name is 'projects').

    add_post_type_support( 'projects', 'genesis-simple-sidebars' );


    Dan @ ZindaMedia
    Marketing, Fundraising and Social Media strategies for non-profits.

    March 17, 2014 at 1:28 am in reply to: Can't assign primary sidebar to category #95251
    Dan B
    Member

    I'm having a similar issue. I'd love to hear the solution.


    Dan @ ZindaMedia
    Marketing, Fundraising and Social Media strategies for non-profits.

    March 13, 2014 at 12:30 am in reply to: How to center Parallax Pro background images (for mobile screen sizes) #94593
    Dan B
    Member

    Hi all,

    It turns out that this is a non-issue. My question about keeping the images centered was based upon my observation that images would not center on small screens when I manually resized my browser window with a pre-loaded page.

    However, if I first re-size my browser window - or use a mobile device - and THEN load the page, all images center just as they should.

    So, the good news is that this is not be a problem at all in real-world use.

    🙂


    Dan @ ZindaMedia
    Marketing, Fundraising and Social Media strategies for non-profits.

    October 3, 2013 at 10:18 pm in reply to: Expose Pro Theme – Display menu all the time? #65312
    Dan B
    Member

    Or, even better, why not just remove the JS 'sticky menu' feature altogether?

    In your functions.php file, delete or comment out this line:
    wp_enqueue_script( 'expose-sticky-menu', get_bloginfo( 'stylesheet_directory' ) . '/js/sticky-menu.js', array( 'jquery' ), '1.0.0' );

    Then, in the style.css file, locate .nav-primary and delete display:none; so it looks like this:

    .nav-primary {
    	background-color: #fff;
    	border-bottom: 1px solid #eee;
    	position: fixed;
    	text-align: center;
    	top: 0;
    	width: 100%;
    	z-index: 999;
    }

    And then add in the following CSS (or something similar) to your style.css file, in order to push the top of your content down (feel free to edit that 80px value to something that suits your taste):

    body {
    	position: relative;
    	top: 80px;
    }

    And there ya have it. We've removed the JS instructions, UN-hidden the menu, and pushed the page content down to make space for the menu.

    Finally, if you're really picky, and will not need that JS sticky menu in the future, head to your js folder and delete the sticky-menu.js file. It's not necessary to make this work, but I did it. 🙂

    Good luck!


    Dan @ ZindaMedia
    Marketing, Fundraising and Social Media strategies for non-profits.

    September 14, 2013 at 1:28 am in reply to: Metro Pro: 2 questions – Display featured image in posts, edit archive #62460
    Dan B
    Member

    Hi dpeschio,

    Just want to say that I love your website. I'm a Raleigh guy, but I'm now thinking about moving closer to an Ale Trail. 🙂

    Here's how I display featured images in my Metro Pro theme mod. The following code would go in your Functions.php folder, and you could customize certain aspects, to suit your site.

    This code will show featured images in Category 1 and Category 2, but none others (i.e. such as Maps):

    
    // Add Post image above post title, single posts only (Gen v2) //
    add_action( 'genesis_entry_header', 'show_post_image' );
    function show_post_image() {
    	if ( in_category( 'category1')) {
    		echo get_the_post_thumbnail($thumbnail->ID);
    	}
    	elseif ( in_category( 'category2')) {
    		echo get_the_post_thumbnail($thumbnail->ID);
    	}
    	else {
    	}
    }
    

    As far as I'm aware, there is not a way turn on featured images for all posts, except one category. Basically, you must enable the posts only for the categories you wish to see features images in.

    Good luck!


    Dan @ ZindaMedia
    Marketing, Fundraising and Social Media strategies for non-profits.

    September 14, 2013 at 12:46 am in reply to: Metro Pro's gutter between main content and sidebar #62459
    Dan B
    Member

    Yup. Good advice. I've done this on a site or two, as well.


    Dan @ ZindaMedia
    Marketing, Fundraising and Social Media strategies for non-profits.

    August 21, 2013 at 4:05 am in reply to: Minimum Theme ?? #57866
    Dan B
    Member

    Yup. That worked for me.

    Thanks.


    Dan @ ZindaMedia
    Marketing, Fundraising and Social Media strategies for non-profits.

    August 11, 2013 at 6:00 am in reply to: Header Image Disappeared after update #55613
    Dan B
    Member

    Similar issue here: My #header color disappeared!


    Dan @ ZindaMedia
    Marketing, Fundraising and Social Media strategies for non-profits.

    August 11, 2013 at 5:47 am in reply to: Header problem after update! #55611
    Dan B
    Member

    Similar issues here.

    One site, a custom design I am working on, has lost all CSS formatting in the header.

    The other, a customized version of the Minimum theme (can't link here, both are behind dev walls), has lost it's header background color. And now I can't set any header color via CSS. At all.


    Dan @ ZindaMedia
    Marketing, Fundraising and Social Media strategies for non-profits.

    July 3, 2013 at 8:24 pm in reply to: Tip: How to Make Youtube Videos Responsive #49114
    Dan B
    Member

    The Fluidvid Javascript solution seems to be the easiest. The bonus is that you don't need to rely on a plugin. AND it should work better with the upcoming WordPress 3.6 custom post features.

    It was already mentioned a few posts back, but here's the link again: http://neatandplain.com/responsive-youtube-or-vimeo-videos-in-genesis/


    Dan @ ZindaMedia
    Marketing, Fundraising and Social Media strategies for non-profits.

    June 24, 2013 at 3:12 am in reply to: Author Box on Pages above Comments #47431
    Dan B
    Member

    Thanks Mane60. Just a note for all future forum searchers:

    1) Be sure you have globally enabled the Author Box in your theme (if it's not already so), otherwise the instructions above have no effect.

    2) Ensure you have copied the code in the proper format. I copied, originally, from the post above and had formatting errors (with all the 's turning into ’s). You can prevent this by getting the code directly from http://wpsmith.net/2011/genesis/add-the-genesis-author-box-to-pages/


    Dan @ ZindaMedia
    Marketing, Fundraising and Social Media strategies for non-profits.

    June 21, 2013 at 8:53 pm in reply to: Genesis Tabs Widget as featured post slider for one category? #47144
    Dan B
    Member

    Hi,

    Any luck getting the Genesis Tabs widget plugin to show custom field info?

    If not, how'd you solve this issue?

    I'm trying to pull custom field info and display it in a sidebar, so it'd be a great help to know how to do this.

    Thanks!


    Dan @ ZindaMedia
    Marketing, Fundraising and Social Media strategies for non-profits.

    June 19, 2013 at 3:58 am in reply to: Adding Category Names to page-title.php in Minimum 2.0 #46705
    Dan B
    Member

    I'd like to do something similar as well, except that I don't want to hard code the categories into the page-title.php file as you have.

    Also, for a few pages, I'd like the actual page name to be in the page-title area. But so far, can't get that to work. Not quite sure how to call it.

    Any ideas?


    Dan @ ZindaMedia
    Marketing, Fundraising and Social Media strategies for non-profits.

  • Author
    Posts
Viewing 20 posts - 1 through 20 (of 23 total)
1 2 →

CTA

Ready to get started? Create a site or shop for themes.

Create a site with WP EngineShop for Themes

Footer

StudioPress

© 2023 WPEngine, Inc.

Products
  • Create a Site with WP Engine
  • Shop for Themes
  • Theme Features
  • Get Started
  • Showcase
Company
  • Brand Assets
  • Terms of Service
  • Accptable Usse Policy
  • Privacy Policy
  • Refund Policy
  • Contact Us
Community
  • Find Developers
  • Forums
  • Facebook Group
  • #GenesisWP
  • Showcase
Resources
  • StudioPress Blog
  • Help & Documentation
  • FAQs
  • Code Snippets
  • Affiliates
Connect
  • StudioPress Live
  • StudioPress FM
  • Facebook
  • Twitter
  • Dribbble