Website Rob
Forum Replies Created
-
Forum: Everything else WordPress
In reply to: Image links gone …What is your site URL? Without seeing what you see nobody can suggest anything.
Are you looking for a recommendation for one? Did you find one you liked when you searched the Plugin section with the phrase “structured data”, as that is what you want.
Forum: Fixing WordPress
In reply to: Homepage randomly redirected to WP login pageSuggest you talk to your Hoster about the problem. There are some Server settings (HTTP Headers) that could be causing problems due to some of the code used in pages.
There should never be links on public pages that include the ‘wp-jason’ dir. (and you have 8 of them) and there is a link to your Admin section that, for some unknown reason, seems to have been put there by your Theme. It needs to be removed as it shouldn’t be there and is probably the cause of the redirection to the login page.
Forum: Developing with WordPress
In reply to: How Do I Center Just One Page?You’re welcome for the help and No, I do not have COVID. It was later that I realized my comment came out wrong. I was referring to the new normal COVID has impressed upon us. The concept of “stay away from others” is a bit too harsh for my tastes. We were meant to live as a Social Society, physically intermingling with each other, not as Islands floating by. 🙂
Forum: Developing with WordPress
In reply to: How Do I Center Just One Page?Make the Earth spin.
Concepts are always simple because they don’t involve any details. What you ask is not as complicated as my extreme example above although it does require detailed changes. Strange that the Theme creator couldn’t help you, since they made the Theme.
.page-id-1253 .enterprise-pro-landing .wrap, .page-id-1253 .wrap {
max-width: ???px
}The above code should allow you to determine a desired width for that page only… but only for certain screen sizes. If it doesn’t you could make it a more stronger rule using:
.page-id-1253.enterprise-pro-landing .wrap, .page-id-1253.wrap {
max-width: ???px
}Note that too large a width and the images will become blurry. Too small a screen size and the page not look right. I do suggest you try 90% instead of a ‘px’ size as that might be the better universal screen width. Then again, the above may not work at all and slightly different coding is required. I’m just guessing here based on what I saw in the page source.
I mention all this because many people think coding is easy when it is not.
Let’s make the Earth move in space while it is spinning.
I know, I got off on a tangent and all this may sound a little weird. Perhaps because that’s the way I’m feeling today. COVID will do that I guess. Have a good one. 🙂
Before updating make sure to take a backup. You can use a Plugin like ‘BackWPup’ by Inpsyde GmbH. Video tutorials for how to use it are available on the plugin page.
Forum: Developing with WordPress
In reply to: Image Not Loading After Upgrading to HttpsThe forum added the / at the end of your Domain name. Make sure it is not used in your WordPress settings.
Forum: Developing with WordPress
In reply to: Image Not Loading After Upgrading to HttpsAdmin -> Settings: General
Make sure “both” WordPress Address (URL) and Site Address (URL) are using:
https://www.goldenchinanewport.com/Forum: Fixing WordPress
In reply to: Restore my websiteTalk to your Hoster as they can guide you with this better than anyone else.
Forum: Fixing WordPress
In reply to: Link preview not working anymoreSent an eMail to you using the Contact form on your website.
Forum: Installing WordPress
In reply to: Can’t be the only person who has noticed this error?@dbee78 – I totally agree with you. When I come across that situation I just move right along. I test too many Themes to be worried about bait n’ switch Theme Creators.
If you like the Astra Theme you may also like these–which have passed the Theme Check.
Almighty https://wordpress.org/themes/almighty/
Azuma https://wordpress.org/themes/azuma/
Neve https://wordpress.org/themes/neve/I use Theme Check Plugin, by the WordPress Review Team. Helps to test Themes for a lot of requirements Themes need to work with WordPress.
Forum: Networking WordPress
In reply to: Revert Subdirectories to Single-SitesAlthough I have no experience with MultiSites, I hope to help clarify for others what your logic is.
example.com – main site built
example.com/au – Not built
example.com/uk – Not builtTrying to set them as MultiSites and if I understand the term correctly, the above would mean you want 3 sites within the same Hosting account with each using their own database. Why not use Sub-domains for the two other websites?
Of course, if you want them all to use the same database then you would use ‘au’ and ‘uk’ as Categories with some specific Plugins or customized coding as needed.
Forum: Everything else WordPress
In reply to: The pages do not load unless refreshing the pagesGuess I put the spaces in the wrong place. Have to remember that.
Forum: Everything else WordPress
In reply to: The pages do not load unless refreshing the pagesI see some security and caching issues. Also, only the Home will load.
Of caching there is none. That is why you have to refresh every time. Do you have access to: public_html/.htaccess
For security you need to remove or fix some scripts. This one is not working correctly and is making my Browser think your site is unsafe.
https://mc.us15.list-manage . com/ <- not a valid JavaScript MIME type
(I put in the spaces to prevent it turning into a link)This is bad:
Cookie “tk_tc” has been rejected for invalid domain.Forum: Everything else WordPress
In reply to: Using .htaccess to mass redirect URLs?Probably faster/easier to use a Plugin like Redirection https://wordpress.org/plugins/redirection/ – I’ve never tried but with 2+ million downloads, it must work pretty good.
Although you could wait and hope someone answers with code that works, your chances are probably slim to none. Just a thought.