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: When sharing a post on Twitter, featured image is not detected.
December 7, 2019 at 5:35 pm #51214Please provide the URL for the page so that we can take a look.
Admin
Unfortunately it’s rather impossible to pinpoint which part of your WordPress site is causing the error with just that log line. Is there any debug trace, i.e. the preceeding functions call?
Admin
Thank you for reporting the issue. WooCommerce changes the comment type on products from “comment” to “review”, which was why it was not showing up as comment in the product page. We’ll release an update soon that will ensure comments on WooCommerce product page appear as well.
Admin
Please provide a link to the page where this is happening so that we can take a look.
Admin
The responses above are for a much older version of Graphene, when it was using a completely different grid system. For the latest version of Graphene, try using the following code:
@media (min-width: 768px){ .navbar-nav { float: none; margin: 0; text-align: center; } .navbar-nav>li { float: none; display: inline-block; } .navbar-nav>li:last-child { border-right: none; } }Admin
That is weird. Can you provide us with a temporary administrator access to the site so that we can investigate the issue further? You may use our secure contact form to send the access details here: https://www.graphene-theme.com/contact-us/
Admin
Hi Bernard,
I think you have sent us this query via Contact Form a couple of days ago, to which we have already replied. In case you have not received the reply, here is the content of that email quoted verbatim:
Certainly, you can upgrade from Single Site licence to multiple sites later on. Just let us know again when you’re ready and we’ll provide you with a coupon code that will deduct the cost of the single site licence for your multiple-sites licence.
Admin
You should be able to adjust the slider as per the screenshot below. If not, try entering the values in the boxes manually as per the image below. If you are unable to publish the changes after entering the values, try changing any other setting first as that should enable the Publish button.

Admin
Try going to WP Admin > Appearance > Customize. Select Graphene Display > Columns width, and adjust the slider for Columns width (three-column mode). Then publish the changes and see if that fixes the issue.
Admin
Thanks for the report. This is indeed a bug and we’ll release an update shortly to fix the issue.
In the mean time, if you’d like to apply the fix yourself, follow these steps:
- Edit the file
graphene/inc/user.php. - Replace the function called
graphene_pre_get_avatar_datawith the following code:
/** * Replace the user's Gravatar with custom user avatar */ function graphene_pre_get_avatar_data( $args, $id_or_email ) { $user_id = 0; if ( is_object( $id_or_email ) ) { /* If this is a comment object, check if user is registered */ if ( isset( $id_or_email->comment_ID ) ) { if ( $id_or_email->user_id ) $user_id = $id_or_email->user_id; else { $user = get_user_by( 'email', $id_or_email->comment_author_email ); if ( $user ) $user_id = $user->ID; } } else { $user_id = $id_or_email->ID; } } else if ( is_numeric( $id_or_email ) ) { /* If this is the user ID, set it as such */ $user_id = $id_or_email; } else if ( is_string( $id_or_email ) && is_email( $id_or_email ) ) { /* If this is email, see if it's a registered user */ $user = get_user_by( 'email', $id_or_email ); if ( $user ) $user_id = $user->ID; } /* Get the custom user image, if available */ if ( $user_id ) { $user_image = get_user_meta( $user_id, 'graphene_author_imgurl', true ); if ( $user_image ) $args['url'] = esc_url( $user_image ); } return $args; } add_filter( 'pre_get_avatar_data', 'graphene_pre_get_avatar_data', 10, 2 ); - Edit the file
