• 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

Doug Edgington

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 - 21 through 40 (of 185 total)
← 1 2 3 … 8 9 10 →
  • Author
    Posts
  • September 13, 2016 at 6:00 am in reply to: Not able to find code to change footer text in functions.php #193068
    Doug Edgington
    Member

    The code is not in the Genesis Sample Theme by default. You will need to add it. The third option is likely the one you want "customize the entire footer text". See below.

    //* Customize the entire footer
    remove_action( 'genesis_footer', 'genesis_do_footer' );
    add_action( 'genesis_footer', 'sp_custom_footer' );
    function sp_custom_footer() {
    	?>
    	<p>&copy; Copyright 2012 <a href="http://mydomain.com/">My Domain</a> &middot; All Rights Reserved &middot; Powered by <a href="http://wordpress.org/">WordPress</a> &middot; <a href="http://mydomain.com/wp-admin">Admin</a></p>
    	<?php
    }

    Doug Edgington
    http://www.dougedgington.com

    September 12, 2016 at 10:49 am in reply to: Removing tagline from Forum page #193023
    Doug Edgington
    Member

    No problem.


    Doug Edgington
    http://www.dougedgington.com

    September 12, 2016 at 6:35 am in reply to: Removing tagline from Forum page #193013
    Doug Edgington
    Member

    You are using the wrong class selector for the page. Try the following instead:

    .postid-9079 #title-area {
          display:none;
    }

    Doug Edgington
    http://www.dougedgington.com

    September 12, 2016 at 6:25 am in reply to: Want to change the widget bar color in Modern Studio Pro Theme #193012
    Doug Edgington
    Member

    You would have to modify the following style declaration with your style sheet. Below is an example of changing the background color to white.

    .sidebar .widget-title {
    	background-color: #ffffff;
    }

    Doug Edgington
    http://www.dougedgington.com

    September 8, 2016 at 9:42 pm in reply to: access to widget below footer in Agency Pro #192852
    Doug Edgington
    Member

    Are you referring to the footer copyright information? If so, the easiest solution is to use a Genesis Simple Edits Plugin. It will allow you to modify the footer text.
    https://wordpress.org/plugins/genesis-simple-edits/

    It can also be modified via a code snippet.
    Here is more information: https://my.studiopress.com/snippets/footer/


    Doug Edgington
    http://www.dougedgington.com

    September 7, 2016 at 7:09 am in reply to: Remove Sidebar on Single Page #192741
    Doug Edgington
    Member

    You can paste a snippet of your archive-portfolio.php in here and I can take a look. Is the filter functionality something that is also added to the archive-portfolio.php, or are you using a plugin?


    Doug Edgington
    http://www.dougedgington.com

    September 6, 2016 at 1:01 pm in reply to: Remove Sidebar on Single Page #192707
    Doug Edgington
    Member

    No problem. When viewing the theme portfolio template, look at the genesis_get_image function. In your case, you are going to want to call portfolio-image, since this is the image size that you declared.

    What specific issue was you having with the site in responsive mode?


    Doug Edgington
    http://www.dougedgington.com

    September 6, 2016 at 11:13 am in reply to: Remove Sidebar on Single Page #192705
    Doug Edgington
    Member

    Do you have a StudioPress Pro Plus theme package? If so, look at the portfolio template for the Executive Pro theme. This will give you an idea of how to call a specific image size.


    Doug Edgington
    http://www.dougedgington.com

    September 6, 2016 at 10:25 am in reply to: Weird thumbnail spacing #192702
    Doug Edgington
    Member

    I am using Safari and FireFox on a Mac. And I am not noticing any differences. Did you possibly resolve the issue already?


    Doug Edgington
    http://www.dougedgington.com

    September 6, 2016 at 10:18 am in reply to: Remove Sidebar on Single Page #192698
    Doug Edgington
    Member

    I haven't really experimented with the Genesis Portfolio Plugin. But it appears to add an image size automatically. And it should automatically output that image size on the portfolio archive page. But if you uploaded the images after the image size was in place, they would not be cropped. This could cause the full size image to be referenced. Or did you possibly create your own portfolio template? If so, you may not be calling the appropriate image size.


    Doug Edgington
    http://www.dougedgington.com

    September 5, 2016 at 2:33 pm in reply to: Centric Pro Home 1 image help needed #192654
    Doug Edgington
    Member

    No problem at all.


    Doug Edgington
    http://www.dougedgington.com

    September 5, 2016 at 10:27 am in reply to: Digital pro – effect on front page #192640
    Doug Edgington
    Member

    If you are wanting to remove the fade up functionality all together, you can comment out the following line of code within your functions.php file to prevent the associated Javascript from being loaded.

    //wp_enqueue_script( 'digital-fadeup-script', get_stylesheet_directory_uri() . '/js/fadeup.js', array( 'jquery' ), '1.0.0', true );

    Or if you want to remove the feature from specific sections only, you can try removing the "fadeup-effect" class from the associated sections within your front-page.php file.

    Make sure to backup any files that you change, so you can revert back to the original if needed.


    Doug Edgington
    http://www.dougedgington.com

    September 5, 2016 at 10:13 am in reply to: Centric Pro Home 1 image help needed #192639
    Doug Edgington
    Member

    There is a wrapper around the home page 1 section content limiting the size of this area to 782px. You can increase the size of the wrapper to allow the image to be wider. You would need to modify the associated style declaration within your style sheet. Below is example of increasing the area to 1280px.

    .home-featured .wrap {
        max-width: 1280px;
    }

    Doug Edgington
    http://www.dougedgington.com

    September 5, 2016 at 9:08 am in reply to: Remove Sidebar on Single Page #192633
    Doug Edgington
    Member

    In order to reduce the size of the overlay related text, you can single it out within your css declarations. Below is an example.

    .portfolio-overlay h3 {
          font-size: 25px;
          line-height: 1.2;
          margin-bottom: 5px;
    }
    
    .archive-description .portfolio-overlay p {
          font-size: 14px;
          line-height: 1.2;
          margin-bottom: 0px;
    }

    Doug Edgington
    http://www.dougedgington.com

    September 5, 2016 at 8:59 am in reply to: Remove Sidebar on Single Page #192631
    Doug Edgington
    Member

    I got your reply via email, but it is not showing up here in the forum. Maybe it got flagged?

    I looked at the updated version of your portfolio. And you are retrieving the full-size image rather than a cropped thumbnail. This is likely why your images don't all match.


    Doug Edgington
    http://www.dougedgington.com

    September 5, 2016 at 5:20 am in reply to: Remove Sidebar on Single Page #192608
    Doug Edgington
    Member

    Did you create your own portfolio post type, or are you using some type of plugin?

    For my personal website, I created a portfolio custom post type. Then I control the output by creating a custom portfolio archive template ( archive-portfolio.php ).


    Doug Edgington
    http://www.dougedgington.com

    September 4, 2016 at 12:07 pm in reply to: Remove Sidebar on Single Page #192585
    Doug Edgington
    Member

    There is no page id associated with it, since it is a portfolio post type archive. You can change the page layout via Portfolio-->Archive settings.
    Are you trying to single something out using CSS? If so, you can use .post-type-archive-portfolio rather than the page id.


    Doug Edgington
    http://www.dougedgington.com

    September 4, 2016 at 6:00 am in reply to: Metro Pro featured images not showing in post. Did I miss something? #192568
    Doug Edgington
    Member

    I haven't used this particular theme, but it likely does not automatically output the featured image at the top of the post. You will likely have to add it via your editor, above the content.


    Doug Edgington
    http://www.dougedgington.com

    September 4, 2016 at 5:48 am in reply to: Remove Entry Meta (below) on Blog/Archive Pages (Altitude Pro) #192566
    Doug Edgington
    Member

    If you are using Genesis Simple Edits, you should be able to leave the following two fields empty to remove the entry meta from above and below the posts. This will apply to both the archive and single posts.
    Entry Meta (above content)
    Entry Meta (below content)


    Doug Edgington
    http://www.dougedgington.com

    May 5, 2016 at 8:19 am in reply to: Aspire PRO #185028
    Doug Edgington
    Member

    Yes, I think there has been two releases - 1.0 and 1.1. They are getting ready to release a third, which should address any bugs.

    Here are the issues that I found in version 1.1:
    A sidebar displays at the bottom of the home page even when the "front page content settings" within the customizer has content disabled.
    The portfolio template driven page has responsive issues.
    No portfolio thumbnail is created for the portfolio template.


    Doug Edgington
    http://www.dougedgington.com

  • Author
    Posts
Viewing 20 posts - 21 through 40 (of 185 total)
← 1 2 3 … 8 9 10 →
« Previous Page

CTA

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

Create a site with WP EngineShop for Themes

Footer

StudioPress

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