Title: simtcr's Replies | WordPress.org

---

# simtcr

  [  ](https://wordpress.org/support/users/simtcr/)

 *   [Profile](https://wordpress.org/support/users/simtcr/)
 *   [Topics Started](https://wordpress.org/support/users/simtcr/topics/)
 *   [Replies Created](https://wordpress.org/support/users/simtcr/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/simtcr/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/simtcr/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/simtcr/engagements/)
 *   [Favorites](https://wordpress.org/support/users/simtcr/favorites/)

 Search replies:

## Forum Replies Created

Viewing 6 replies - 1 through 6 (of 6 total)

 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Akita Blog] How to add “Latest Posts” list at right side middle of every page?](https://wordpress.org/support/topic/how-to-add-latest-posts-list-at-right-side-middle-of-every-page/)
 *  Thread Starter [simtcr](https://wordpress.org/support/users/simtcr/)
 * (@simtcr)
 * [1 year, 5 months ago](https://wordpress.org/support/topic/how-to-add-latest-posts-list-at-right-side-middle-of-every-page/#post-18303151)
 * 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.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Akita Blog] How to add “Latest Posts” list at right side middle of every page?](https://wordpress.org/support/topic/how-to-add-latest-posts-list-at-right-side-middle-of-every-page/)
 *  Thread Starter [simtcr](https://wordpress.org/support/users/simtcr/)
 * (@simtcr)
 * [1 year, 5 months ago](https://wordpress.org/support/topic/how-to-add-latest-posts-list-at-right-side-middle-of-every-page/#post-18303085)
 * Thank you for responding [@levi1998](https://wordpress.org/support/users/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://wordpress.org/47855a8e-da7b-49c7-a18e-d64a38754a86)
 * [https://raspiwrt.freeddns.org/tempimages/copy-from-single-right-menu.jpg](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://wordpress.org/38c39837-2dbc-49de-b584-0fe12735464d)
 * [https://raspiwrt.freeddns.org/tempimages/paste-to-single-post.jpg](https://raspiwrt.freeddns.org/tempimages/paste-to-single-post.jpg)
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Akita Blog] wordpress akita-blog theme – how to remove background animation?](https://wordpress.org/support/topic/wordpress-akita-blog-theme-how-to-remove-background-animation-2/)
 *  Thread Starter [simtcr](https://wordpress.org/support/users/simtcr/)
 * (@simtcr)
 * [1 year, 5 months ago](https://wordpress.org/support/topic/wordpress-akita-blog-theme-how-to-remove-background-animation-2/#post-18300413)
 * Issue solved.
 * I just had to toggle “Particles Effect” under wp-admin->Plower Kit->Modules menu.
    -  This reply was modified 1 year, 5 months ago by [simtcr](https://wordpress.org/support/users/simtcr/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Plover Kit – Blocks, Patterns, Responsive Layout and Gutenberg Editor Enhancements] wordpress akita-blog theme – how to remove background animation?](https://wordpress.org/support/topic/wordpress-akita-blog-theme-how-to-remove-background-animation/)
 *  Thread Starter [simtcr](https://wordpress.org/support/users/simtcr/)
 * (@simtcr)
 * [1 year, 5 months ago](https://wordpress.org/support/topic/wordpress-akita-blog-theme-how-to-remove-background-animation/#post-18300401)
 * Thank you [@levi1998](https://wordpress.org/support/users/levi1998/) [@ruansbueno](https://wordpress.org/support/users/ruansbueno/)
 * Opened new post at [https://wordpress.org/support/topic/wordpress-akita-blog-theme-how-to-remove-background-animation-2/](https://wordpress.org/support/topic/wordpress-akita-blog-theme-how-to-remove-background-animation-2/)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [When accessing wordpress site from nginx proxy, some files from wp-content folde](https://wordpress.org/support/topic/when-accessing-wordpress-site-from-nginx-proxy-some-files-from-wp-content-folde/)
 *  Thread Starter [simtcr](https://wordpress.org/support/users/simtcr/)
 * (@simtcr)
 * [1 year, 5 months ago](https://wordpress.org/support/topic/when-accessing-wordpress-site-from-nginx-proxy-some-files-from-wp-content-folde/#post-18300397)
 * Thank you [@bcworkz](https://wordpress.org/support/users/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
 *     ```wp-block-code
       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](https://wordpress.org/support/forum/localhost-installs/)
   
   In reply to: [worrdpress site not able to access from external network.](https://wordpress.org/support/topic/worrdpress-site-not-able-to-access-from-external-network/)
 *  Thread Starter [simtcr](https://wordpress.org/support/users/simtcr/)
 * (@simtcr)
 * [1 year, 6 months ago](https://wordpress.org/support/topic/worrdpress-site-not-able-to-access-from-external-network/#post-18242294)
 * 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](https://wordpress.org/support/users/simtcr/replies/?output_format=md)
   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.

Viewing 6 replies - 1 through 6 (of 6 total)