mm_developer
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Create new page in wordpressDid you made any changes in the code files.
Forum: Fixing WordPress
In reply to: All pages yield 404 errorAre you able to open the pages from wp-admin. Check the Permalinks.
Forum: Fixing WordPress
In reply to: featured image not showingEnable display_errors first. In your custom theme may be some files are missing. Compare the files with Twenty fifteen.
Forum: Fixing WordPress
In reply to: Need to view WP site and by-pass index.htmlYou can move the wordpress site to a sub folder and access it using the sub folder name. When ever you want to make your wordpress site live then you can move it back to the root folder
Forum: Fixing WordPress
In reply to: Cannot speed up site!!Try the ‘EWWW image optimizer’ to optimize the media library images.
Forum: Fixing WordPress
In reply to: Session Cannot Start in my wordpress SiteHow are you storing the value in session? Before assigning value to a session variable write session_start().
Forum: Fixing WordPress
In reply to: wordpress installed but website not showingIs there any index.html page in the root directory of wordpress?
If yes, rename it and check the site.is the wordpress files are placed in the correct root folder?
Forum: Fixing WordPress
In reply to: Child Theme upload format Help NeededA child theme consists of at least one directory (the child theme directory) and two files (style.css and functions.php), which you will need to create.
Do you have functions.php in your child directory?
Forum: Fixing WordPress
In reply to: Have a duplicate homepage listed as /page/2You may have set the page 2 as home page. Check this URL https://en.support.wordpress.com/pages/front-page/
which may help you.
If the problem still exists then which theme you are using?Forum: Fixing WordPress
In reply to: Can't add a commentSearch in your files where this error message is coming from?
Forum: Fixing WordPress
In reply to: Verically repeat background left and right?Try background-repeat property of CSS.
Forum: Fixing WordPress
In reply to: Cannot speed up site!!1) Check the site pages in Google Page insight tool https://developers.google.com/speed/pagespeed/ to see what else can be optimized.
2) Check your server configuration.Forum: Fixing WordPress
In reply to: Internal error 500 when trying to access wp-admin folderDid you made any changes in the code. 500 Internal error means there is some syntax error. Enable display_error in .htaccess to view which php file is causing the issue.
Forum: Fixing WordPress
In reply to: Add a log out button to the menuIf you are able to add the logout button then use the function “wp_logout_url()” to logout the user from the site.
Ex: echo “Logout“;
Forum: Fixing WordPress
In reply to: 403 ErrorCheck this link “https://buddypress.org/support/topic/resolved-forum-replies-causing-403-forbidden-error-to-occur/”. Hope this helps you.