mm_developer
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Problem with php syntax errorCheck the code carefully. In the first code the first line is ended with a single quote that means the div tag is assigned to a php string.
The second code is not like that, the html and php code are independent. Please check if the second code is also to be assigned to any php string.
Forum: Fixing WordPress
In reply to: Roles missing in moving wp_users in phpmyadminSee the wp_usermeta table for user roles.
Forum: Fixing WordPress
In reply to: Problem with migrating wordpress change urlIt looks like the old url nam eis not properly replaced with new url name in the databse. Using searchreplacedb2.php you can do this. May be this site is helpful for you https://interconnectit.com/products/search-and-replace-for-wordpress-databases/
Forum: Fixing WordPress
In reply to: I felt this would be simple- posts and pages.Check the ‘Popular widget’ https://www.ads-software.com/plugins/popular-widget/ or ‘Recent Posts Widget Extended’ https://www.ads-software.com/plugins/recent-posts-widget-extended/ , these plugins may be helpful for you.
Forum: Fixing WordPress
In reply to: Speed Issues, Performance and PluginsCheck your site in pingdom https://tools.pingdom.com and google page speed insights https://developers.google.com/speed/pagespeed/insights/ to get an idea about the actual problem. Then you can think about the solutions.
Forum: Fixing WordPress
In reply to: How to add a top navigation barCheck your current theme, whether it has support for top nav or not.
Forum: Fixing WordPress
In reply to: Table LinesTo remove table borders, you need to update the style.css file in the wen-business theme folder.
Please comment the following two lines at line 528 in style.css
border-bottom: 1px solid #ddd;
border-left: 1px solid #ddd;Forum: Fixing WordPress
In reply to: Maximum file size for upload: 2 MB.The .htaccess file should be in the folder where the wp-config.php file resides.
Forum: Fixing WordPress
In reply to: add follow widget?If no “follow” widget is available under “appearance”->”widgets”, then go with other social media follow plugins.
Forum: Fixing WordPress
In reply to: Page descriptions show up on site page, how do I modify them?Provide the site url to review it.
Forum: Fixing WordPress
In reply to: Maximum file size for upload: 2 MB.Add the following two lines to .htaccess file in web root folder.
php_value upload_max_filesize 64M
php_value post_max_size 64MForum: Fixing WordPress
In reply to: how to hide page in top menuIn wp-admin, go to appearance->menu and delete the menu items “cart” and “checkout”
Forum: Fixing WordPress
In reply to: I need to remove the second header and menu off front pageIf you can add custom css to active theme style.css, add the following code to remove the black header along with breadcrumb
.pagetitle {display: none;}
Forum: Fixing WordPress
In reply to: Image showing in preview but not on published/live sitePlease remove and re-insert the image via visual editor, it may solve the problem.
Forum: Fixing WordPress
In reply to: custom page in template root directoryDo you want add a PHP page with DB connection? is it in wordpress root folder or theme folder?