Setup cookie on Chrome even without HTTPS
Setup cookie on Chrome even without HTTPS
Setup cookie on Chrome even without HTTPS
There will be many reasons for blank page, you have not mention version for wp, php etc. **To solve wordpress blank page issue follow the steps** disable all plugin and try (if there is an error in plugins then enable 1 by 1) switch to default theme and try (if there is an error in … Read more
Its definitely being hooked into wp_head(), probably with wp_enqueue_scripts(). To find the culprit: First, deactivate your theme, use a twentyx theme instead. Then refresh the front end and check the source code again. If it’s gone: its your theme. To find where its being called from in your theme, search your theme directory /socrates4/ for … Read more
Your queries are not the issue, those should be handled without a problem. I can’t say for sure without really digging into this but I would start with optimizing your page. Your thumbnails are like 4-6 MB each. I could optimize these images down to 20K without losing quality. The initial page load takes 22 … Read more
You’ve touched on a few things here, and there’s both the server and the frontend response time that you’re battling with. You might have issues with both. It’s worth noting firstly that PageSpeed (and the style recalcuating alert in the Chrome timeline) both deal with front-end aspects only – in slightly different ways though (another … Read more
WordPress sites usually use body_class(), which adds CSS classes to the <body> tag. If you inspect the body element itself, most sites will show you something like <body class=”page-template page-template-tpl-events page-template-tpl-events-php page page-id-1168 page-parent page-child parent-pageid-378″> You can tell from these classes that this is a Page, using a Page Template, it is a Parent, … Read more
That’s an issue with the latest version of Chrome. I am on version 45.0.2454.85 and had the same issue. See this article for the full details and solution. http://wptavern.com/a-bug-in-chrome-45-causes-wordpress-admin-menu-to-break
Tinymce.js editor in Chrome?
You should check the rest api http://v2.wp-api.org/ you can access data remotely even update posts, etc.
Try this change to CSS. Replace: .site-title a img{ padding-bottom:8px; padding-top:8px; height:50px; } with: .site-title a img { padding-bottom: 8px; padding-top: 8px; height: 50px; position: relative; z-index: 9; } li.menu-item-1924 { margin-left: 130px; } Explanation Adding margin-left: 130px; to first menu item, will move the menu, visually, to the right, away from GMNG image. The … Read more