mm_developer
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Fatal errorDisable one by one plugin and check the site.
Forum: Fixing WordPress
In reply to: How to remove comment box from a post?Login to wp-admin and go to Settings->Discussion. Uncheck “Allow people to post comments on new articles”.
Forum: Fixing WordPress
In reply to: problems after moving siteThe errors displaying are notices and warnings. So we can ignore it.
Check WP_DEBUG constant in wp_config.php file and change it to false.
Otherwise use .htaccess to suppress errors.Forum: Fixing WordPress
In reply to: Urgent! Some issue with my sub menuFor the ‘Lifestyle’ menu, there is a class ‘menupost’ added. It is causing the problem. Comment the following CSS code in style.css line 1331 to fix the problem.
.main-menu > ul > li.megamenu, .main-menu > ul > li.menupost {
position: inherit !important;
}Forum: Fixing WordPress
In reply to: Change color of text in one menu item…You can do this with CSS. Add the following css code to style.css in the active theme folder.
.menubookademo.menu-item a { color: #f00;/*update the color you want*/}
Forum: Fixing WordPress
In reply to: [CSS] Fatal ErrorCan you post the code in line 32. It will give some idea to understand the problem. Else try the following links, may be helpful.
http://stackoverflow.com/questions/8971261/php-5-4-call-time-pass-by-reference-easy-fix-available
Forum: Fixing WordPress
In reply to: Admin not loading, website not loadingIn wp-config.php page, change the define(‘WP_DEBUG’, false) to define(‘WP_DEBUG’, true) to see if there are any errors.
Forum: Fixing WordPress
In reply to: Is there a way to define the prefix of a single table ?Are you installing the 2 wordpress in same host?
If yes, then you have to create 2 tables with wp and wp2_.Forum: Fixing WordPress
In reply to: Header Width / Font size bumping links to next rowHi,
The main navigation is little bit different in home page and donate page. If the main nav of home page should be applied across all pages of the site, then in wp-admin go to appearance -> Menus and check how the menus are assigned to pages.
If the main nav’s should be different on both pages, and the problem is with menu items jumping to next row then add the following css code at the end of site CSS file. It will fix the problem.
#main-nav.pagewidth {
width: auto;
}Forum: Fixing WordPress
In reply to: Is there a way to define the prefix of a single table ?No, it is not possible to share the same table wp_post with different prefix wp_ and wp2_. There should be two tables in the DB, wp_post and wp2_post.
Forum: Fixing WordPress
In reply to: Favicon not showingUpload a favicon.png file in the root folder. Then try like this:
<link rel=”shortcut icon” href=”http://widerthanround.com/favicon.png” />Forum: Themes and Templates
In reply to: Homepage Slider Stopped WorkingPlease check the console in firebug, there are two 500 internal server errors. May be fixing those errors can solve your issue.
Forum: Fixing WordPress
In reply to: index.php not displayingThe site is working fine but loading slow. What is your problem?
Forum: Fixing WordPress
In reply to: How to keep the 'Home' link the active color on the homepageTo make home link active by default write css for it. What is the URL of your site.
Forum: Fixing WordPress
In reply to: How do I change "Older entries" font sizeOpen style.css that is in Manolya theme folder to change the font-size at the footer area.