301 redirects in Headway based WordPress Site

First of all, Headway is not the issue, if Headway itself doesn’t deal with any kind of 301 redirect. And answer to the question is: After having the folder in action if you change the “WordPress Address (URL)” and “Site Address (URL)” in your /wp-admin/options-general.php (Admin » Settings » General) to the new address like: … Read more

After retrive password, redirect to index page

Use the lostpassword_redirect filter: add_filter( ‘lostpassword_redirect’, ‘wpse127373_lostpassword_redirect’ ); function wpse127373_lostpassword_redirect() { return home_url(); // use the home URL for your site } Add this code to your active theme’s functions.php file or — if you want it to persists across theme changes — add it to a custom plugin. References Trac: lostpassword_redirect filter Codex: home_url()

Upload Directory question

try this way: function wp128084_upload_dir( $pathdata ) { // change path here return $pathdata; } add_filter(‘upload_dir’, ‘wp128084_upload_dir’); add this where you want to change upload directory then again remove filter to change to default wordpress directory remove_filter(‘upload_dir’, ‘wp128084_upload_dir’);

Temporary Infinite Redirect Loop

But when I try to go to www.example.com and when the redirect error happened, the URL changes to www.example.com/wp-admin/install.php Without server logs and proper debugging information this is going to be hard to answer, but sentence quoted above makes me think that your database has failed causing the site to switch to “install” mode, or … Read more

Change the domain url?

This can be done through the settings section, are you just wanting to change how a user sees the page? if so then its very simple Settings >> General, in there you can change how things appear, to do something more drastic, you need to login to your DB and change URLS from the options … Read more