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
Hi Danick,
Are you using the latest version of WordPress (4.5) and Stacks (1.3)?
Admin
Hi Gendji,
You can see the changelog for Stacks here: https://forum.graphene-theme.com/franz-josef/addons/stacks/
We’ve updated the page to include the latest changelog for version 1.3.
For the CSS, you can limit the code to apply to front page only by prefixing the CSS selector with
.home. Example:.home .post .featured-image,
.home .hentry .featured-video {
width: 100% !important;
float: none;
padding: 0;
}Admin
We’ve just released an update for Stacks to fix this issue. Do update your copy and let us know if you’re still running into issues. Make sure that you clear your browser cache after the update too.
Admin
Please provide the URL to your site so that we can take a look and suggest a solution.
Admin
In reply to: Show home page panes in Graphene and Blog for the front page on Graphene Neo Mobile
March 21, 2016 at 9:27 pm #45957We’ll add an option to display posts by category to the static front page in Graphene Mobile Neo. The update should be available by this week.
Admin
Hi Chris,
Yes, you’ll be able to use full-width layout using the Stacks addon.
Admin
In reply to: Purchased Graphene Mobile Neo – Don't want Graphene credits to display.
February 28, 2016 at 2:06 pm #45922In WP Admin > Settings > Any Mobile Theme, make sure you’ve selected the child theme as the mobile theme.
Admin
Yep, do as @chrisdoth suggested above. We’ll include that fix in the next theme update.
Admin
In reply to: Revisiting NEO "Switch to Desktop Version" missing from footer.
February 19, 2016 at 2:19 am #45720I can see that the link is actually there, but there is no text label for it. Go to WP Admin > Settings > Any Mobile Theme, and make sure there is some text for the “Switch Desktop Theme Link Text” option.
Admin
In reply to: Purchased Graphene Mobile Neo – Don't want Graphene credits to display.
February 19, 2016 at 2:15 am #45920OK, add this code to Neo’s child theme
functions.phpfile:function gmneo_filter_gettext( $translated, $original, $domain ) {
$strings = array(
'Powered by %s.' => '',
);
if ( ! empty( $strings[$original] ) ) {
$translations = &get_translations_for_domain( $domain );
$translated = $translations->translate( $strings[$original] );
}
return $translated;
}
add_filter( 'gettext', 'gmneo_filter_gettext', 10, 3 );
