Gregg
Forum Replies Created
-
Eran, I’m sorry but the issues I see on the issue tracker seem to relate to either modal windows or the Admin side. I don’t see a mention where IE8 simply won’t display the public calendar.
That being said, I did try a few of the fixes suggested but to no avail.
G.
Sorry Eran, I just looked through the front page of issues.
Forum: Themes and Templates
In reply to: Conditional for determing child pages not workingSo the only part of that code above that seems to matter is this:
global $post; // load details about this page $anc = get_post_ancestors( $post->ID );Forum: Themes and Templates
In reply to: Conditional for determing child pages not workingHm… when I move this code to within the function that evaluates the Page IDs and chooses the appropriate header, it works!
global $post; // load details about this page $anc = get_post_ancestors( $post->ID ); foreach ( $anc as $ancestor ) { if( is_page() && $ancestor == $pid ) { echo "is child<br/>"; } }Forum: Themes and Templates
In reply to: Conditional for determing child pages not workingThanks for the follow up. I think that’s my next move.
Forum: Themes and Templates
In reply to: Conditional for determing child pages not workingI don’t think so – but I’m not sure. I think that code gets the id for the current page. $PID is the conditional page id that it needs to be compared against.
Forum: Fixing WordPress
In reply to: Linking to Jquery the right wayHello,
Yes, thank you for the informative thread!I have a somewhat related question. I’m trying to figure out how to move the script calls that plugins place in the header. Can I de-register them from the header and then call them in where I want them?
Forum: Themes and Templates
In reply to: IE8 Rounded corners CSS issue – doesn't work in WPNope – didn’t make a difference. The example page: http://www.hatchgardens.com/border-radius.html works and it simply calls the htc file from within the style block.
I’ve noted that when the page loads in IE I see the styled background and borders for just a moment then they disappear. I did more research and discovered that if the container elements that hold the element with the border radius have a background defined, the border won’t display in IE. I tested this with with the example page and it was true. There are far too many container elements in the WP framework to sift through and resolve what’s preventing the border from showing so I’m just going to let the border degrade to square in IE for now.
Forum: Themes and Templates
In reply to: IE8 Rounded corners CSS issue – doesn't work in WPIt was referenced in the style sheet. I haven’t tried embedding the call to the htc file within the template code… will give that a try.
Forum: Themes and Templates
In reply to: IE8 Rounded corners CSS issue – doesn't work in WPMaybe the best thing to do at this point is to let the square borders remain for IE and not worry about it. Hopefully IE9 will be better at rendering the rounded corners when the container elements have a background.
Forum: Themes and Templates
In reply to: IE8 Rounded corners CSS issue – doesn't work in WPThank you for the reply Clayton. The div is there when I look at the source:
<div class="textwidget"><div class="box1"> <h4><a href="#">Best Sellers</a></h4> Browse our best-selling vegetable varieties </div></div>You’ll only see the behavior if you’re looking at it in IE.
Forum: Themes and Templates
In reply to: IE8 Rounded corners CSS issue – doesn't work in WPNo replies? Seems like this may be impossible?
One last post – URL to that plugin you mentioned?
Understood and appreciated.
If it helps, this is built on the Thesis Theme.
Thanks
G.Just for grins I disabled all other plugins but no change.