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: Drop In Google Search Rankings and display of images + pb on samsung 7
March 20, 2017 at 1:29 pm #46577Quote:I’m also not able to see the mobile version of the blog on a Samsung 7 smartphone, I don’t konw if it’s normal…Are you using any performance / page caching plugin like W3 Total Cache, WP Super Cache, etc.?
Quote:I don’t know if it’s related but I’ve been experiencing a sharp decrease of my website traffic by half since Wednesday (I was expecting the other way around…).How do you track the traffic for your site? If you use Google Analytics, you will need to enter the tracking code for the mobile theme as well, at WP Admin > Appearance > GM Neo Options > Advanced > Custom <head> tags. Otherwise, only your desktop traffic will be counted, which might explain why you see a drop in traffic.
I’ve also just did a Google Mobile Friendly test on your site, and it appears that everything is working correctly:
https://search.google.com/search-console/mobile-friendly?id=7FRsHNL9mKMrTo0pqXtqog
Admin
There should be a space between
.pageand.entry-title. Right now the code on your site that I can see is this:.page.entry-title {
display: none !important
}It should be this:
.page .entry-title {
display: none !important
}Admin
Quote:I’ve done as you suggested and added the following to the bottom bar, but for some reason the html gets stripped out and only the copyright notice is shows??Something on your site is stripping out the HTML. Try deactivating all plugins temporarily to see if it’s really a plugin conflict issue.
Admin
Seems like you have a CSS syntax error there:
.page .entry-title {
display: none !important;
.page .post-title {
display: none;
}Should be like this:
.page .entry-title {
display: none !important;
}Admin
Try to reset the column width settings to the default values. Seems like something doesn’t add up there.
Admin
Hi ysraz,
Usually the open div is caused by one of the widgets in the sidebar. Try temporarily removing all of the widgets and see if it resolves the issue.
Admin
Please share the URL to your side so that we can take a look.
Additionally, where did you enter the above CSS code?
Admin
See this post on how to achieve that:
Admin
I assume that this is the same issue as you have posted on another topic here:
https://forum.graphene-theme.com/graphene-support/bottom-bar-2#post-46413
If yes, we can continue the discussion there instead.
Admin
To remove the button from all slides, either change the “Slider content” setting to “Full content” in Customizer > Franz Josef: General > Slider, or add the following code to Customizer > Additional CSS:
.slider .call-to-action {
display: none;
}To remove the button only on specific slides, use the following code instead:
#slide-9 .call-to-action {
display: none;
}The number after
#slide-is the post ID of the slide that you want to remove the button from.
