Liew Cheon-Fong
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Can’t update pages and plugins not respondinglooks like error in database. pls contact hosting provider for support.
Forum: Fixing WordPress
In reply to: Failure updating pages and uploading mediasAre they work if you switch to the default theme and deactivate all plugins?
Forum: Fixing WordPress
In reply to: User image in admin sidebar menuIt is not a WordPress default feature. You would need to add a custom code using hook to add the user profile picture in the admin sidebar https://codex.wordpress.org/Administration_Menus
Forum: Networking WordPress
In reply to: Recommended DNS setup for Multisite in the cloudI am wondering, should I just have the main domain pointed to the IP, and the rest just have CNAME records?
CNAME is an alias. now you are using A record for direct pointing to the IP address. Don’t need to change that.
Not sure what did you mean by “external DNS name”. Did you mean a nameserver? The main domain (almost) always an A record pointing to server IP address.
I experienced similar before and solved it by updating all plugins and themes to the latest version.
Forum: Fixing WordPress
In reply to: No images display from wwware the image url start with “https://”?
non-https image will be blocked (not secure) in https page
Forum: Fixing WordPress
In reply to: Some Headings Will Not Centerapparently, you are using a page builder. the best solution is updating them via page builder.
a dirty solution is to add a custom CSS:
.row { display:grid !important; }
refer: https://wordpress.org/support/article/appearance-customize-screen/#additional-css
- This reply was modified 6 years, 8 months ago by Liew Cheon-Fong.
Forum: Fixing WordPress
In reply to: Labels Functioning as Tagsdo you mean that you want to link the label (tag) to a certain page? An easier way I would try is using a redirection plugin to redirect each label to the page you want.
Forum: Fixing WordPress
In reply to: Video image for gallerydo you mean you want to add an image to link to the video page?
here is the html code example:
<a href="https://www.mvbuyeragents.com/blog/2019/08/16/2379/"><img src="yourimage.jpg" /></a>Forum: Fixing WordPress
In reply to: update user metaI think the code is fine.
Is your website slow after adding the code? Does the website performance improve if you remove the code?
Maybe the slow website issue is not related to the code you add.
Did you setup WordPress using Bitnami?
Bitnami HTTPS Configuration Tool is for website setup using Bitnami (thus the default location of /opt/bitnami).
Since your WordPress is installed under /www/html then I suspect your website is not setup using Bitnami, and Bitnami HTTPS Configuration Tool does not work for your website.
If you installed WordPress using Vultr one-click WordPress app, then you can refer to this https://www.vultr.com/docs/install-lets-encrypt-ssl-on-one-click-wordpress-app
- This reply was modified 6 years, 8 months ago by Liew Cheon-Fong.
Forum: Fixing WordPress
In reply to: Redirection of Page After URL Swap with New Pagethis is what I will do…
- Clone /about-old (again)
- Delete (forever) /about-out (to clean up whatever URL redirection of the page)
- Update /about
- Update permalink (twice)
hope these help
- This reply was modified 6 years, 8 months ago by Liew Cheon-Fong.
Forum: Fixing WordPress
In reply to: adsense issuethis issue is not related to WordPress.
you can search & replace WordPress database
I use the “better search & replace” plugin for thissearch for: target="_blank" replace with: rel="noopener noreferrer"Remember to backup first!
Forum: Fixing WordPress
In reply to: How do I make my widget photo unpinnable?can you share your site url?