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
In reply to: WordPress visual editor displays text in a single vertical column
June 7, 2018 at 7:01 am #49638It 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
In reply to: WordPress visual editor displays text in a single vertical column
May 29, 2018 at 1:35 pm #49624Go to Customizer > Graphene: Display > WP Editor, and tick the option “Disable custom editor styles”.
Admin
Add this code into your child theme’s
functions.phpfile after the opening<?phptag:/** * 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
In reply to: Site title displaying, even though the option is switched off
May 26, 2018 at 10:33 am #49618Is 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
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
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
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
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
You have the following javascript error on your homepage:
Bootstrap's JavaScript requires jQuery version 1.9.1 or higher, but lower than version 4This 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
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.
