Syahir Hakim
KeymasterKuala Lumpur, Malaysia
When not perched on my workspace, I tremendously enjoy hiking in the bushes and climbing mountains. They serve as much-needed refuges from the pretense of cities.
Forum Replies Created
-
Admin
You can use a child theme instead to change the string. See the code to insert into your child theme’s
functions.phpfile here: https://forum.graphene-theme.com/topic/changing-category-archives-title-text/#post-46130You 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
Same suggestion as your other request: try using the Loco Translate plugin.
Admin
In reply to: Removing the word "Category", "Tag" before the category/tag name, etc.
March 29, 2018 at 9:48 pm #49330You can use the following plugin to translate or modify the theme’s text strings without modifying the theme’s files:
Admin
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
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
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
@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
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
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.phpwith 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
Is your issue similar to the one reported here?
