Eggheads
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: remove menu and logo from home page onlyFind this
wp_nav_menu($menu_args);
line in your code and try to replace with the following-if ( !is_front_page() ) { wp_nav_menu($menu_args); }
Forum: Fixing WordPress
In reply to: remove menu and logo from home page onlyIf you arn’t, create a child theme first and copy header.php from the parent. There searcch for “wp_nav_menu” and use the following logic-
<?php if ( !is_front_page() ) {
wp_nav_menu( array( ‘theme_location’ => ‘primary’ ) ); // or replace this with the ‘wp_nav_menu line from parent theme
}
?>Forum: Fixing WordPress
In reply to: How do I change 593 Posts Category in one go?You may find this old thread useful Link<link>
Forum: Fixing WordPress
In reply to: One of my post is missingHi check if somehow the page goes into ‘trash’ or ‘draft’
Forum: Fixing WordPress
In reply to: How to remove the background color around PayPal button?You can either create a child theme and put this (better approach) or go to theme setting and put this as custom css, I believe your theme is providing a setting section for custom css inclusion.
Forum: Fixing WordPress
In reply to: strange dot patternThis community is for free plugin and theme support. Kindly contact your theme developer for this. If you want to do this your self I’m giving you a head start –
Your mk-fancy-title.pattern-style class is using a background image.Forum: Fixing WordPress
In reply to: How to remove the background color around PayPal button?.post-content form {
background-color: #fff!important;
}this will solve the issue.
Try using “!important” at the end of max-height value.
Forum: Fixing WordPress
In reply to: cannot log in to adminOne thing I forget to ask, do you forget your password or something? In that case you can follow these steps-
– Get an MD5 hash of your password. Visit md5 Hash Generator– From cpanel, access phpMyAdmin and follow this link
If it is not your problem then give some more details.
You can consider using ‘locale’ filter
add_filter( 'locale', 'set_my_locale' );
Forum: Everything else WordPress
In reply to: I'm being asked to login in again every 2 minsYou might try the following one by one and see if that resolves the issue-
1. Clear your browser cookies
2. deactivate all the plugins
3. Switched back to default WP theme
4. Check your .htaccess fileForum: Fixing WordPress
In reply to: cannot log in to adminCan you access your cpanel?
Forum: Fixing WordPress
In reply to: Password setting not visible in Add New UserSeems to me something overwrites your WordPress form. It might be a plugin. Try deactivating all the plugins and check this issue.
Try to deactivated all the plugins and see if the problem persists. If not then activated them back, one by one and find out the culprit.
Forum: Fixing WordPress
In reply to: My Headings (h1, h2, h3) don't look right in PREVIEWI believe it will not mess things up for SEO ??