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
In reply to: Customizations only appear when logged into WordPress
September 21, 2010 at 5:39 am #11080The only reason I can think of right now is if you’re using some kind of caching plugin, like WP Super Cache.
Admin
In reply to: Customizations only appear when logged into WordPress
September 21, 2010 at 4:15 am #11078This is how it appears when I visit your website:

Is that how it should look like?
Admin
Try removing the following codes:
/* Check if the page uses SSL and change HTTP to HTTPS if true */
if (is_ssl() && !stripos($header_img, 'https')){
$header_img = str_replace('http', 'https', $header_img);
}Admin
Okay, I’ll take this into consideration. Thanks for the suggestion!
Admin
By default, the slider image will be the Featured image of the post. If no featured image is set for the post, it displays the generic image.
You can set the featured image for a post at the Edit Post screen.
Admin
Try opening up the theme’s
header.phpusing your text editor and go to line 93. Replace this line:if (is_ssl()){with this line:
if (is_ssl() && !stripos($header_img, 'https')){Let me know if that works.
Admin
Hi Nelson,
The gap is caused by the
overflow:autoCSS property that I added so that overly big images will still be viewable by using a scrollbar. Seems that this change may not be worth it.I will remove it on the next update, but in the mean time, you can remove it yourself by deleting lines 431 – 433 in
style.css.These are the lines that you need to delete:
.entry-content p, .entry-content ol, .entry-content ul{
overflow:auto;
}Admin
That is the new feature on 1.0.9.2, the jQuery slider. It’s supposed to show your latest posts or posts from a category you selected. But since your website does not have any posts, only pages, that’s why it’s empty. You can just go to Graphene Options and tick “Disable slider” and it should disappear.
Admin
You need to set up a static front page as outlined in this WordPress Codex: http://codex.wordpress.org/Creating_a_Static_Front_Page
That is the proper way to use a static front page with WordPress, and after you’ve done that whenever people visit http://richwomensclub.com/ the page you assigned as the static front page will be displayed instead of the default WordPress front page (which lists your latest posts), and the Home link will be removed as well.
