Syahir Hakim

Keymaster

Forum Replies Created

  • Admin

    In reply to: Advice

    #50142

    You can use the graphene_setup action hook, which runs after the Graphene setup routine and only when Graphene is being used as the current theme.

    Admin

    In reply to: Advice

    #50132

    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_settings global 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

    In reply to: Can't postion element after update.

    #50126

    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

    In reply to: Responsive gallery

    #50110

    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

    In reply to: Undefined Index: Icon_name

    #50109

    Hi Venutius,

    Thanks for the report. We’ll include the fix in the next theme update.

    Admin

    In reply to: Problems with latests version of Gutenberg

    #50108

    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

    In reply to: Graphene Theme Hard Coded?

    #50101

    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?

    #50049

    That 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.

    #50030

    All 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

    In reply to: Error while updating Graphene Plus 2.5.2

    #50013

    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.

Viewing 10 posts - 251 through 260 (of 6,030 total)