Syahir Hakim

Keymaster

Forum Replies Created

  • Admin

    In reply to: Totally blank page template?

    #38363

    Use a child theme, and just create a custom page template in your child theme. Say you name it template-custom.php, and then add this into that file:

    <?php
    /**
    * Template Name: Blank template
    */
    the_post(); the_content();
    ?>

    This part:

    /**
    * Template Name: Blank template
    */

    is necessary so that WordPress recognises it as a custom template file.

    Admin

    In reply to: How to remove 'hover and active state' highlight ?

    #38357

    You can change the hover and active state colour via Graphene Options > Colours. To remove the surrounding box, just set its colour to the same colour as the menu background.

    Admin

    In reply to: HI here! I can´t change the social sharing button!

    #38380

    Which social sharing button are you referring to. The one in the top bar or under each post?

    Admin

    In reply to: Missing Continue reading button in one post

    #38367

    You can leave that code as is, as it’s inserted by WordPress for inserting image with caption.

    Admin

    In reply to: Images from Product Pages not showing in slider

    #36929

    What’s the URL to the site?

    Admin

    In reply to: Graphene Mobile Neo

    #38261
    Quote:
    There are many widgets (like language selectors, social sharing features…) which I use in the desktop version

    and can use it twice for the mobile version. It is a WP problem ..but will be nice pick a brain, it is an important issue.

    Did you mean to say that you can’t use some of the widgets twice?

    Quote:
    The only thing would like to remove is the search option…is there any setting?

    Not yet, but we’ll add this in the next theme update.

    Quote:
    … and having the home link in the header.

    The header is already linked to the homepage. Is this not so on your site?

    Admin

    In reply to: Graphene Mobile Neo

    #38259

    Hi yavore,

    Quote:
    Decided to try your Mobile version for new development and would like to ask how to manage custom menus..as normally I use various languages..

    Using Custom Menus in Graphene Mobile Neo is similar with Custom Menus in any other theme. You can create new menus and assign it to the theme’s location via WP Admin > Appearance > Menus.

    Quote:
    also didnt manage to find any general option to disable replies in pages, as you promote.

    It’s in WP Admin > Appearance > GM Neo Options > General > Comments Options.

    Admin

    Add this code to your child theme’s functions.php file:

    /**
    * Add custom classes for easier styling
    */
    function my_body_class( $classes ) {
    if ( is_singular() && ! have_comments() ) $classes[] = 'nocomment';

    return $classes;
    }
    add_filter( 'body_class', 'my_body_class' );
    Admin

    Nobody controls what ultimately appears on the Google search result, except Google. I’m sure they cache the search results they return, so whenever you change something it’s unlikely that the change will appear immediately in search results.

    Admin

    If you have a child theme, you can add a function into the functions.php file so that it adds a nocomments class to the <body> element of posts/pages that don’t have comments yet. Then you can use that class to write CSS codes that will only be applied to posts/pages that have that class.

Viewing 10 posts - 1,921 through 1,930 (of 6,030 total)