• 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

rfmeier

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 - 561 through 580 (of 584 total)
← 1 2 3 … 28 29 30 →
  • Author
    Posts
  • June 3, 2013 at 9:39 am in reply to: Not getting the 404 page on "not found pages" in IE #43845
    rfmeier
    Member

    It looks like the application is not being directed to the 404 template for IE (I tested 7 through 10) .  Just getting a standard 404 http response.  I am not sure why this is happening specifically for IE.

    Have you tried disabling plugins?  Any custom theme functionality targeting IE browsers?

     


    Ryan Meier – Twitter

    June 3, 2013 at 9:27 am in reply to: WP supercache "preload" settings #43842
    rfmeier
    Member

    Hello,

    Pre-loading cache just creates all your cache files at once.  By default, the cache files are generated as needed and refreshed when they become stale.  Depending on the size of your website, this could cause a lot of files to be created.

    Without pre-cache the page load will take slightly longer the first time it is accessed and the cache file is being created, it will *should* speed up significantly after the cache file is created and the requests are sent to that cache file.  Pre-loading your cache files would get around this issue.

    It is really up to you to enable this or not.

    There is also a small article by the creator of WP Super Cache about this;

    http://ocaoimh.ie/2010/04/28/preload-cache-wp-super-cache/

    Hope this helps.


    Ryan Meier – Twitter

    June 3, 2013 at 9:15 am in reply to: Trouble embedding tweets #43840
    rfmeier
    Member

    Hmmm, that is odd.  Unfortunately, I don't have the Metro theme to test this.  I was just testing this on the default Genesis theme.  Something has to be breaking the html on the first tweet... just no idea what.


    Ryan Meier – Twitter

    June 3, 2013 at 9:09 am in reply to: Trouble embedding tweets #43838
    rfmeier
    Member

    Hmmmm.  Both work for me.  So it always does this no matter the tweets?


    Ryan Meier – Twitter

    June 3, 2013 at 9:03 am in reply to: Trouble embedding tweets #43836
    rfmeier
    Member

    What are the two tweet url's?  Maybe the first one is displaying characters that are breaking the content.  I will try them on in my development environment.


    Ryan Meier – Twitter

    June 3, 2013 at 9:01 am in reply to: Trouble embedding tweets #43835
    rfmeier
    Member

    On second thought, it looks like the shortcode is a wordpress.com thing.  Probably won't work for self-hosted.


    Ryan Meier – Twitter

    June 3, 2013 at 8:56 am in reply to: Trouble embedding tweets #43832
    rfmeier
    Member

    Hmmm,

    Using the instructions from WordPress I am able to embed a tweet without any issues.  Are pasting the link url or using the shortcode?

    Could any plugins be affecting the content by chance?

    Just throwing out ideas.


    Ryan Meier – Twitter

    June 3, 2013 at 8:49 am in reply to: Trouble embedding tweets #43829
    rfmeier
    Member

    Hello,

    Is this problem only happening in a Genesis theme?  Have you also tried embedding multiple tweets with the default TwentyTwelve theme?


    Ryan Meier – Twitter

    June 3, 2013 at 8:38 am in reply to: Not getting the 404 page on "not found pages" in IE #43826
    rfmeier
    Member

    Hello,

    Is the site in production (live)?  Would you have a link by chance?


    Ryan Meier – Twitter

    June 3, 2013 at 8:33 am in reply to: Modify HTML output of genesis_author_box() #43825
    rfmeier
    Member

    You're welcome.  I am glad I could help.


    Ryan Meier – Twitter

    June 3, 2013 at 8:27 am in reply to: Modify HTML output of genesis_author_box() #43821
    rfmeier
    Member

    Hello,

    The sprintf parameter is the end-result html before it is displayed on the page.  You will want to modifiy the $pattern and return your own version of the end result html.

    And remember to modify the css

    I hope this helps or points you in the correct direction.


    Ryan Meier – Twitter

    June 3, 2013 at 8:10 am in reply to: How do i display my homepage like catagory? #43816
    rfmeier
    Member

    Hello,

    Within the admin section.  Genesis -> Theme Settings -> Content Archives -> Change 'display post content' to 'display post excerpts'.

    I hope that helps.


    Ryan Meier – Twitter

    June 3, 2013 at 8:00 am in reply to: get_post_format_link #43813
    rfmeier
    Member

    Hello,

    Someone may have a better explanation at the WordPress Support Forums, but I will give it a try;

    The get_post_format_link() will only return an archive address if you have created a post with the specified format, else it will return false.  From some quick testing, I was not able to get an archive link for a standard, non-formatted post-- I was expecting that result.

    If you want to display all posts-- excluding excluding post formats-- it would be wise to hook the 'pre_get_posts' action within the WordPress API and alter the query to exclude all post formats.

    As a *shameless* plug, I have a plugin that does this for the homepage; Filter Post Formats.  This will allow excluding of post formats on the home page.  It could be extended for archive pages too.

    I am currently unaware if a an archive page (display all posts like the home/blog page) exists.  Someone else may be able to shed some light on that subject.

    I hope this helps or points you in the correct direction.


    Ryan Meier – Twitter

    June 3, 2013 at 8:00 am in reply to: get_post_format_link #43812
    rfmeier
    Member

    Hello,

    Someone may have a better explanation at the WordPress Support Forums, but I will give it a try;

    The get_post_format_link() will only return an archive address if you have created a post with the specified format, else it will return false.  From some quick testing, I was not able to get an archive link for a standard, non-formatted post-- I was expecting that result.

    If you want to display all posts-- excluding excluding post formats-- it would be wise to hook the 'pre_get_posts' action within the WordPress API and alter the query to exclude all post formats.

    As a *shameless* plug, I have a plugin that does this for the homepage; Filter Post Formats.  This will allow excluding of post formats on the home page.  It could be extended for archive pages too.

    I am currently unaware if a an archive page (display all posts like the home/blog page) exists.  Someone else may be able to shed some light on that subject.

    I hope this helps or points you in the correct direction.


    Ryan Meier – Twitter

    June 3, 2013 at 7:30 am in reply to: Desired content between Loop #43808
    rfmeier
    Member

    You're welcome.  Glad I can help.


    Ryan Meier – Twitter

    June 3, 2013 at 7:19 am in reply to: Desired content between Loop #43804
    rfmeier
    Member

    Vajrasr,

    Here is what I was able to quickly come up with.  You will want to hook the 'genesis_after_entry' (Genesis 2.0) or 'genesis_after_post' for pre Genesis 2.0.

    Use the global $loop_counter to determine where you are at count-wise within the loop;

    I hope this helps.


    Ryan Meier – Twitter

    June 3, 2013 at 7:00 am in reply to: Executive Them Arbitrary color change and URL integration #43802
    rfmeier
    Member

    Mike,

    Do you have a link to the sub-domain site that is working correctly?  I did notice the links through out the site are all declared as #fff within the css.  Changing the css like below worked for me;

    .executive-teal a, .executive-teal a:visited {
         color: #333;
    }

    I also noticed the header image was shrinking for 'mobile' screens and setting the following css helped the issue;

    #title {
    	width: 130px;
    }

    Hope this helps or points you in the correct direction.


    Ryan Meier – Twitter

    June 3, 2013 at 6:44 am in reply to: eleven40 images inserted into page not responsive #43801
    rfmeier
    Member

    Hello,

    I took a quick look this morning.  From looking at the source code the .wp-caption elements are given an inline width of 10 + (image width), so that really cannot be changed.

    Try to css rule below.  I was able to get the wp-caption elements to scale after I modified the css.

    .wp-caption {
    max-width: 100%;
    }

    Try that and let me know how it works out.


    Ryan Meier – Twitter

    June 2, 2013 at 8:24 pm in reply to: eleven40 images inserted into page not responsive #43738
    rfmeier
    Member

    I can take a quick look tomorrow morning and see if there is an easy fix.

     


    Ryan Meier – Twitter

    June 2, 2013 at 7:56 pm in reply to: Using JavaScript Libraries in WordPress/StudioPress #43736
    rfmeier
    Member

    Robert,

    How are you loading the javascript on your WordPress site?  How are you then calling the javascript library?


    Ryan Meier – Twitter

  • Author
    Posts
Viewing 20 posts - 561 through 580 (of 584 total)
← 1 2 3 … 28 29 30 →
« 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