• Resolved royco85

    (@royco85)


    I suddenly have a problem with my Grid in the Valenti Theme. Before I went on holiday everything worked fine. Now the grid only seem to work on Internet Explorer and not in Chrome anymore. U can take a look at the website over here: https://www.kickboxingplanet.com/

    I already tried to disable all the plugins and turned them on 1 by 1 to see which one was causing trouble, but it seems this had nothing to do with the grid problem. I also checked for the latest theme update, but it seems I’m already running the latest version.

    I guess it has something to do with the latest Google or Chrome update…

    Hope you guys have some feedback for me! Thanks in advance.

    Best regards,

    Roy

Viewing 15 replies - 1 through 15 (of 48 total)
  • Chances are that it is a bug in the latest version of Chrome (> 44.0.2403.157 m). See this topic: Strange Dashboard Display Problem when using chrome

    The solution (client-side) from that topic:

    Go to chrome://flags/#disable-slimming-paint
    Enable the “Disable slimming paint” option.
    Ensure that the “Enable slimming paint” option below it is not turned on.
    Relaunch Chrome.

    I realise this doesn’t really fix it for your visitors. Up to you what to do with it, leave it be and hope for a quick update from the Chrome team, or take this as a start point of debugging…

    Good luck.

    [edit]
    Okay, by the looks of things there might be something you can do. It’s a confirmed issue on both core.trac.www.ads-software.com and the Chromium project. It might need a temporary fix until the bug is fixed and pushed to the stable version of Chrome. I would start with putting transform: translateZ(0); on the affected elements as mentioned in those tickets.

    If you would like to fix the “Chrome error” for all your users then you can use the code below. Just put it in your themes function.php at the bottom or in a mu-plugin.

    add_action('admin_enqueue_scripts', 'chrome_fix'); function chrome_fix() { if ( strpos( $_SERVER['HTTP_USER_AGENT'], 'Chrome' ) !== false ) wp_add_inline_style( 'wp-admin', '#adminmenu { transform: translateZ(0); }' ); }

    Thread Starter royco85

    (@royco85)

    Thanks everybody, gonna check it out now ??

    Awesome! Let us know if it resolves the issue or not.

    Thread Starter royco85

    (@royco85)

    Oke I’ve used the option of Matthew

    https://www.kickboxingplanet.com/wp-admin/

    Don’t know what happened but now I can’t get on the website anymore.

    Where did you put it? You will need to go into your FTP client and remove it.

    Thread Starter royco85

    (@royco85)

    Oke I’m not that smart is there any possibility u can explain that to me in a childish way how to do it?

    Oke I’m not that smart is there any possibility u can explain that to me in a childish way how to do it?

    Sure!
    Ok, so do you have access to your backend (if you log into your host provider you should be able to do this)? Once you are into your backend look for a file manager or cpanel. Click on it and an interface of files should pop up. There you should see a public_html. Then navigate through the public_html, click on wp-content, and then if you put the code in your theme then click on themes and then the title of your theme. If you put your code in a plugin then click on plugins and click on the plugin folder. Then once you are in your plugin or theme files that you put the code in you can just select the file that you put the code in and edit it. Then scroll to the section that you put it in and remove the code.

    Let me know if that works.

    Thread Starter royco85

    (@royco85)

    Oke could I do this with filezilla? because I know how that works and the things u say are possible thru that ??

    Yes, you can.

    Thread Starter royco85

    (@royco85)

    I’ve put the code in the function.php ??

    Ok, then you can just navigate to that in Filezilla and remove it. The function.php is in your theme so navigate to the theme section. Then we can try to solve the problem.

    Thread Starter royco85

    (@royco85)

    There you should see a public_html. Then navigate through the public_html, click on wp-content, and then if you put the code in your theme then click on themes and then the title of your theme.

    Ive done this!

    Now I can choose some maps like:

    bbpress
    buddypress
    library
    option-tree
    plugins
    woocommerce

    If i go to bb press I see: bbpress-functions.php

    It’s no function.php but could that be it?

    The must be a function.php somewhere. Did you select the right theme?

    Thread Starter royco85

    (@royco85)

    Nooo it was wrong I’ve found it!

Viewing 15 replies - 1 through 15 (of 48 total)
  • The topic ‘(Chrome) Grid problem. Text will, but featured image won't show up’ is closed to new replies.