Forum Replies Created
-
AuthorPosts
-
Scott BuehlerMember
Hello, this is likely a browser caching issue. However, I wanted to point out that your site is currently outputting to meta tags for a shortcut
<link rel="shortcut icon" href="http://insight.crystalbastrology.com/wp-content/uploads/2015/01/favicon.ico" /><link rel="Shortcut Icon" href="http://www.crystalbastrology.com/favicon.png" type="image/x-icon" />
However, http://insight.crystalbastrology.com/wp-content/uploads/2015/01/favicon.ico is showing the world icon which is what you wanted. You may need to load that ico link in your browser and hold shift + reload to force it to pull in the new image. Or, purge your browser cache and try again.
I would definitely remove one of the shortcut icon references though.
TygrScott on Social Media
Scott BuehlerMemberJust a suggestion, but your main page is taking a very long time to load and that won't help SEO. Posts per page would drastically improve your page load times.... that's why that feature exists.
TygrScott on Social Media
Scott BuehlerMemberI was able to fix what I needed with
//* Move Featured Image Before Entry Title remove_action( 'genesis_entry_content', 'genesis_do_post_image', 8 ); add_action( 'genesis_entry_header', 'genesis_do_post_image', 3 );
TygrScott on Social Media
Scott BuehlerMemberbraddalton, love that you provided a way to remove it from the source code with the functions.php instead of just hiding it in CSS. Any chance you can update with the genesis version of the code? Or was that opton removed in Genesis 2.0?
TygrScott on Social Media
Scott BuehlerMemberWbizniz, without a site reference point to suggest modification with Firebug, all I can tell you is "just remove the margin and padding for the widget areas."
TygrScott on Social Media
Scott BuehlerMemberTeeTide, if 1170px is what you need, do it. There's no worry about horizontal scrolling here unless you remove the responsive features of the theme.
All you need to do is account for the new width in the response CSS section to make sure it continues to behave like it did pre-modification. I've widened themes before, and didn't have too much of a hard time after adjusting the sizing in the main content and sidebar sections.
TygrScott on Social Media
Scott BuehlerMemberYep, the error was the line
genesis_widget_area( 'after-post', array(
Needed to be
genesis_widget_area( 'genesis-box', array(
Thanks Brad. Genesis support showed me the error and I appreciate both you and StudioPress support very much!
TygrScott on Social Media
Scott BuehlerMemberThis doesn't work for me either. On new Lifestyle theme:
genesis_register_sidebar( array( 'id' => 'genesis-box', 'name' => __( 'Genesis Box', 'lifestyle' ), 'description' => __( 'This is a widget area that can be placed after the post', 'lifestyle' ), ) );
//* Hook Genesis box widget area after post content add_action( 'genesis_entry_footer', 'sp_genesis_box', 9 ); function sp_genesis_box() { if ( is_single( ) ) genesis_widget_area( 'after-post', array( 'before' => '<div class="genesis-box widget-area">', 'after' => '</div>', ) ); }
Regular post page doesn't display the genesis box. Using HTML5
TygrScott on Social Media
Scott BuehlerMemberskstigger, try Firefox's Firebug plugin. You can right click the page and Firebug then play with the CSS and HTML code to get it the way you want. Once you like something, make it permanent by altering the CSS.
TygrScott on Social Media
Scott BuehlerMemberYeah, I implied in my original post that I knew that, but I'm looking for specific ideas or tips on how to go about it in my 1024px layer.
TygrScott on Social Media
Scott BuehlerMemberI posted this early AM and wonder if nobody saw it.
TygrScott on Social Media
February 23, 2013 at 12:58 am in reply to: Portfolio Troubles – Duplicate Image Output with entry-content #22363Scott BuehlerMemberAs usual, I figure it out after spending 2 hours researching then posting, then a search does exactly what I need.
For those of you that have featured images set in theme settings for archives, you can disable it under your archives-cpt.php file with
/* Remove Default Featured Image from Theme Settings */
remove_action( 'genesis_post_content', 'genesis_do_post_image' );
TygrScott on Social Media
February 23, 2013 at 12:49 am in reply to: Portfolio Troubles – Duplicate Image Output with entry-content #22362Scott BuehlerMemberOK, I figured out that this is a setting under Dashboard > Genesis > Theme settings. If I disable the featured image, the problem goes away.
HOWEVER, I like the featured image on my blog archive, category, and another CPT.
Is there a way to bypass this featured image for certain CPT archives?
TygrScott on Social Media
February 21, 2013 at 8:17 pm in reply to: Featured Video Placement – Willing to Pay if Needed #22123Scott BuehlerMemberSridhar, I was able to use your code along with my membership plugin (with my own code) to do exactly what I want, even though it took me all day to get it where I want. I'm sending you a donation.
Edit: I tried sending a donation via your button on site and it says:
Currently PayPal accounts in India are only able to send payments. This recipient is not eligible to receive funds.
TygrScott on Social Media
February 21, 2013 at 2:40 pm in reply to: Featured Video Placement – Willing to Pay if Needed #22048Scott BuehlerMemberAwesome, thanks. I took it outside of “genesis_before_content_sidebar_wrap” Hook and put it inside genesis_after_header Hook because it was showing the sidebar divider above and below the video (for my theme, if your theme doesn't have visual separator borders, it won't matter). I also added an extra div container so that I can customize exact center positioning with side/top margins.
Further testing going on. Will edit in a few.
TygrScott on Social Media
February 21, 2013 at 1:45 am in reply to: Featured Video Placement – Willing to Pay if Needed #21901Scott BuehlerMemberBTW div wrapper is for responsive reasons and PHP is from my commercial membership script to either show video or to show membership requirement prompt.
To answer your post, where you have the iframe code under post/page details, if I can add my div wrapper around the iframe tag, it'd be good. But if it can't execute PHP, then I'd have an issue with implementation. Test it with a simple PHP Date echo.
TygrScott on Social Media
February 21, 2013 at 1:39 am in reply to: Featured Video Placement – Willing to Pay if Needed #21898Scott BuehlerMemberSridhar, would that Vimeo box be able to have PHP code and div wrappers as well?
That's exactly what I want, however, it must be optional. If a post doesn't have video such as a regular blog post, I don't want the non-video page to have a blank area. That's why I wanted a layout so I can specify if the page or post needs a featured vid.
TygrScott on Social Media
February 20, 2013 at 11:59 pm in reply to: Featured Video Placement – Willing to Pay if Needed #21892Scott BuehlerMemberI've read that page a few times now and it's a bit overwhelming for me. Especially when it comes to doing what I need.
TygrScott on Social Media
February 20, 2013 at 10:49 pm in reply to: Simple Sidebars and Custom Post Types Archives Plugins Conflict? #21872Scott BuehlerMemberWhat ever came of this wpsmith?
TygrScott on Social Media
Scott BuehlerMemberTestingMy assumption is correct.
1) Copy a permalink from this thread.
2) Open new tab and paste URL
3) Reply goes to 404
TygrScott on Social Media
-
AuthorPosts