Syahir Hakim
KeymasterKuala Lumpur, Malaysia
When not perched on my workspace, I tremendously enjoy hiking in the bushes and climbing mountains. They serve as much-needed refuges from the pretense of cities.
Forum Replies Created
-
Admin
Can you point us to a page where this is happening?
Admin
Come on now, you’ve posted a topic about this issue, and it is being responded to at that. Please don’t create a duplicate topic. It won’t get your queries answered any faster.
Read the forum rules here:
Topic closed.
Admin
I’m still seeing that the line height is
13. It needs to be13px. Did you make the change?Admin
Quote:Then I would like to know, what happen since many have experienced this today, even we did nothing with our computer(s) or WP yesterday?The theme loads the jQuery Tools library from the jQuery Tools CDN, since CDN generally offers faster download speeds regardless of where your site’s visitor is located. However, somehow domain name resolution of the CDN failed for some of you, probably due to a fault in the CDN’s DNS server or something. I wouldn’t be surprised if those of you who are experiencing the problem are on the same ISP.
Short story is, the jQuery Tools library is located on a certain server(s) somewhere, and somehow for some of you that server can’t be found, therefore the jQuery Tools library can’t be loaded, hence the slider stops working.
What the fix does is to make a local copy of the jQuery Tools library on your server, so that you know it’ll always be available as long as your site is available, albeit at the expense of some performance, if any.
Admin
Try adding this to your child theme’s
functions.phpfile:function graphene_alter_the_query( $request ) {
$dummy_query = new WP_Query(); // the query isn't run if we don't pass any query vars
$dummy_query->parse_query( $request );
// this is the actual manipulation; do whatever you need here
if ( $dummy_query->is_category() )
$request['gdsr_sort'] = 'rating';
return $request;
}
add_filter( 'request', 'graphene_alter_the_query' );Admin
Quote:Tried this link. Will not load for me.Quote:Same her:Server not found
Firefox can’t find the server at cdn.jquerytools.org.
And therein lies the problem.
OK, try this.
First, add the
jquery-tools-1.2.5.min.jsfile to the theme’s/js/folder. You can get it from here:http://code.google.com/p/graphene/source/browse/branches/1.6/js/
Second, replace the content of the theme’s
/includes/theme-script.phpwith the updated one here:http://graphene.googlecode.com/svn/branches/1.6/includes/theme-scripts.php
Admin
Quote:Also notice an oddity in the blog’s URL. http://www.derekhaines.ch/vandal/# The hash symbol appeared when clicking on the blank slider.This is usually a symptom of a JavaScript issue, which itself can be any number of things. However, seeing that the slider is displaying fine on my end for all three of the websites listed above (@Kronberg, @bobsled, @gcoker), I’m thinking that somehow the jQuery Tools library is not being loaded on your ends.
Which of course, could be the result of any number of things.
So try loading this link on your browser and see if the codes show up:
Admin
Hurm..looks like you set it at Graphene Options > Display > Text Style Options > Content Text > Text line height.
Admin
You have this in your Custom CSS:
.entry-content, .sidebar, .comment-entry {
font-family: georgia;
line-height: 13;
}Give a unit for the line-height, like so:
.entry-content, .sidebar, .comment-entry {
font-family: georgia;
line-height: 13px;
}Admin
WP Admin > Appearance > Graphene Options > Comments Options.
