Syahir Hakim

Keymaster

Forum Replies Created

  • Admin

    In reply to: Mobile Neo and Grephene Plus

    #49392

    Support for Graphene Plus is delivered via the user’s account page, which is why you don’t see a Graphene Plus support forum here.

    To answer your questions:

    1. I may be interested in buying Graphene Plus but didn’t see anywhere if it replaces or if Mobile Neo is still required?

    Graphene Plus does not replace Neo, but neither is Neo still required. Since version 2.0, the free Graphene theme itself had been fully responsive, which means that Neo is no longer needed to provide an optimized mobile experience. However, should you wish to continue using Neo for any reason (e.g. design preference, etc.), you can still use it either with Graphene or Graphene Plus.

    2. Similarly, if I’m already familiar with AMP and bbPress (free) is the cost for the custom configuration?

    Graphene Plus does not recreate the functionality of AMP and bbPress. However, what it does is that both of these features are deeply integrated into the Graphene Plus. This means that, among others, you get optimized looks and appearance for both AMP and bbPress. Additionally, Graphene Plus has also enhanced some of the features for AMP and bbPress that are not available with those individual plugins.

    3. Are there other features in Plus, other than AMP/bbPress, not already in Graphene (free)?

    Yes, and in fact, quite a lot. There are many additional options only available in Graphene Plus, including an enhanced WordPress Editor to take full advantage of the Bootstrap framework.

    Within the next few days, we will be releasing a major update to Graphene Plus that will include a custom page builder feature, which will allow you to create completely custom layouts for each post and page, quite easily.

    4. Finally, when the WooCommerce version arrives, have you considered a comparison sheet, or similar marketing material, to convert users from StoreFront?

    At the moment, we have no plans to convert users from other ecommerce solutions. However, should there be sufficient interest, we will definitely consider it.

    Admin

    Please provide the link to your site so that we can take a look.

    Additionally, are you using any sort of SEO plugin?

    Admin

    In reply to: Use space left of mobile menu button

    #49386

    If you have unchecked the option “Display Site Title and Tagline” in Customizer > Site Identity, the site title will not be displayed in mobile view. This is a bug in the current version and we’ll include the fix in the next update.

    Also, I tried to enable the action hook widget, but it does not seem possible. I followed the documentation, but when I click on header.php, nothing happens. (It doesn’t give me options, such as to “enable action hook widget.”)

    If you click on the header.php link and nothing happens, it’s probably a script conflict with one of the plugins on your site. Try to temporarily deactivate all plugins and see if it works. It should expand to list out all the action hooks available under that file.

    Admin

    In reply to: Division by zero error

    #49385

    Hi,

    It’s not a critical error so you don’t have to worry about it, but we’ll include a fix for it in the next update. Thanks for reporting it!

    Admin

    Looks like your site is still using the old theme’s stylesheet after you have updated the theme. If you’re using any page caching plugin, e.g. W3 Total Cache, WP Super Cache, Autoptimize, etc., make sure to clear to the cache so that the latest stylesheet is loaded.

    Ensure to clear your browser’s cache as well by pressing CTRL/CMD+F5.

    Admin

    In reply to: Use space left of mobile menu button

    #49381

    By default, the theme places the site title in that space. You can set the site title via WP Admin > Settings > General.

    To add other content to that space, you can use the theme’s Action Hook Widget Area feature, using the grahene_navbar_header hook.

    Admin

    In reply to: How to move a footer widget to the center?

    #49374

    Please provide the URL to your site so that we can take a look. The screenshot you included wasn’t very clear in showing what you’d like to achieve.

    Admin

    In reply to: Page navigation broken

    #49373

    I am unable to reproduce this error in our development server.

    A couple of things to try:

    1. Go to WP Admin > Settings > Permalinks, and click the “Save changes” button. This will cause WordPress to rebuild the internal link structure.
    2. Temporarily deactivate all plugins to see if it’s a plugin conflict.
    Admin

    In reply to: How to edit the caption "author" in the comments

    #49372
    function graphene_filter_gettext( $translated, $original, $domain ) {
    	$strings = array(
    		'Category: <span>%s</span>'	=> '<span>%s</span>',
    		'Tag: <span>%s</span>'		=> '<span>%s</span>',
    		'Filed under %2$s'			=> '%2$s',
    	);
    
    	if ( ! empty( $strings[$original] ) ) {
    		$translations = &get_translations_for_domain( $domain );
    		$translated = $translations->translate( $strings[$original] );
    	}
    	
    	return $translated;
    }
    add_filter( 'gettext', 'graphene_filter_gettext', 10, 3 );
    
    Admin

    In reply to: How to edit the caption "author" in the comments

    #49364

    Instead of copying the whole block, just add a new line like this:

    function graphene_filter_gettext( $translated, $original, $domain ) {
    	$strings = array(
    		'Category: <span>%s</span>'	=> '<span>%s</span>',
    		'Tag: <span>%s</span>'		=> '<span>%s</span>',
    	);
    
    	if ( ! empty( $strings[$original] ) ) {
    		$translations = &get_translations_for_domain( $domain );
    		$translated = $translations->translate( $strings[$original] );
    	}
    	
    	return $translated;
    }
    add_filter( 'gettext', 'graphene_filter_gettext', 10, 3 );
    

Viewing 10 posts - 411 through 420 (of 6,030 total)