• 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

Chris Cree

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 - 101 through 120 (of 129 total)
← 1 2 3 … 5 6 7 →
  • Author
    Posts
  • December 29, 2012 at 4:47 pm in reply to: Slider Shortode #8225
    Chris Cree
    Participant

    Neither the Genesis Slider nor the Genesis Responsive Slider have shortcodes. However if you want to place the slider in a widget area you can just use the slider widget.

    Rather than doing in-line CSS you can add the CSS to your style.css file to make the slider appear the way you want.

    December 29, 2012 at 4:42 pm in reply to: Add static text before grid loop on home page #8223
    Chris Cree
    Participant

    You can add something like the following to your home.php file:

    add_action( 'genesis_before_content', 'child_home_welcome' );
    function child_home_welcome() {
    	echo '<div class="home-welcome">'; 
    	echo '<p>YOUR WELCOME MESSAGE GOES HERE</p>';
    	echo '</div><!-- end .home-welcome -->';
    }

    Then you will want to add a little CSS to your style sheet for the .home-welcome class to make it look the way you want.

    December 29, 2012 at 3:05 pm in reply to: Adding a Java Script in a sidebar widget #8211
    Chris Cree
    Participant

    Stupid question here, but this site isn't on a Multisite install is it? If it is then unless you have SuperAdmin rights it will strip most object embeds and scripts from your widgets on you.

    December 29, 2012 at 3:01 pm in reply to: Footers Overlap #8210
    Chris Cree
    Participant

    Can't tell you how many times I've gone in to make a CSS change and not seen it behave the way I expected because W3 Total Cache was enabled. Always disable caching when you are making changes. Or it will drive you bug nuts.

    It's good to turn off other plugins that affect the presentation too, which is why I recommended disabling the copy protection plugin.

    December 29, 2012 at 2:55 pm in reply to: photoshop to genesis theme ??? #8207
    Chris Cree
    Participant

    I do a fair amount of converting layered PSD's to Genesis themes. I don't know of a way to automate the process.

    What I did find that helps is to start with a base child theme that has many of the pieces I use over and over again already in place. For example Bill Erickson has a good starter child theme here: https://github.com/billerickson/BE-Genesis-Child

    He also has a generic Genesis plugin for a bunch of features he uses regularly here: https://github.com/billerickson/Core-Functionality

    Using aids like that speed up the process. But I still have to go through and modify the CSS, add functions for widget areas and whatnot. And I have to create all the image elements needed for the theme manually.

    December 29, 2012 at 2:50 pm in reply to: Style div inner for different pages #8206
    Chris Cree
    Participant

    Or you can use the same custom body class for all the pages to keep things simpler for you. Something like a body class of nopadding might be less confusing instead of the page title.

    Add the style like Jared said with the "generic" class instead. As long as it is below your existing #inner definition in your stylesheet you only need to add the bit(s) you want to change. In this case it's the padding. So you can simplify it to this:

    .nopadding #inner {
            padding: 0;
    }
    December 29, 2012 at 2:41 pm in reply to: home.php like News for Decor theme #8205
    Chris Cree
    Participant

    Look in the functions.php file that came with Decor. There you will see a function or two that adds those extra divs. Add the functions back into your new functions.php file.

    Here is the code you are looking for:

    /** Add post/page wraps */
    add_action( 'genesis_before_post_title', 'decor_start_post_wrap' );
    add_action( 'genesis_after_post_content', 'decor_end_post_wrap' );
    
    function decor_start_post_wrap() {
    	?>
    	<div class="wrap">
    	<div class="left-corner"></div>
    	<div class="right-corner"></div>
    	<?php
    }
    
    function decor_end_post_wrap() {
    	?>
    	</div>
    	<?php
    }
    December 29, 2012 at 2:35 pm in reply to: Styling Page Navigation #8203
    Chris Cree
    Participant

    If you go to your Genesis --> Theme Settings page and scroll down to the "Content Archives" box there is a setting for "Select Post Navigation Technique:" You can select "Numeric" and it will get you close to what you are looking for.

    December 29, 2012 at 2:28 pm in reply to: Footers Overlap #8201
    Chris Cree
    Participant

    Yeah. Deselect CSS minification while you are making modifications. From your WP dashboard go to Genesis --> Design Settings and scroll to the bottom where you see "General Settings". Uncheck the "Minify CSS?" box and click "Save Settings"

    Then when your site is done and customized the way you want it you can re-check that box.

    I also recommend you turn off the "copyprotect" plugin while you are customizing things. It's triggering strange behavior on your site that might be making it harder to see your changes.

    You're also going to want to turn off W3 Total Cache until you are done customizing your site. If your site is caching things it will keep your customizations from showing up.

    December 29, 2012 at 2:15 pm in reply to: Displaying and Searching Custom Posts #8199
    Chris Cree
    Participant

    Honestly search is one of WordPress's biggest weaknesses right now in my opinion. There are some plugins that improve the basic WP search. One good one is Relevanssi. Here is their free version in the Plugin Directory: http://wordpress.org/extend/plugins/relevanssi/

    It sounds like you're going to want to use their premium version to get closer to your "fantasy world".

    December 29, 2012 at 1:44 am in reply to: Footers Overlap #8099
    Chris Cree
    Participant

    It's a width & margin issue. You can change the first one to this:

    .footer-widgets-1 {
        float: left;
        margin: 0 10px 0 0;
        width: 275px;
    }

    and then change the width of the .footer-widgets-2 and .footer-widgets-3 to 275px also and then they should fit.

    December 28, 2012 at 7:04 pm in reply to: ecommerce plugin that works with genesis #8053
    Chris Cree
    Participant

    WooCommerce works just fine with Genesis. I use it on several sites and it's the eCommerce solution I recommend.

    You may find it helpful to use the Genesis Connect for WooCommerce plugin because it will make integration a bit easier for you.

    Beyond that, if you share the specific problem you are running into we might be able to help you out.

    December 28, 2012 at 7:00 pm in reply to: Hiding Slider posts #8052
    Chris Cree
    Participant

    The easiest thing to do is to assign them to a category all their own. Then you can use the query_args to hide that category from the blog page. Here's a good tutorial that explains how it's done: http://www.wpframeworktutorials.com/genesis-framework-using-query-args/

    December 28, 2012 at 6:51 pm in reply to: Adding Adsense Between Logo and Categories #8051
    Chris Cree
    Participant

    You're going to need to add something like this to your functions.php file.

    add_action( 'genesis_after_header', 'add_my_leaderboard' );
    function add_my_leaderboard() {
    	echo '<div class="leaderboard">'; ?>
    	[banner HTML goes here]
    	<?php
    	echo '</div><!-- end .leaderboard -->';
    }

    Obviously you'll have to change out [banner HTML goes here] with the code for your banner. Then add some styling to get it looking the way you want it in your style.css file.

    December 28, 2012 at 6:36 pm in reply to: Post Title Color, font and size #8045
    Chris Cree
    Participant

    So are you saying that you want to be able to change the font for each post title on the fly?

    Do you have an example of a site that does that? It's not something that's normally done.

    December 28, 2012 at 6:26 pm in reply to: Content Character Limit #8040
    Chris Cree
    Participant

    There really is no good solution. Using "Show Content Limit" will always be a bit of a crap shoot as to exactly how many characters are displayed. You would think that it would be "exactly" whatever number you put in. But it doesn't seem to. Often I have to vary the number by 20 characters or more to make it actually change.

    December 28, 2012 at 6:11 pm in reply to: Help – Have Published, But New WordPress Blog Won't Display #8038
    Chris Cree
    Participant

    For starters it looks like you are using a Windows server instead of a Linux box.

    WordPress can work on a Windows server. But unless you really know what you're doing, it's going to be frustrating at best. Here is the Codex entry that might help: http://codex.wordpress.org/Installing_on_Microsoft_IIS Step 5 about how to enable pretty URLs in particular is worth reviewing.

    My suggestion since you are just getting started is to switch to Linux hosting. It will save you tons of heartache and grief.

    December 28, 2012 at 2:02 pm in reply to: Adjusting Blog Page in Prose Theme #7979
    Chris Cree
    Participant

    If you just want to have a different sidebar on your blog page you can use the Genesis Simple Sidebars plugin. I think that will be easier for you that the Layout Extras plugin.

    December 28, 2012 at 2:00 pm in reply to: Changing the title font #7977
    Chris Cree
    Participant

    You can use Firebug to see which CSS selectors to change when customizing your theme.

    It looks like you are using a custom css plugin to modify your style sheet. You will need to adjust where you have entered this line here:

    h1,h2,em,b{font-family:calibri}
    December 28, 2012 at 1:52 pm in reply to: Replacing the Logo on Freelance Theme #7975
    Chris Cree
    Participant

    Just create a logo.png file and upload it to /freelance/images/logo.png

    The image should be 320px wide by 110px high to match the existing logo image.

  • Author
    Posts
Viewing 20 posts - 101 through 120 (of 129 total)
← 1 2 3 … 5 6 7 →
« Previous Page

CTA

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

Create a site with WP EngineShop for Themes

Footer

StudioPress

© 2026 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