simtcr
Forum Replies Created
-
I am all set. I missed the part you wrote “copy all blocks” and “past all blocks”
Once I followed that, I got recent post list on all posts.
Thank you for responding @levi1998
Unfortunately the screenshot link is throwing 504 error.
I went to “Appearance -> Editor -> Templates” and edit “Single with Right sidebar” copied the right block as in below screenshot,
https://raspiwrt.freeddns.org/tempimages/copy-from-single-right-menu.jpg
Then went to edit “Single Posts” But here I am not able to figure where to past the block I copied, because the existing block out there is consuming the whole page. Without reducing that block size and move little bit left I cannot paste the block to right side. See below screenshot.
https://raspiwrt.freeddns.org/tempimages/paste-to-single-post.jpg
Issue solved.
I just had to toggle “Particles Effect” under wp-admin->Plower Kit->Modules menu.
- This reply was modified 3 weeks, 6 days ago by simtcr.
Thank you @bcworkz . You were right. My issue was the relay nginx server side. I sorted out the issue by adding below to my nginx site config
location / {
proxy_pass https://<SITE DNS>:443;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
# Allow connections for static files to go directly to the backend server
proxy_redirect off;
}
location ~ ^/wp-content/ {
proxy_pass https://<SITE DNS>:443;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}
location ~ ^/wp-includes/ {
proxy_pass https://<SITE DNS>:443;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}Forum: Localhost Installs
In reply to: worrdpress site not able to access from external network.Thank you. That was it.
I logged in to wp-admin console and Settings->General changed WordPress Address (URL) and Site Address (URL) to my actual ddns domain name and it worked.I have another question, if you don’t mind.
I want https:///%5Bb%5D%5Bu%5Dwp-admin%5B/u%5D%5B/b%5D wp-admin to be opened only from LAN and not via internet. Is that possible be done? I tried creating .htaccess file inside wp-admin folder with LAN ip range mentioned, but its not working.