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: jetpack shortcode embed does not work in categories, archive, author listings
September 8, 2011 at 4:58 am #16941No idea about RSS feeds, since that is managed totally by WordPress. The theme does not touch that function at all.
It may be possible to include videos and whatnots in RSS feeds by using plugins, but I’m not sure if one exists. Try looking around in the WordPress.org plugin repository, and the support forums.
Admin
In reply to: Post doubled on main page with "meteor-slide" slideshow (already solved !)
September 8, 2011 at 4:53 am #16964This bug may be caused by another bug related to the options-defaults.php file, which has been fixed in version 1.5a. Can you try replacing the
graphene/admin/options-defaults.phpfile in your site with the one from version 1.5a here: http://graphene.googlecode.com/svn/trunk/graphene/admin/options-defaults.phpAlso, try temporarily delete the
wp_reset_query();in index.php after you have done the above, and let me know if the bug reappears.Admin
Admin
URL to your site?
Admin
In reply to: Help with using Market Press E-commerce and Graphene
September 7, 2011 at 1:00 pm #16746No good, Martin. We would need to see how it’s supposed to work, so that we can at least have some pointer at where to look at to figure out why it doesn’t work with Graphene. The screenshot you provided shows the page with a PHP fatal error. We need a screenshot of the plugin actually working.
Admin
My Polish language skill is non-existent. So, with the help of our good friend Google translating your post:
Quote:Please help regarding the drop-down menu that does not work.What do I need to drop-down menu in my recital graphene work?
You might want to read the tutorial by Ken here: http://blog.kjodle.net/2011/08/25/how-to-create-and-use-custom-menus-in-wordpress/
Admin
I’ve checked with the default Graphene theme, and the problem doesn’t occur. Probably an element on the homepage is messing up with IE8 (in)ability to render transparent PNGs.
How do you disable the background gradient image, via CSS
background: none?Admin
Open up the theme’s functions.php file, and find these code block:
function graphene_main_stylesheet(){
wp_register_style( 'graphene-stylesheet', get_stylesheet_uri(), array(), false, 'screen' );
wp_enqueue_style( 'graphene-stylesheet' );
}
add_action( 'wp_print_styles', 'graphene_main_stylesheet' );Replace that with this:
function graphene_main_stylesheet(){
wp_register_style( 'graphene-stylesheet', get_stylesheet_uri(), array(), false, 'screen' );
wp_enqueue_style( 'graphene-stylesheet' );
wp_register_style( 'graphene-stylesheet-rtl', get_template_directory_uri() . '/rtl.css', array(), false, 'screen' );
if ( is_rtl() ) wp_enqueue_style( 'graphene-stylesheet-rtl' );
}
add_action( 'wp_print_styles', 'graphene_main_stylesheet' );Admin
If you disable the Jetpack plugin does it show? Also, you might want to try uploading a bigger photo on Gravatar, and see if that fixes it.
Admin
In reply to: jetpack shortcode embed does not work in categories, archive, author listings
September 7, 2011 at 12:27 pm #16939This is an expected behaviour. In those pages (categories, archives, author posts listing), excerpts are shown instead of the full posts, and WordPress strips all HTML tags from excerpts by default.
You can retain some of the HTML tags you want by using the Retain these HTML tags in excerpts in Graphene Options > Display > Excerpt Options.
