wprock
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: how to find you rss feed url?Forum: Fixing WordPress
In reply to: how to find you rss feed url?what is your site url?
Forum: Fixing WordPress
In reply to: Home page getting a 404 errortry this code
<?xml version="1.0" encoding="UTF-8"?> <configuration> <system.webServer> <defaultDocument> <!-- Set the default document --> <files> <remove value="index.php" /> <add value="index.php" /> </files> </defaultDocument> <httpErrors errorMode="Detailed"/> <rewrite> <rules> <rule name="wordpress" patternSyntax="Wildcard"> <match url="*" /> <conditions> <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" /> <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" /> </conditions> <action type="Rewrite" url="index.php" /> </rule> </rules> </rewrite> </system.webServer> </configuration>After that you will go to dashboard – general settings – permalink. Select the custom and put /%postname%/ and save permalink. Now check once the site.
you will re-upload the wp-admin and wp-includes folder via ftp
Forum: Fixing WordPress
In reply to: Error page.htaccess file is missing in root folder. go to dashboard – general settings – permalink and save the permalink structure once.
Forum: Fixing WordPress
In reply to: kinda messed up need to know how to fix thisyou put the wrong thing on pastebin. download the file in your local machine .then open the file and copy the entire code and paste on the pastebin.com. Then we can check the code of that file. Does make sense?
Forum: Fixing WordPress
In reply to: kinda messed up need to know how to fix thiscopy the code from functions.php file and paste in pastebin.com. After that share the pastebin link here. We will check the code and try to resolve it.
Forum: Fixing WordPress
In reply to: Footer issuecheck once custom_functions.php file.
Forum: Fixing WordPress
In reply to: Social Media Icons appears in Google Chrome only!, Why?I am getting 7 icons on all browsers
Forum: Fixing WordPress
In reply to: A notification bar above the (sticky) posts)If you know the PHP and HTML then you will edit your theme files like index.php file and place the plugin’s code above the loop.
Forum: Fixing WordPress
In reply to: Trouble with date and postingYou will go to dashboard-general settings and select your local timezone from drop down and then save it. I think that it will work for you
Forum: Fixing WordPress
In reply to: Site Title Won't Updatego to dashboard – general settings. there two text boxes. one is Site title and another is Tagline. Try to change the content from there or check once the theme’s header.php file
Forum: Fixing WordPress
In reply to: Upgrading can't get into back-endwhat is your site url? are you checked http://yoursite/wp-admin
Forum: Fixing WordPress
In reply to: Moving WordPress to new domain on same hosterYou can use this plugin Velvet Blues Update URLs for “Search & replace”
Forum: Fixing WordPress
In reply to: Remove footer text in the wordpress blogIs your theme displaying the copyright message by a HOOK? Otherwise you can’t overwrite the message.