Grant W
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: WP Youtube video blog wont play on Iphone 6sDave,
I’ve looked into this a bit more, I believe I may have found a solution.
Go to Divi -> Theme Options -> General Settings. Then scroll down to the bottom and add the following code to the Custom CSS box.
@media only screen and (max-width: 950px) { element.style { padding-top: 0; } }
Please let me know how it goes.
Grant.
Forum: Fixing WordPress
In reply to: Host a second site?Lindsay,
As Paul said, you will need to check if your web hosting provider allows you to host multiple websites to start with. For example, the Basic BlueHost plan only allows 1 website to be hosted. Meaning if you wanted to host two sites (site1.com and site2.com) you would need to upgrade your plan.
Grant.
Forum: Fixing WordPress
In reply to: Problem since updating wordpress!gamedais,
You say you have disabled all your plugins together and the problem still persists? The WordPress theme you are using, Flavor, was last updated in June 2015, and is only listed as compatible up to WordPress 4.3. Whether this is the cause I do not know.
If you still have support on the theme, it may be worth contacting the developer.
Grant
Forum: Fixing WordPress
In reply to: Permalink under Settings menu? Where is it?pascuatj,
If I am correct, it sounds like you want to change the slugs of a particular page rather than permalinks. This guide explains how to change your page slug.
But basically, go to All Pages, hover over the page you want and click Quick Edit. There it should, in your case have presentations-3 under slug. Change it to presentations and hit Save.
If it doesn’t work, it may mean you still have the old presentation pages in your Bin. Under where it says Pages at the top, you’ll see an option for Bin, click that, go there and delete the old pages. Then re-try the steps above.
Grant.
Forum: Fixing WordPress
In reply to: edit.php slow loadinggek2omg,
Where and what platform is your website being hosted? You do have a lot of content on your website, which is likely the cause of the slow speeds.
Forum: Localhost Installs
In reply to: How to move a MAMP Localhost wordpress site to a GoDaddy server?Jake,
WordPress provides some really useful documentation for doing just that here.
You will need to back up your local website using a plugin such as UpdraftPlus.
Grant.
Forum: Fixing WordPress
In reply to: WordPress 4.4.2 Errorslongnx,
This line goes in your wp-config.php file. It is located in your root directory of your WordPress installation. You can access this file using FTP or the cPanel File Manager.
define ('WP_MEMORY_LIMIT', '64M');
Grant.
Forum: Fixing WordPress
In reply to: Visitors cannot post comments.John,
Have you checked your settings in Settings -> Discussion (…/wp-admin/options-discussion.php). There you can manage who can comment on your posts and pages.
Alternatively, when you’re editing a page, click screen options in the top right hand of the window. Then click/tick Discussion, then scroll to the bottom of the page and you should see a check box that says Allow Comments, tick it and save.
Grant.
Forum: Fixing WordPress
In reply to: WP login issues after editing in generalkevline,
The simplest way to do that would be to add the following to your .htaccess file.
RewriteEngine On RewriteBase / RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC] RewriteRule ^(.*)$ https://%1/$1 [R=301,L]
If you haven’t got a .htaccess file, or the only one is your .htaccess_old. You must go to Settings > Permalinks and click save. Then using FTP, add the following to your .htaccess file.
Grant.
Forum: Fixing WordPress
In reply to: WP login issues after editing in generalkevline,
The simplest way to do that would be to add the following to your .htaccess file.
RewriteEngine On RewriteBase / RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC] RewriteRule ^(.*)$ https://%1/$1 [R=301,L]
If you haven’t got a .htaccess file, or the only one is your .htaccess_old. You must go to Settings > Permalinks and click save. Then using FTP, add the 4 lines above to your .htaccess file.
Grant.
Forum: Fixing WordPress
In reply to: Front PageEmma,
That is possible, try setting two to public.
Grant.
Forum: Fixing WordPress
In reply to: Front PageEmma,
Whenever I try navigating to one of your pages, I get a 404 error saying the page is not found.
Grant.
Forum: Fixing WordPress
In reply to: WP login issues after editing in generalkevline,
Okay, remove the new lines you’ve just added then, as they clearly do not work. When connecting via FTP, you should see a file called .htaccess Try renaming that file to
.htacces_old
Then try accessing your WP-Admin. If it did work, go to Settings > Permalinks and click the save button.
Grant.
Forum: Fixing WordPress
In reply to: Front PageJust to confirm Emma, you do have pages created on the website don’t you? Such as a Home page, and contact page. You’ll find these in at Pages > All Pages.
Grant.
Forum: Fixing WordPress
In reply to: Front PageEmma,
Hmm. Try going to Appearance > Customise. Go through those options to see if there is an option for a static front page.
Grant.