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
Admin
There is already a filter before the output from custom styles and colours is minified and printed to
wp_head:$style = apply_filters( 'graphene_custom_style', $style, $echo, $minify, $force_all );If you would like to customize the individual colours and styles, I would suggest to directly modify the
$graphene_settingsglobal variable itself. This is the variable that holds all of Graphene’s settings. The values in this variable is used by the functions you mentioned to generate the correct style code.Example:
function custom_user_style(){ $user_id = get_current_user_id(); if ( ! $user_id ) return; global $graphene_settings; $user_settings = get_user_meta( $user_id, 'custom_graphene_settings', true ); $graphene_settings = array_merge( $graphene_settings, $user_settings ); } add_action( 'template_redirect', 'custom_user_style' );Admin
The header widget area is not styled by default. You will need to add your own custom CSS to style/position the header widget.
For example, to move the header widget to the right, add this code to Customizer > Additional CSS:
#graphene-dynamic-widget-graphene_header { right: 10px; left: auto; }Admin
Due to the unlimited number of possibilities on how action hook widget areas could be used, there might be minor issues like this when you use standard WordPress features (e.g. a gallery) inside an action hook widget area.
Typically, the only practical way to resolve it is by adding some custom CSS, which you have done.
Admin
Hi Venutius,
Thanks for the report. We’ll include the fix in the next theme update.
Admin
We’ve tested with the latest version of Gutenberg (4.4.0), but could not reproduce this issue. It could be a plugin conflict. Can you try temporarily deactivating all plugins except Gutenberg, and see if the issue persist?
Admin
Hi Steve,
I’ve replied to you via email, but I’m also adding it here in case this information would be useful to other users who are facing similar issue.
Graphene and Graphene Plus does not have any hardcoded URLs to CSS files. Typically issues like these occur when there are existing entries in the database that are using HTTP instead of HTTPS. When migrating an existing site from HTTP to HTTPS, it is almost always required to do a search and replace on the database entries as well. It is not sufficient to simply enable SSL on the server.
If your host is unable to assist you with that, I would suggest for you to try installing the Really Simple SSL plugin. This would be the simplest way to move an existing WordPress site to HTTPS.
Admin
In reply to: How to remove "under construction" for individual pages?
October 27, 2018 at 8:30 am #50049That is the “menu item description” feature in the Graphene theme. It is likely that WordPress is auto-populating the menu description with the post’s or page’s excerpt. For some reason, this happes to be “Under construction” in your site.
To remove or change the description, go to Dashboard > Appearance > Menus. At the top right corner of the screen, click on the pulldown button labelled “Screen Options”, then tick the checkbox labelled “Description”. Each of your menu items will now have a “Description” field, which contains the text that you are referring to. You can delete or modify the text as necessary.
Admin
In reply to: Need your help with the "Graphene-Options" in Version 2.4.2.
October 20, 2018 at 9:07 am #50030All the options that were in Graphene Options have been migrated to the Customizer. You should still be able to find most of the options (and some new ones) there.
Admin
This is typically caused by missing or invalid licence key. Ensure that Graphene Plus has been activated by going to Dashboard > Appearance > Graphene Plus. If you have moved domains before, get in touch through Priority Support to have your licence migrated to the new domain.
