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: color and size of the return-button where to change?
February 3, 2018 at 9:42 am #49014That part follows the setting for “Archives” label section.
Admin
Those are remnant from the old version. It’s not being used anywhere now, and new install of the theme’s won’t have that value anymore. We’re just keeping it there for existing installations just in case we need it later on, for example if we’re making automatic migration from the theme’s setting to the native WordPress option.
Admin
In reply to: HTTP ERROR 500 after upgrading to 2.0 – Graphene child theme problem
February 3, 2018 at 9:37 am #49012Try modifying the code into this:
<?php function my_graphene_display_slider(){ global $graphene_settings; if ( $graphene_settings['slider_disable'] || is_front_page() ) return; if ( ! $graphene_settings['slider_position'] ) { if ( $graphene_settings['slider_full_width'] ) add_action( 'graphene_before_content-main', 'graphene_slider' ); else add_action( 'graphene_top_content', 'graphene_slider' ); } else { if ( $graphene_settings['slider_full_width'] ) add_action( 'graphene_after_content', 'graphene_slider' ); else add_action( 'graphene_bottom_content', 'graphene_slider', 11 ); } } add_action( 'template_redirect', 'my_graphene_display_slider' );Admin
At the moment, there’s no option to disable it, so hiding it like you did is the way to go for now.
Admin
Admin
This is actually a WordPress feature, not Franz Josef. To disable it, you’ll need to use a child theme with some custom coding required. See this page:
https://codex.wordpress.org/Embeds#Removing_Support_for_An_oEmbed-Enabled_SiteAlternatively, you might be able to find plugins that can disable auto-embed selectively.
Admin
The Favicon feature has been implemented natively in WordPress, so we have removed it from the theme. See this page for more info: https://codex.wordpress.org/Creating_a_Favicon
Admin
In reply to: Colors reverting back after returning to WordPress options
January 30, 2018 at 10:55 pm #48995Make sure you click “Publish” in the Customizer before you navigate away to other pages. Otherwise, the changes will not be saved.
Admin
Try using Pastebin for the code instead.
Admin
.archive-title { font-size: 0; } .archive-title .term-title { font-size: 16px; }
