helennatasha
Forum Replies Created
-
Forum: Networking WordPress
In reply to: Wrong multisite is showing when using www.Can you remove ‘www’ from the multisite so that the multisite and the main site match?
Forum: Installing WordPress
In reply to: I want a simple page onto my websiteOr are you saying that you don’t want the header or footer on the front page?
Forum: Fixing WordPress
In reply to: Authors profile page link no longer worksSo if you had a redirection plugin installed, you deactivated it? Any redirection in your .htaccess file? Have you added any rewrite rules to your functions.php?
Forum: Networking WordPress
In reply to: Wrong multisite is showing when using www.It could be a hosting issue? With my old host I used to have to set up ‘example.com’ and ‘www.example.com’ separately. With my current host I set up ‘example.com’, and the www version is set up automatically.
- This reply was modified 5 months, 1 week ago by helennatasha.
- This reply was modified 5 months, 1 week ago by helennatasha.
Forum: Requests and Feedback
In reply to: Reviews on the plugin pageSo the reviewer would enter the version number of the plugin they are using; it wouldn’t be added automatically.
Forum: Developing with WordPress
In reply to: How put a br in my post titleRight-click on your post title and select ‘Inspect.’
In the browser Inspector pane that appears, click the dropdown arrow to the left of the heading tag.
Select the<br>
tag.
In the right-hand pane of the Inspector, as @bcworkz suggests, are you seeing CSS that hides the<br>
tag, such as?:
br {display: none;}
If so, that’s you’re problem. You need to remove or overwrite the ‘display: none;’Forum: Fixing WordPress
In reply to: Last update problemDisplaying the published date rather than the modified date is default WordPress behaviour. Are you writing your own theme? If so, you could do something like:
echo get_the_modified_date();
instead of:
echo get_the_date();Forum: Developing with WordPress
In reply to: Any trivial changes to a page break my custom htmlWhat are all those ‘<br />’ tags? Did you add them? What happens if you remove them?
Forum: Fixing WordPress
In reply to: Backend looks broken after updateAsk your host for instructions on how to connect to the server.
Can you update your theme and any plugins?
If that doesn’t work, what happens if you deactivate all your plugins?
Forum: Fixing WordPress
In reply to: Viewing options for pages: Date order as default?Posts don’t have hierarchies, but pages do. I don’t know whether there is a way to display pages as ‘most recent first’ by default. However, it makes sense to show pages alphabetically when you have child pages (in which case the parent pages act as folders in the path), e.g.
page
page
–child level 1
–child level 1
—-child level 2
——child level 3
–child level 1
pageThis is much clearer than showing pages in date order.
Forum: Requests and Feedback
In reply to: Most important featuresNot everyone needs every feature. Plugins exist to meet your specific needs. So yes, just add plugins for the features you want (unless you know how to code them yourself).
Forum: Installing WordPress
In reply to: wordpress for php 5.3.0This should answer your PHP version query:
https://displaywp.com/wordpress-minimum-php-version/Old versions of WordPress here:
https://en-gb.www.ads-software.com/download/releases/Forum: Fixing WordPress
In reply to: WordPress superadminYes, all websites are under threat of being hacked. You can’t stop hackers from trying. But you can set up defences. If you are using managed hosting, they should have some security in place. But you can add to this by using various WordPress plugins. You mention ‘Country Blocker’ already. Another popular one is WordFence:
https://www.ads-software.com/plugins/wordfence/Forum: Fixing WordPress
In reply to: Backend looks broken after updateIn case it’s the ‘Coming Soon Page’ plugin that caused the problem, delete that from your plugins folder via SFTP.
Otherwise, I have successfully downgraded my version of WordPress using the WP Downgrade plugin, but you would need access to your Dashboard to do this.
Via the command line you can use WP-CLI (not a simple solution!):
https://www.sitepoint.com/wp-cli/
Then e.g.
wp-cli core update –version=4.9 –forceHow to disable automatic updates:
https://www.wpbeginner.com/wp-tutorials/how-to-disable-automatic-updates-in-wordpress/