Syahir Hakim

Keymaster

Forum Replies Created

  • Admin

    It is difficult to troubleshoot without being able to replicate the issue. Can you provide me with a temporary administrator account to your site so that I can check it out further? You can provide the login details via our secure contact form here:

    Admin

    Go to Customizer > Graphene: Display > WP Editor, and tick the option “Disable custom editor styles”.

    Admin

    In reply to: problem with the presentation page of my shop

    #49619

    Add this code into your child theme’s functions.php file after the opening <?php tag:

    /**
     * Set column layout for WooCommerce pages
    */
    function graphene_wc_column_layout(){
    	if ( ! function_exists( 'is_woocommerce' ) ) return;
    	if  ( ! is_woocommerce() ) return;
    	global $graphene_settings;
    	$graphene_settings['column_mode'] = 'one_column';
    }
    add_action( 'template_redirect', 'graphene_wc_column_layout' );
    
    Admin

    Is this happening on mobile only? If yes, see this post: https://forum.graphene-theme.com/topic/site-title-showing/

    If not, please provide links to some of those sites so that I can check it out further.

    Admin

    In reply to: Count error

    #49613

    Try changing that to this:

    function theme_enqueue_styles() {
    	$ver = wp_get_theme()->get('Version');
    	wp_enqueue_style( 'graphene', get_template_directory_uri() . '/style.css', array( 'bootstrap', 'font-awesome' ), $ver );
    	wp_enqueue_style( 'graphene-child', get_stylesheet_uri(), array( 'graphene' ), $ver );
    }
    add_action('wp_enqueue_scripts', 'theme_enqueue_styles');
    
    Admin

    In reply to: Count error

    #49611

    Seems to point to a minor issue with the way scripts are loaded by the child theme. Can you copy and paste the part of your child theme that registers and enqueues the scripts?

    Admin

    In reply to: How to properly insert adsense codes please ?

    #49607

    The location is fixed – the ads are displayed in-between posts when on the home or archive pages. When on a single post page, the ad is displayed at the end of the post.

    To insert the ads elsewhere, you can use Graphene’s Action Hooks Widget Areas feature.

    Admin

    In reply to: YARPP and Graphene

    #49606

    This is because Graphene is using its own custom template for best display and integration of YARPP related posts. In the next update, we’ll add an option to disable the theme’s YARPP template.

    Admin

    In reply to: WP 4.9.6 with Graphene 2.4.2: Slider doesn't slide

    #49605

    You have the following javascript error on your homepage:

    Bootstrap's JavaScript requires jQuery version 1.9.1 or higher, but lower than version 4
    

    This is caused by the plugin Carousel Horizontal Posts Content Slider plugin which is loading an old version of jQuery (version 1.8).

    You’ll need to either replace that plugin, or contact the developer and ask them to avoid loading their own jQuery script, and just use the one bundled with WordPress.

    Admin

    In reply to: Header image changes on sub-pages

    #49604

    Thanks a lot! I would expect this setting/feature in Customizer > Header-Image, maybe an idea to place it there 🙂

    We might do that in the next update.

Viewing 10 posts - 331 through 340 (of 6,030 total)