Syahir Hakim

Keymaster

Forum Replies Created

  • Admin

    In reply to: Thumbnail Size

    #35354

    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

    In reply to: Graphene Mobile for Resposive layout

    #35244

    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

    In reply to: can not login

    #35356

    I doubt that your issue is caused by or related to the Graphene theme. Try posting on the WordPress.org Support Forum instead.

    Admin

    In reply to: Graphene Mobile for Resposive layout

    #35241

    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

    In reply to: function.php messed up

    #35343

    Please post the full content of the functions.php file on the pastebin.

    Admin

    In reply to: Non-Graphene Question – Internal Styles in a WordPress Site

    #35340

    On 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.php file, 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

    In reply to: Ad-sense banner add

    #35261

    You can use the Header Widget Area. A quick search:

    https://forum.graphene-theme.com/search.php?q=adsense+header

    Admin

    In reply to: function.php crash

    #35258

    You can get a copy of the theme’s latest functions.php file here:

    http://graphene.googlecode.com/svn/trunk/graphene/functions.php

    Admin

    In reply to: I can't find a way to change the content text style

    #35263

    What’s the URL to your site?

    Admin

    In reply to: Custom Post Type formatting problem

    #35256

    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' );

Viewing 10 posts - 2,501 through 2,510 (of 6,030 total)