Syahir Hakim

Keymaster

Forum Replies Created

  • Admin
    Quote:
    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

    F5F1kTs.png

    Admin

    In reply to: How to remove page title

    #46595

    There should be a space between .page and .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

    In reply to: Bottom Bar

    #46482
    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

    In reply to: How to remove page title

    #46593

    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

    In reply to: Woocommerce and sidebar

    #46513

    Try to reset the column width settings to the default values. Seems like something doesn’t add up there.

    Admin

    In reply to: Woocommerce and sidebar

    #46510

    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

    In reply to: How to remove page title

    #46591

    Please share the URL to your side so that we can take a look.

    Additionally, where did you enter the above CSS code?

    Admin
    Admin

    In reply to: Two column, 1 with with Google map

    #46533

    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

    In reply to: remove "VIEW POST" on specific slider

    #46584

    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.

Viewing 10 posts - 841 through 850 (of 6,030 total)