Syahir Hakim

Keymaster

Forum Replies Created

  • Admin

    In reply to: How to hide/deactivate page path adress under menu

    #51369

    Looks like Yoast SEO removes the option to disable breadcrumbs once the theme has declared support for that feature.

    We’ll add a fix for this in the next theme update. In the mean time, add the following code to Customizer > Additional CSS to hide the breadcrumbs:

    .breadcrumb-yoast {
    	display: none;
    }
    
    Admin

    That section is not controlled by Graphene, but by WordPress itself. Try switching to the default TwentyTwenty theme and see if the issue persists.

    Admin

    In reply to: Picture in link in bad resolution

    #51355

    Thanks for the feedback. We’ll include a fix for this issue in the next theme update.

    Admin

    In reply to: Breadcrumb with Yoast dosent show up

    #51354

    Graphene only natively supports Breadcrumb NavXT plugin at the moment. In the next theme update, we’ll add native support for Yoast SEO breadcrumbs.

    Admin

    In reply to: WP Page – H1 missing

    #51343

    The latest changelog is always included with the theme. You can view it here:
    https://www.teawea.com/wp-content/themes/graphene/changelog.txt

    We have also updated the changelog on our website.

    Admin

    In reply to: block-editor width when editing

    #51342

    Thanks for the feedback. Graphene did change the editor width to follow the actual content width. However, one of the more recent WordPress updates changed the block editor wrapper class so it’s no longer applied.

    We’ll include a fix for this in the next theme update.

    Admin

    In reply to: Mobile site switchover

    #51341

    The easiest way would be to just hide the title line using the following CSS code:

    @media (max-width: 767px) {
    	.header_title {
    		display: none !important;
    	}
    }
    
    Admin

    In reply to: Removing white space from the empty title block

    #51340

    Using the code that I provided as a sample, to limit any additional CSS to a specific page, you’ll have to prefix the CSS code with the page-specific CSS class. This class is highlighted in red below.

    <span style="color:red">.page-id-19</span> #content,
    <span style="color:red">.page-id-19</span> .entry-content {
    	padding-top: 0;
    }
    

    To apply specific CSS codes only on specific pages, follow the example above and replace the ID number (in the case above it’s “19”) with the ID number of specific page in question.

    To easily determine what is the ID number for any pages, you may use the following plugin: https://wordpress.org/plugins/reveal-ids-for-wp-admin-25/

    On the specific page that you mentioned above (family-therapy), the following code will expand the main image through the surrounding white space:

    .page-id-22 .wp-block-cover {
    	margin: 0 -15px 1.5em -15px;
    	width: auto;
    }
    
    Admin

    In reply to: Mobile site switchover

    #51338

    Graphene uses Bootstrap as the grid system, so the mobile breakpoints follow the same as Bootstrap. In the case of mobile devices, it’s 768px. See Bootstrap’s documentation for the full list of responsive breakpoints.

    Admin

    In reply to: Removing white space from the empty title block

    #51323

    Use the following code in Additional CSS:

    .page-id-19 #content,
    .page-id-19 .entry-content {
    	padding-top: 0;
    }
    

Viewing 10 posts - 121 through 130 (of 6,030 total)