Syahir Hakim

Keymaster

Forum Replies Created

  • Admin

    In reply to: HTTPS/SSL Help

    #40183

    Can you provide a URL where the error message appears?

    Admin

    In reply to: Gap above header action hook on home page

    #40354

    Try adding this to the theme’s Custom CSS option:

    .ngg-galleryoverview {
    margin-top: 0;
    }
    Admin

    Try this:

    <?php
    global $graphene_settings;
    get_header();

    global $wp_query;
    $cat = 23; // This should be the ID of the category to display the posts from
    $args = wp_parse_args( array( 'cat' => $cat, 'paged' => get_query_var( 'paged' ) ), $wp_query->query_string );

    query_posts( $args );
    $wp_query->is_home = true;

    get_template_part( 'loop', 'index' );

    get_footer();
    ?>
    Admin

    In reply to: Full Width Slider Problems

    #40290

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

    Admin

    In reply to: Toggle Bar Text

    #40338

    Can you provide a link to one of the pages where this is happening?

    Admin

    In reply to: Disabling/disallowing Adsense in a few places

    #39368

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

    /**
    * Disable ads in certain places
    */
    function my_disable_ads(){
    global $graphene_settings;
    if ( is_category() ) {
    $graphene_settings['show_adsense'] = false;
    }
    }
    add_action( 'template_redirect', 'my_disable_ads' );

    Make sure you wrap the code above in PHP’s opening <?php and closing ?> tags.

    Admin

    In reply to: Header image is out of proportion in 1.5.5

    #40296

    Can you check if you have any codes in the theme’s Custom CSS option?

    Admin

    In reply to: Header image is out of proportion in 1.5.5

    #40294

    Hi Udi,

    Are you still having the issue with the slide-out panel icon? I’m not sure why that is happening.

    Admin

    In reply to: Toggle Bar Text

    #40335

    Something like this will work (code goes into GM Neo’s child theme’s functions.php file):

    /**
    * Customise toggle bar text per different areas of site
    */
    function my_custom_toggle_bar_text(){
    global $gmneo_settings;

    if ( is_category( 'bla-bla' ) ) { // Your conditional here to target specific areas in your site
    $gmneo_settings['slide_panel_bar_text'] = 'Your custom toggle bar text for this area';
    }
    }
    add_action( 'template_redirect', 'my_custom_toggle_bar_text' );
    Admin

    In reply to: Can "px" be tranlsated as well?

    #40311

    Sure can, but I wasn’t sure if it has translations since it’s an abbreviated measurement unit instead of a normal word.

Viewing 10 posts - 1,571 through 1,580 (of 6,030 total)