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
When you change the thumbnail size in the media settings, WordPress doesn’t rebuild the thumbnails for all the images that you have already uploaded, hence you’re not seeing any change. Try the AJAX Thumbnail Rebuild plugin to rebuild the thumbnails of existing images.
Admin
ahmedelsoudy, don’t ever crash somebody else’s topic with a post that is totally unrelated to the topic. Create a new topic instead. This is the first and last warning you will receive on this matter.
Admin
I doubt that your issue is caused by or related to the Graphene theme. Try posting on the WordPress.org Support Forum instead.
Admin
Screenfly does not actually send a mobile user agent, but just merely resizes the container by which it displays the site. Therefore, when you view either the Graphene theme or my site using screenfly, it shows the normal desktop theme.
Note that Graphene Mobile is not a responsive theme – it is a theme specifically designed for viewing on mobile devices. When installed, it will be served to mobile devices, while the normal desktop theme is served to desktops.
Admin
Please post the full content of the
functions.phpfile on the pastebin.Admin
In reply to: Non-Graphene Question – Internal Styles in a WordPress Site
January 29, 2013 at 12:54 am #35340On top of Ken’s reply, if you want the additional CSS for a particular page to appear only on that page and not on any other pages, you’ll have to insert the CSS onto the page using PHP, by checking for the current page being displayd. This can be achieved via a child theme’s
functions.phpfile, but I’d say that it’s more trouble than worth it.With GZip compression these days, a few hundred lines of CSS codes do not constitute much of an additional page size to be downloaded. In fact, it would be a greater hit to performance to serve the CSS codes as a separate file due to the additional HTTP request that needs to be sent to the server.
Admin
You can use the Header Widget Area. A quick search:
https://forum.graphene-theme.com/search.php?q=adsense+header
Admin
You can get a copy of the theme’s latest
functions.phpfile here:http://graphene.googlecode.com/svn/trunk/graphene/functions.php
Admin
What’s the URL to your site?
Admin
Instead of copying the entire function to your child theme, use this instead in your child theme:
function custom_date_display_posttype( $types ) {
$types[] = 'my_custom_post_type';
return $types;
}
add_filter( 'graphene_date_display_posttype', 'custom_date_display_posttype' );
