Syahir Hakim

Keymaster

Forum Replies Created

  • Admin

    In reply to: How to edit the caption "author" in the comments

    #49334

    You can use a child theme instead to change the string. See the code to insert into your child theme’s functions.php file here: https://forum.graphene-theme.com/topic/changing-category-archives-title-text/#post-46130

    You can modify the theme’s files directly, but this is not recommended since the changes will not be preserved when the theme is updated.

    Admin

    In reply to: How to edit the caption "author" in the comments

    #49331

    Same suggestion as your other request: try using the Loco Translate plugin.

    Admin

    You can use the following plugin to translate or modify the theme’s text strings without modifying the theme’s files:

    Admin

    In reply to: Invisible background for pages & posts

    #49326

    Please provide the URL to one of the sites which you’d like to implement this so that we can take a further look. Thanks.

    Admin

    In reply to: Invisible background for pages & posts

    #49324

    By default, the posts and pages have no background – they’re transparent. You’re probably seeing the background of the container element.

    Perhaps you can try the solution in this post:

    Admin

    In reply to: Header Partially Covering Page Title

    #49319

    Copy and paste this code into Customizer > Additional CSS:

    @media (min-width: 768px) {
    	.site-title {
    		margin: 0;
    	}
    	.navbar-pinned .site-title {
    		margin-top: 10px;
    	}
    }
    
    Admin

    In reply to: Mobile Menu broken with Download Manager Plugin

    #49317

    @raoz, in the next theme update we’ll include a more robust compatibility check for this, so you won’t need to manually delete the plugin’s script after every update.

    Admin

    In reply to: Mobile Menu broken with Download Manager Plugin

    #49314

    The code I posted above is specific for the WP Download Manager plugin, and the previously reported Booking Calendar plugin. We might be going another route to solve this issue for most of the plugins in the next update.

    Admin

    In reply to: Mobile Menu broken with Download Manager Plugin

    #49312

    Thanks for the report. We’ll include the fix in the next theme update.

    In the mean time, you can apply the fix by replacing all content in the theme’s file graphene/inc/compat.php with the following code:

    <?php
    if ( ! function_exists( 'the_remaining_content' ) ) :
    /**
     * the_remaining_content() added in WP 3.6
     *
     * @package Graphene
     * @since 1.9
     */
    function the_remaining_content(){
    	the_content();
    }
    endif;
    
    /**
     * Bootstrap conflict with other plugins
     */ 
    function graphene_compat_scripts(){
    
    	/* Don't enqueue Bootstrap as we've already included it */
    	if ( function_exists( 'wpbc_plugin_url' ) ) {
    		wp_dequeue_script( 'wpdevelop-bootstrap' );
    		wp_dequeue_script( 'wpbc-wpdevelop-bootstrap' );
    		wp_enqueue_script( 'wpbc-wpdevelop-bootstrap',  wpbc_plugin_url( '/js/wpbc_bs_no_conflict.js' ), array( 'bootstrap' ) );
    	}
    
    	wp_dequeue_script( 'wpdm-bootstrap' );
    }
    add_action( 'wp_print_scripts', 'graphene_compat_scripts' );
    
    function graphene_compat_styles(){
    
    	/* Don't enqueue Bootstrap as we've already included it */
    	wp_dequeue_style( 'wpdevelop-bts' );
    	wp_dequeue_style( 'wpdm-bootstrap' );
    }
    add_action( 'wp_print_styles', 'graphene_compat_styles' );
    
    Admin

    In reply to: Dropdown Menu Mobile

    #49308

    Is your issue similar to the one reported here?

Viewing 10 posts - 431 through 440 (of 6,030 total)