Forum Replies Created
-
Mod
In reply to: Potential Bug uncovered after updating to WP 4.1.1 and Graphene 1.9.4.1
April 16, 2015 at 7:00 pm #44813Please DON’T bump. If you don’t get a response, either nobody has yet noticed, or they are busy researching it, or they just don’t know.
If you think it’s a bug, please post it in the Bug Report section of the forum.
Mod
@craggy:
Please don’t hijack someone’s else thread. Please feel free to create your own support and/or feature request thread.
Mod
I didn’t even think about inline blocks, but that is also a good way to go.
Marking thread as resolved. You can do this yourself as well.
Mod
It is probably a Jetpack issue, then. You may want to try playing around with the Jetpack comments settings.
Mod
In reply to: How can I change the type of creative commons license in the footer
April 7, 2015 at 9:09 pm #44810Quote:So, what should I add to the Display Tab under “Custom CSS” to make this happen?It’s not custom CSS.
First, go here:
http://creativecommons.org/choose/results-one?license_code=by&jurisdiction=&version=4.0&lang=en
grab the code, and adapt it if you need to, and then go to
Graphene Options >> General Options >> Footer Options
and enter it in the box labeled “Copyright text (html allowed)”
Moved to Support
Mod
Those images aren’t showing. You need to upload them somewhere on the internet that is publicly accessible.
Is the comment function working fine on older posts? Or is it absent from all posts? Are you using any kind of comment plugin?
Mod
That code will stretch your images, which, as you discovered, won’t look good.
You’ll need to play around with your WordPress media settings, and then use a plugin (such as Ajax Thumbnail Rebuild) to rebuild all your thumbnails to a better size.
Mod
Quote:I do not see a way to update the theme. I am using GoDaddy and a managed WordPress package.I’m not 100% sure of how GoDaddy manages their WordPress packages, but if you don’t have shell or ftp access to your site, you may want to contact their support.
Mod
Quote:I would like to display my latest blog posts beneath the header in a two-columnIf you are using a static home page, you can activate homepage panes, which will give you a two-column layout of recent blog posts, which you can then adjust to your liking using CSS.
Mod
If you want to change the length of all excerpts, you can add this code to your child theme’s functions.php file:
function custom_excerpt_length( $length ) {
return 0;
}
add_filter( 'excerpt_length', 'custom_excerpt_length', 999 );If you only want to make them disappear on your home page, use this CSS:
.home .excerpt-thumb + p {
display: none;
}
