Wordpress Category Page (unclickable) - wordpress

Recently I have been working on my WordPress blog website is French https://www.geekparfait.com/.
I am using FlatNews WordPress theme http://demo.sneeit.com/flatnews/
Everything was going pretty well. But now I am facing this issue on my categories pages https://www.geekparfait.com/category/ios/. Its like I am unable to click the posts on category pages. The same issue is on the category pages sidebar as well.
But on the homepage https://www.geekparfait.com/, everything is working fine. I am able to click and open the posts on the homepage.
Hope I can get some insight from you guys.
Thanks

The issue is with the sidebar and the position attribute of it. Please try out the below code in style.css or theme option panel custom css setion.
.category section.fn-primary > strong {
position: inherit;
}
Hope this will work for you.
Screenshot

The problem is the sidebar is generating that can click in that entire div, try changing that position: relative. with
.category strong {
position: inherit!important;
}

Related

How to delete Last Update date in wordpress' page?

I'm newbie in wordpress. I got website: http://xn--lnepengerprivat-hlb.com/ and on homepage (it's page, not a post!) I've got Last Update date. How to delete it? Please help me
Add this css in your style.css or find in your theme file and remove the php code.
.page-last-modified {
display: none;
}
You could hide the page post date by using CSS, either in a styles.css file or in the custom CSS editor of WP Customizer.
.page-last-modified {
display: none;
}
Another solution would be to delete the whole block in the page template file of your child theme.

Some WordPress pages are not loading. Contents are not showing

Whenever I'm trying to view some of my customized pages in WordPress theme, those are not loading. Keep loading but contents are not appearing. http://test.sourceone.lk/news/
http://test.sourceone.lk/services-2/
Anyone have a solution please?
Thank You.
This appears to be an issue with the theme. The content is loading, but the preloader overlay doesn't disappear. Have you contacted the theme developer about the issue?
If you're not too bothered about having the preloader working/displaying or you just want a quick/temporary fix, you could add some custom CSS code to hide it:
.preloader {
display: none;
}
Try this code:
jQuery(window).on('load', function () {
jQuery('.preloader').delay(350).fadeOut('slow');
});
This is because the fadeOut event doesn't work. Your content loads, but the preloader does not disappear.

How to create a landing page with the child theme

I have purchased MasterStudy theme for my website and It doesn't have a template with no header or footer to create a landing page. My question is: how can I create a page with such template via its child theme and use visual composer to add the content? Is this possible?
Not sure if I completely understood your situation, but I'll try to help anyway.
Have you checked all the Theme Options? Sometimes you can easily delete the footer and header through the Theme Options. In case you have and there's not an option to do so, the smart move would be to create a custom page to fit your needs. You'll find some information about how to do so right here http://www.wpbeginner.com/wp-themes/how-to-create-a-custom-page-in-wordpress/
Remember that the visual composer only edits the content of the webpage per se, meaning, it can't modify the template structure (footer and header in this case).
Hope it helps!
Actually, the solution is much more simple than I thought. I resolved it by adding custom CSS to hide the header and the footer of the page by mentioning Its ID. Here is the Code I used >>
.page-id-2114 #header {
display: none;
}
.page-id-2114 footer {
display: none;
}

Wordpress admin submenus not appearing

When I log into my Wordpress site, I found few problems. The submenus of the admin area do not appear when I am hovering over a menu.
Also the Widgets area is completely messed up. Its very hard to use the widgets.
I tried adding define('SCRIPT_DEBUG', true); in my wp-config.php file but it does not help. I've also tried disabling all plugins and going back to the default theme.
Please help me
Base on the issues, it's a jquery conflict or error on the admin area. Please deactivate the plugins one by one and see which causing the issue, you probably has admin styling plugin or something. Thanks
Cheers!
The problem is occur when you use wordpress from Chrome Browser. To resolve the problem, just add the following code in your functions.php located in theme folder.
function admin_menu_fix() {
echo '<style>
#adminmenu { transform: translateZ(0); }
</style>';
}
add_action('admin_head', 'admin_menu_fix');
For your reference: https://code.google.com/p/chromium/issues/detail?id=509179#c37

wordpress footer moves to the top of main content when using custom pages

I've just started using wordpress for CMS and I've built a test website - however on the pages when I've added a custom page template the footer moves up to the very top of the main content area. I've tried searching the web and used some fixes mentioned in tutorials clear: both; etc.. and nothing has corrected the problem . Any help to fix this issue would be greatly appreciated.
the static home page is working fine:
http://creative-media.info/wp/
however on the following custom page below - you'll be able to see the footer error.
http://creative-media.info/wp/gallery-lightbox/
kind regards
Paul
The problem seems to be <div id="whiteboxfaz"> </div>
Remove in that id position: absolute;

Resources