accuwebhosting
Forum Replies Created
-
Hi,
You will need to put the condition in Javascript (as I pasted above) for the screen size.
if(screen.availWidth <= 640 ) //select your desired screen size instead of 640 { your code goes here. }Thanks,
Forum: Fixing WordPress
In reply to: Password reset not workingHi,
Your Web Hosting provider must have provided you cPanel control panel.
-
First you will have to login at cPanel.
At cPanel, Under Databases section, you would see phpMyAdmin.
Click on it and you would redirected to phpMyadmin interface.
Once you are at phpMyadmin, you will need to follow the below mentioned steps to reset the wp-admin password:http://codex.wordpress.org/Resetting_Your_Password#Through_phpMyAdmin
Hope that helps.
Thanks,Forum: Fixing WordPress
In reply to: Password reset not workingHi,
Try to reset the password manually through phpMyadmin. Here is a guide you can follow:
http://codex.wordpress.org/Resetting_Your_Password#Through_phpMyAdmin
Thanks,
Forum: Fixing WordPress
In reply to: Contact form & display data in a pageHi,
I think WordPress plugin Contact Form DB should work for you. It can capture form submissions from following form plugins:
JetPack Contact Form plugin
Contact Form 7 (CF7) plugin
Gravity Forms plugin
WR ContactForm plugin
Quform plugin (BETA)https://wordpress.org/plugins/contact-form-7-to-database-extension/
Hope that helps.
Thanks,Forum: Fixing WordPress
In reply to: Post URL 404 errorHi,
Have you tried following?
Fix your permalinks settings. At WordPress Dashboard, Go to Settings » Permalinks, and simply click on Save Changes button. This will update your permalinks settings and flush rewrite rules.
Thanks,
Forum: Fixing WordPress
In reply to: Site url vs home urlHi,
Is there any easier way than follwing these steps?
You can refer following easier guide to move WordPress website from subdirectory to root folder.
http://premium.wpmudev.org/blog/how-to-safely-move-wordpress/
does the step of backup the database mean just the files?
backup the database means the backup of the database (not web files) you can take either through cPanel or PHPMyadmin.
Thanks,
Forum: Fixing WordPress
In reply to: My Slider disappearedHi,
This is due to either conflict between plugins or theme-plugin. The best way to get your website slider back is to uninstall/remove the plugin you just installed and try installing it again. You can re-install the theme Sydney pro but make sure you take necessary backups. Reinstalling fresh theme will restore the custom changes you have made.
Thanks,
Hi,
I could see in following javascript, that Responsive Menu is being appended by default regardless of the screen size (it should be added only when your website is browsed through portable screen sizes).
Here is the code in question:
Create the dropdown base jQuery('<select />').appendTo('.primary-menu .nav-holder'); // Create default option 'Menu' jQuery('<option />', { 'selected': 'selected', 'value' : '', 'text' : '<span class="glyphicon glyphicon-align-justify"></span>' }).appendTo('.primary-menu .nav-holder select'); // Populate dropdown with menu items jQuery('.primary-menu .nav-holder a').each(function() { var el = jQuery(this); if(jQuery(el).parents('.sub-menu .sub-menu').length >= 1) { jQuery('<option />', { 'value' : el.attr('href'), 'text' : '-- ' + el.text() }).appendTo('.primary-menu .nav-holder select'); } else if(jQuery(el).parents('.sub-menu').length >= 1) { jQuery('<option />', { 'value' : el.attr('href'), 'text' : '- ' + el.text() }).appendTo('.primary-menu .nav-holder select'); } else { jQuery('<option />', { 'value' : el.attr('href'), 'text' : el.text() }).appendTo('.primary-menu .nav-holder select'); } }); jQuery('.primary-menu .nav-holder select').ddslick({ width: '100%', onSelected: function(selectedData){ if(selectedData.selectedData.value != '') { window.location = selectedData.selectedData.value; } } });Hope that helps.
Thanks,Forum: Fixing WordPress
In reply to: Login requires new password every timeHi,
Have you tried checking through Troubleshooting WordPress 4.2 – Master List?
1) Try manually resetting your plugins (no Dashboard access required) using following URL;
If that resolves the issue, reactivate each one individually until you find the cause.
2) If that does not resolve the issue, switch to the Twenty Fifteen to rule out any theme-specific problems. access your server via FTP navigate to /wp-content/themes/ and rename the directory of your currently active theme.
This will force the default theme to activate and hopefully rule-out a theme-specific issue (theme functions can interfere like plugins).
Please refer following guide for more information:
http://www.wpbeginner.com/wp-tutorials/how-to-fix-the-wordpress-white-screen-of-death/
Resetting the plugins folder by FTP or PhpMyAdmin. Sometimes, an apparently inactive plugin can still cause problems.
Thanks,
Forum: Fixing WordPress
In reply to: Unable to update old postsGreat to hear that your issue has been fixed.
Forum: Fixing WordPress
In reply to: Unable to login after 4.2.3 updateHi
Have you tried checking through Troubleshooting WordPress 4.2 – Master List.
Deactivating all plugins to see if this resolves the problem. If this works, re-activate the plugins one by one until you find the problematic plugin(s).
Switching to the Twenty Ten Fifteen to rule out any theme-specific problems.
Resetting the plugins folder by FTP or PhpMyAdmin. Sometimes, an apparently inactive plugin can still cause problems.
Thanks,
Forum: Fixing WordPress
In reply to: Unable to update old postsHi,
Try Following suggestions:
Deactivating all plugins (yes, all) to see if this resolves the problem. If this works, re-activate the plugins one by one until you find the problematic plugin(s).
If you can’t get into your admin dashboard, try resetting the plugins folder by FTP or PhpMyAdmin (read “How to deactivate all plugins when you can’t log in to wp-admin” if you need help).
Switching to the Twenty Fifteen theme to rule out any theme-specific problems. If you can’t log in to change themes, you can remove the theme folders via FTP so the only one is twentyfifteen. That will force your site to use it.
If all suggestion fails, ask your web hosting provider for server logs as 404 error is coming from web server.
Thanks,
Forum: Fixing WordPress
In reply to: Downloads Blank Contact File When Visiting My SiteYou are welcome !!!
Forum: Fixing WordPress
In reply to: Website Gone – Fatal ErrorYou are welcome !!!
Forum: Fixing WordPress
In reply to: Login requires new password every timeHi,
Try to access the dashboard in another browser you have. If both browsers have same result try clearing the browser cache and cookies. Additionally, try resetting the password from phpmyadmin.
http://www.wpbeginner.com/beginners-guide/how-to-reset-a-wordpress-password-from-phpmyadmin/
Thanks,