Syahir Hakim

Keymaster

Forum Replies Created

  • Admin

    In reply to: Header in menue appearance disappeared

    #29609

    Did you edit any other theme files?

    Admin

    In reply to: Header in menue appearance disappeared

    #29607

    How did you restyle the theme? Are you using a child theme?

    Admin

    In reply to: can't change the post URL when use child theme

    #29606
    Quote:
    In this case, I will add the functions to the functions.php of graphene.

    I would advise against that, since the changes you make there will be lost when you update the theme.

    Quote:
    If there is functions.php under child theme, I can’t change the post URL when create a new post(I can’t see the change post URL option), but can change the post URL when edit a old post.

    I just tried this with a child theme that contains functions.php file, and it’s working fine on my end. You mean the URL right under the post title field. right?

    Admin

    In reply to: can't change the post URL when use child theme

    #29604

    You don’t actually need the functions.php file if that’s all you have in it. In any case, I can’t think of any reason why the mere presence of the functions.php file would cause the issue you described. Check to see if there’s any whitespace outside of the <?php and ?> block.

    Admin
    Quote:
    I have one specific issue as well. In this post – http://freedomthroughproperty.com/?p=83 – you will see I have a few comments. However, the comments spill over the page margins. How can I make the comments fit within the proper page width?

    You’re using a separate plugin for the social comments, so try asking the plugin’s author since he/she knows more about it.

    Admin

    In reply to: Create a graphene child theme with all the content ?

    #29572
    Quote:
    OK, I actually like, and prefer, the customization via the admin screen!

    So, I much appreciate Graphene for this customization easiness.

    Thank you very much.

    That’s the idea 🙂 But be aware even though there’s a lot of customisation possibilities provided by the theme via the admin screen (you should really take a look at the theme’s Action Hooks Widget Areas option if you haven’t already), customisation via a child theme opens up a whole other world of possible customisations. But it does require you to be rather proficient with CSS and PHP.

    But take it one step at a time. When you’re bored with the admin screen, take the next step. No rush 🙂

    Admin

    In reply to: Create a graphene child theme with all the content ?

    #29570
    Quote:
    So, I just copy the CSS content from the parent to the child theme and customize the child CSS file, right?

    No, don’t do this either. It’ll break a lot of things. The child theme’s style.css file should only contain CSS codes to override the original theme styles, or add new styles.

    Quote:
    And just to be sure, could we make the child theme at any moment? I mean, after having made many customization or it should be made immediately after installation?

    It can be made at any time. The purpose of a child theme is to make customisations to the parent theme without actually editing the parent theme’s files. If you can make all the customisations from the admin screen, then there’s no need for a child theme (in most cases), and you’ll be perfectly fine without one.

    See this page for more information:

    http://docs.graphene-theme.com/Customisation_using_a_child_theme

    Admin

    In reply to: Menu too wide in IE9 only (not in chrome, not in FF)

    #29585

    What code do you have in your Custom CSS option?

    Admin

    To remove the credit link from the footer, add this to your child theme’s

    Code:
    functions.php

    file:

    function graphene_remove_credit(){
    global $graphene_settings;
    $graphene_settings['disable_credit'] = true;
    }
    add_action( 'template_redirect', 'graphene_remove_credit' );

    By the way, if a hacker is intent on hacking your site, the credit link is the least of your worries. There’s so many other ways to determine if a website is running on WordPress, though this in itself isn’t really that big an issue. You should be concerned more with what plugins you use, and how secure the server setup is.

    Admin

    In reply to: No child theme

    #28563

    Marking thread as resolved. You can do this yourself as well.

Viewing 10 posts - 3,111 through 3,120 (of 6,030 total)