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,
Yes, we’ve been able to replicate the issue and fixed it. It’ll be available in the next update soon.
Admin
Basically Nirvana is trying to load the same plugin that GM Neo has already loaded. We’ve added a check on GM Neo side, but this issue will still happen since the error message you quoted above suggests that the Nirvana is loaded after GM Neo is loaded.
Try asking the Nirvana developers to add a check before loading TGMPA.
if ( ! class_exists( 'TGM_Plugin_Activation' ) ) require_once( 'includes/tgm.php' );Admin
In reply to: Change color of MENU (both mobile toggle and desktop)
December 25, 2015 at 12:09 am #45712This is the full CSS code for the menu colours. Copy the ones that you need to change into the theme’s Custom CSS option and change the colour codes accordingly.
Might be easier to pinpoint which code you need to change by using the Inspector feature of the Developer’s Tools in Chrome and Firefox.
.navbar-inverse {
background-color: #222;
border-color: #080808;
}
.navbar-inverse .navbar-brand {
color: #9d9d9d;
}
.navbar-inverse .navbar-brand:hover,
.navbar-inverse .navbar-brand:focus {
color: #fff;
background-color: transparent;
}
.navbar-inverse .navbar-text {
color: #9d9d9d;
}
.navbar-inverse .navbar-nav > li > a {
color: #9d9d9d;
}
.navbar-inverse .navbar-nav > li > a:hover,
.navbar-inverse .navbar-nav > li > a:focus {
color: #fff;
background-color: transparent;
}
.navbar-inverse .navbar-nav > .active > a,
.navbar-inverse .navbar-nav > .active > a:hover,
.navbar-inverse .navbar-nav > .active > a:focus {
color: #fff;
background-color: #080808;
}
.navbar-inverse .navbar-nav > .disabled > a,
.navbar-inverse .navbar-nav > .disabled > a:hover,
.navbar-inverse .navbar-nav > .disabled > a:focus {
color: #444;
background-color: transparent;
}
.navbar-inverse .navbar-toggle {
border-color: #333;
}
.navbar-inverse .navbar-toggle:hover,
.navbar-inverse .navbar-toggle:focus {
background-color: #333;
}
.navbar-inverse .navbar-toggle .icon-bar {
background-color: #fff;
}
.navbar-inverse .navbar-collapse,
.navbar-inverse .navbar-form {
border-color: #101010;
}
.navbar-inverse .navbar-nav > .open > a,
.navbar-inverse .navbar-nav > .open > a:hover,
.navbar-inverse .navbar-nav > .open > a:focus {
color: #fff;
background-color: #080808;
}
.navbar-inverse .navbar-link {
color: #9d9d9d;
}
.navbar-inverse .navbar-link:hover {
color: #fff;
}
.navbar-inverse .btn-link {
color: #9d9d9d;
}
.navbar-inverse .btn-link:hover,
.navbar-inverse .btn-link:focus {
color: #fff;
}
.navbar-inverse .btn-link[disabled]:hover,
fieldset[disabled] .navbar-inverse .btn-link:hover,
.navbar-inverse .btn-link[disabled]:focus,
fieldset[disabled] .navbar-inverse .btn-link:focus {
color: #444;
}
/* For mobile view */
@media (max-width: 767px) {
.navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
border-color: #080808;
}
.navbar-inverse .navbar-nav .open .dropdown-menu .divider {
background-color: #080808;
}
.navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
color: #9d9d9d;
}
.navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
.navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
color: #fff;
background-color: transparent;
}
.navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
.navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
.navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
color: #fff;
background-color: #080808;
}
.navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
.navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
.navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
color: #444;
background-color: transparent;
}
}Admin
In reply to: Getting an error message on all pages that use Custom Post Types
December 25, 2015 at 12:04 am #45717Does this happen only when using mobile devices? What about the desktop site?
Admin
Hi Michal,
Can you please turn off Infinite Scroll temporarily so that we can investigate further. Also, was there any updates performed in the last few days when the issue started to happen? Please also include a screenshot of your Posts stack settings for the front page.
Thanks!
Admin
The email address for your WordPress user account needs to match the email address that you used on Gravatar. You can check the gravatar that’s associated with any email here: https://en.gravatar.com/site/check/
Admin
Hmm..something’s not quite right with the website. This is what I get when I tried to visit it:
Admin
In reply to: Breadcrumb doesn't show up using prebuilt page builder template
December 13, 2015 at 11:49 am #45692The theme is using Breadcrumb NavXT plugin for the breadcrumbs. Did you try using the same plugin?
Admin
This post should point you in the right direction: https://premium.wpmudev.org/blog/display-wordpress-post-page-ids/
Admin
Quote:I tried to split the single row of the latest article into 3 column, 12% 76% 12% the stack post in the 76% tilted everything to the left.The Stacks add-on converts your column width setting to the nearest native breakpoints of the Bootstrap framework, so that it will adapt seamlessly to any screen size. Sometimes, some combination of column width (like what you have discovered) did not fit neatly into the native breakpoints of the Bootstrap framework, causing the issue. Simply adjust the column setting to the nearest percentage that works (like 10% 80% 10% or 15% 70% 15%) and you should be all set.
