Syahir Hakim

Keymaster

Forum Replies Created

  • Admin

    No 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

    This 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.php file in your site with the one from version 1.5a here: http://graphene.googlecode.com/svn/trunk/graphene/admin/options-defaults.php

    Also, 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

    In reply to: Show full post on home page

    #12740

    URL to your site?

    Admin

    In reply to: Help with using Market Press E-commerce and Graphene

    #16746

    No 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

    In reply to: Menu rozwijane

    #16950

    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

    In reply to: IE8 bg-gradient

    #16865

    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

    In reply to: problem – change header size using a child theme

    #16948

    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

    In reply to: Author image in posts not displaying

    #16871

    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

    This 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.

Viewing 10 posts - 4,201 through 4,210 (of 6,030 total)