epicdevspace
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Back Button in PagesThe process is outlined in detail here with great examples
There is no way around modifying your files. Backup your site before attempting any changes.
All the best!
Forum: Fixing WordPress
In reply to: Back Button in PagesHi there
solution: https://codex.wordpress.org/Next_and_Previous_Links
You can add the previous link (name it ‘go back’ if you wish) and follow the detailed instructions to integrate the solutions for pages and posts.
All the best!
Forum: Fixing WordPress
In reply to: How to change the upload directory of uploaded files?Hi
Try something like
global $current_user; get_currentuserinfo(); $upload_dir = wp_upload_dir(); $user_dirname = $upload_dir['basedir'].'/'.$current_user->user_login; if ( ! file_exists( $user_dirname ) ) { wp_mkdir_p( $user_dirname ); }Forum: Fixing WordPress
In reply to: Can't Save Updated Text in Footer WidgetsHi
You can try to deactivate your plugins then return to the widgets and see if your save button is clickable.
Forum: Fixing WordPress
In reply to: Problems don't know where to startHi
The problem is due to a few options either not being defined / theme errors (coding)
The theme authors need to step in and help with this as it’s difficult to bug fix when I have no personal experience with this particular theme / access to it.
Alternatively you can hire a freelancer to assist you.
Forum: Fixing WordPress
In reply to: user pageHi
This is the WordPress forum 😀
Forum: Fixing WordPress
In reply to: Problems don't know where to startHi Mike
Where do you usually set the logo size ? Is there a theme options panel ?
Are those options set?
This is messy code.
Forum: Localhost Installs
In reply to: helpHi
Did you install WordPress?
Did you install your Theme via the WordPress dashboard?
Please provide a detailed explanation of what you’ve tried and what you want to achieve.
Forum: Fixing WordPress
In reply to: White screen when viewing websiteHi
Check via ftp and ensure that all your files are where they should be.
Then download and open up .htaccess with notepad.
Please post the content of the .htaccess (provided it doesn’t contain sensitive info)
Forum: Fixing WordPress
In reply to: My webmaster left irresponsibly, I need the access How?Hi
Do you have hosting control panel details?
Forum: Fixing WordPress
In reply to: Moving WordPress from subdomain to main domainHi
You should have an export settings option on themes that work this way.
You question contained no reference to the theme you are using / request for advice when dealing with themes such as these.
Be precise the next time you need advice to avoid this ‘trap’ in the future 🙂
Forum: Fixing WordPress
In reply to: Moving WordPress from subdomain to main domainHi
I use notepad++ to find and replace
I usually handle it by searching for all instances of mydomain.com/wordpress
and I replace with
mydomain.comI leave out the http://www. in my find/replace as some links may/may not have identical structure so find / replace the parts you know will be present in every instance to make the process even more hassle free.
Then I save as a new file and proceed to deleting the old SQL and importing the new SQL via the PHPMyAdmin tool
It’s up to you to choose a method you’re comfortable with. For me, this is by far the easiest way.
All the best!
Forum: Fixing WordPress
In reply to: wp default email from wordpress@domain.comHi
Give WP Change Default Email a try.
Forum: Fixing WordPress
In reply to: Moving WordPress from subdomain to main domainHi
First step : edit your site url and wp url in your wp-admin->Settings
Second step : Export your SQL (backup first) , then find and replace urls so that the /wordpress/ is removed from any possible links / images etc. Delete your old SQL and Import your newly edited SQL.
Final step:
I usually use Filezilla and backup the public_html directory before attempting the move.You can then delete the main site contents and navigate to WordPress directory , select all and drag & drop those files into the public_html folder. So no downloads/uploads necessary.
You can also do this with the CPanel file manager etc. using the ‘move’ option after selecting all files in the /wordpress/ folder.
Hope this helps , all the best!
Forum: Fixing WordPress
In reply to: Username and email address not recognisedHi
If you have CPanel you can log in and select PHPMyAdmin
Select your database and navigate to the wp_users table , change the email address of the problematic account in question.
Then go to your wp-admin and reset your password.
Alternatively contact your host to see if they can be of assistance and perform these steps for you.