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
OK, will be added in the next update.
Admin
Quote:So what can we learn from it? That that file somehow got attached to the header as a featured image?The theme has this feature that will automatically replace the header image with the featured image of the page currently being viewed, if the featured image dimension is greater than or equal to the dimension of the header image. This allows you to have specific header image for specific pages.
I suspect that you’ve assigned the previous lingering image as the featured image for the page that you use as the static front page, which was what causing the issue. It wasn’t an issue in the first place, just a feature that went unnoticed.
Quote:“Auto Post Thumbnail: Automatically generate the Post Thumbnail (Featured Thumbnail) from the first image in post (or any custom post type) only if Post Thumbnail is not set manually.”You don’t need a separate plugin as the Graphene theme is already doing this.
Quote:And I’m not sure how this interacts with the v1.7 theme-head.php rollback; if I upgrade again or do a new child theme from the original 1.7.1 zip file, hopefully I’ll be able to check this box and fix it again in the future.The link to the
theme-head.phpfile that Josh provided is not the file from version 1.7. It is actually newer than the file included in version 1.7.1, and is meant to be included in version 1.7.2.The reason for this is because we use a subversion repository (svn in short) primarily to allow for collaborative development, and also to keep track of changes to the theme’s files. (You can read more about the theme’s collaborative development at the theme’s [url=https://forum.graphene-theme.com/documentation/about-the-theme/]About[/url] page.)
In SVN, it is typical for developers to separate out major versions as branches of the main “trunk” of the source codes. So in the URL that Josh provided, the
/branches/1.7/bit means that you’re accessing the latesttheme-head.phpfile in the 1.7 branch, which contains the latest codes for all 1.7.* releases.Not sure if you wanted to know all that, but there goes 🙂
Admin
Haha.. yes, finally 🙂 Thanks guys!
Admin
Try this:
1. Set the header image to the theme’s default header image.
2. Go to Graphene Options > Display > Header Display Options, and tick the option “Disable Featured Image replacing header image”.
After you’ve done that post back here.
Admin
There is no action hook in the your site’s header at the moment, as far as the page’s source HTML goes. You did mention deleting the outsized header image.
When stuck somewhere for an extended time, it’s often a good idea to start again.
So go to WP Admin > Appearance > Header, and click on the “Restore Original Header Image” button. That will revert your header image settings back to the default.
Check that everything is working as it should. If it does, upload your properly-sized header image using the same admin interface at WP Admin > Appearance > Header. Check again. All working? Upload more header images.
After the header images have been uploaded and are rotating properly, enable the header widget area, and place your logo in there. The positioning of the logo might need some work, but we’ll get to that when you’ve sorted out the rotating header images.
Admin
This will be fixed in the next version, so users that are still using IE8 can still use the theme’s options page.
Admin
In reply to: First full post and the rest reduced with read more option
May 29, 2012 at 1:03 am #28787Quote:I think the first post would HAVE to be sticky, since I’m not sure there is a conditional to test for if it’s the first post. But, I know we can conditionally test if it is a sticky.There is, but not exactly a conditional function. There’s a global variable called
$wp_querywhich contains the current index of posts in a loop, among a whole lot of other things.Try doing this in the posts loop to see what value it contains:
<?php global $wp_query; echo $wp_query->current_post; ?>Admin
If you want the excerpt to be displayed on the right side of the slider, add this to the Custom CSS option (or your child theme’s style.css file):
.bgimage-excerpt .slider-entry-wrap {
left: auto;
right: 0;
height: 100%;
width: 40%;
}You may need to adjust the width, though with that amount of content in your excerpt I don’t see how you can fit them all.
Admin
Looks like you have the slider display the full posts instead of their excerpts. Make sure you select “Background image and excerpt” for the “Slider display style” option in Graphene Options > Slider Options.
Admin
Try replacing the file
includes/theme-head.phpwith the updated file here:http://graphene.googlecode.com/svn/branches/1.7/includes/theme-head.php
