Title: Siddharth Thevaril's Replies | WordPress.org

---

# Siddharth Thevaril

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

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

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 44 total)

1 [2](https://wordpress.org/support/users/nomnom99/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/nomnom99/replies/page/3/?output_format=md)
[→](https://wordpress.org/support/users/nomnom99/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Restricted Site Access] Advice on updating. Active or deactivated?](https://wordpress.org/support/topic/advice-on-updating-active-or-deactivated/)
 *  Plugin Contributor [Siddharth Thevaril](https://wordpress.org/support/users/nomnom99/)
 * (@nomnom99)
 * [2 years, 5 months ago](https://wordpress.org/support/topic/advice-on-updating-active-or-deactivated/#post-17391268)
 * Sorry if I wasn’t clear before. What I meant is that you don’t have to manually
   put the site into maintenance mode.
 * Answering your initial question:
 * > Would you advise going into maintenance mode before updating RSA? In other 
   > words, should I update with RSA activated or deactivated?
 * We don’t advise you putting your site into maintenance mode because while updating
   a plugin, WordPress puts the site into maintenance mode anyway.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Restricted Site Access] Advice on updating. Active or deactivated?](https://wordpress.org/support/topic/advice-on-updating-active-or-deactivated/)
 *  Plugin Contributor [Siddharth Thevaril](https://wordpress.org/support/users/nomnom99/)
 * (@nomnom99)
 * [2 years, 5 months ago](https://wordpress.org/support/topic/advice-on-updating-active-or-deactivated/#post-17367786)
 * Just saw that the link doesn’t work, this is the link to the code section –
 * [https://github.com/WordPress/WordPress/blob/master/wp-admin/includes/class-plugin-upgrader.php#L324-L326](https://github.com/WordPress/WordPress/blob/master/wp-admin/includes/class-plugin-upgrader.php#L324-L326)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Restricted Site Access] Advice on updating. Active or deactivated?](https://wordpress.org/support/topic/advice-on-updating-active-or-deactivated/)
 *  Plugin Contributor [Siddharth Thevaril](https://wordpress.org/support/users/nomnom99/)
 * (@nomnom99)
 * [2 years, 5 months ago](https://wordpress.org/support/topic/advice-on-updating-active-or-deactivated/#post-17367011)
 * Hey [@mike80222](https://wordpress.org/support/users/mike80222/), apologies for
   the delay.
 * I investigated how WordPress Core handles it and found that if a plugin is activate
   and is being updated, WordPress automatically puts the site in maintenance mode.
   I verified this with few tests as well.
 * If you’re comfortable with code, you can find the section where WordPress core
   handles it [here](http://if ( $maintenance ) {                         $this->maintenance_mode( true );                 }).
 * Let us know if you have any further questions. Cheers!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Simple Page Ordering] Limiting ordering to administrators only](https://wordpress.org/support/topic/limiting-ordering-to-administrators-only/)
 *  Plugin Support [Siddharth Thevaril](https://wordpress.org/support/users/nomnom99/)
 * (@nomnom99)
 * [2 years, 6 months ago](https://wordpress.org/support/topic/limiting-ordering-to-administrators-only/#post-17311841)
 * Hey Happy New Year!
 * You can use the `simple_page_ordering_is_sortable` filter this way:
 *     ```wp-block-code
       /**
        * Limits the ability to sort pages to users with the administrator role.
        *
        * @param bool $sortable Whether or not the pages are sortable.
        */
       function spo_limit_sorting_by_role( $sortable ) {
           return current_user_can( 'administrator' );
       }
       add_filter( 'simple_page_ordering_is_sortable', 'spo_limit_sorting_by_role' );
       ```
   
    -  This reply was modified 2 years, 6 months ago by [Siddharth Thevaril](https://wordpress.org/support/users/nomnom99/).
      Reason: improved suggestion
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Restricted Site Access] Advice on updating. Active or deactivated?](https://wordpress.org/support/topic/advice-on-updating-active-or-deactivated/)
 *  Plugin Contributor [Siddharth Thevaril](https://wordpress.org/support/users/nomnom99/)
 * (@nomnom99)
 * [2 years, 7 months ago](https://wordpress.org/support/topic/advice-on-updating-active-or-deactivated/#post-17243042)
 * Hey [@mike80222](https://wordpress.org/support/users/mike80222/), that’s a very
   good question. We’re running some tests to confirm this and will come up with
   an answer with the next release. For now, we would suggest you to update the 
   plugin after putting the site into maintenance mode.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Simple Page Ordering] Unnecessary .git Folder Causes Issues During Plugin Installation](https://wordpress.org/support/topic/unnecessary-git-folder-causes-issues-during-plugin-installation/)
 *  Plugin Support [Siddharth Thevaril](https://wordpress.org/support/users/nomnom99/)
 * (@nomnom99)
 * [2 years, 8 months ago](https://wordpress.org/support/topic/unnecessary-git-folder-causes-issues-during-plugin-installation/#post-17147509)
 * Hi [@tudors1987](https://wordpress.org/support/users/tudors1987/), this will 
   be handled in the next release.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Restricted Site Access] Redirect after login](https://wordpress.org/support/topic/redirect-after-login-84/)
 *  Plugin Contributor [Siddharth Thevaril](https://wordpress.org/support/users/nomnom99/)
 * (@nomnom99)
 * [2 years, 9 months ago](https://wordpress.org/support/topic/redirect-after-login-84/#post-17128892)
 * Hello [@pinguins](https://wordpress.org/support/users/pinguins/)
 * That is not possible with Restricted Site Access. However, there are other plugins
   such as [After Login Redirect](https://wordpress.org/plugins/wp-after-login-redirect-advanced/)
   that may fit your requirements.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Restricted Site Access] How to block access to media](https://wordpress.org/support/topic/how-to-block-access-to-media/)
 *  Plugin Contributor [Siddharth Thevaril](https://wordpress.org/support/users/nomnom99/)
 * (@nomnom99)
 * [2 years, 9 months ago](https://wordpress.org/support/topic/how-to-block-access-to-media/#post-17128845)
 * Hi [@trealbe](https://wordpress.org/support/users/trealbe/), Restricted Site 
   Access does not block access to your media, so direct links to files in your 
   media and uploads folder (for instance) are not blocked.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Restricted Site Access] Adding several IP addressses](https://wordpress.org/support/topic/adding-several-ip-addressses/)
 *  Plugin Contributor [Siddharth Thevaril](https://wordpress.org/support/users/nomnom99/)
 * (@nomnom99)
 * [3 years ago](https://wordpress.org/support/topic/adding-several-ip-addressses/#post-16900748)
 * Hi [@horsthansen](https://wordpress.org/support/users/horsthansen/) ,
 * Restricted Site Access supports CIDR notation, so adding `87.190.1.160/27` will
   indeed cover all the IP address in the list you provided.
 * Let us know if you run into any issues. Thanks!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Convert to Blocks] Parse error (critical) with update 1.2.0](https://wordpress.org/support/topic/parse-error-critical-with-update-1-2-0/)
 *  Plugin Support [Siddharth Thevaril](https://wordpress.org/support/users/nomnom99/)
 * (@nomnom99)
 * [3 years ago](https://wordpress.org/support/topic/parse-error-critical-with-update-1-2-0/#post-16854486)
 * Hi [@1benk1](https://wordpress.org/support/users/1benk1/) , thanks for raising
   the issue. We have raised a fix and it will be included in the next release. 
   You can [track it here](https://github.com/10up/convert-to-blocks/pull/123).
 * In the meanwhile, can you share the details of your environment?
    -  This reply was modified 3 years ago by [Siddharth Thevaril](https://wordpress.org/support/users/nomnom99/).
      Reason: updated the message
    -  This reply was modified 3 years ago by [Siddharth Thevaril](https://wordpress.org/support/users/nomnom99/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Autopost for X (formerly Autoshare for Twitter)] Seems not to work](https://wordpress.org/support/topic/seems-not-to-work-10/)
 *  Plugin Support [Siddharth Thevaril](https://wordpress.org/support/users/nomnom99/)
 * (@nomnom99)
 * [3 years, 1 month ago](https://wordpress.org/support/topic/seems-not-to-work-10/#post-16778337)
 * Hi [@ibiza69](https://wordpress.org/support/users/ibiza69/)
 * Once you have updated the plugin to v2.0.0, you will have to migrate to Twitter
   API v2 by following [these steps here](https://developer.twitter.com/en/docs/twitter-api/migrate/ready-to-migrate).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Autopost for X (formerly Autoshare for Twitter)] Seems not to work](https://wordpress.org/support/topic/seems-not-to-work-10/)
 *  Plugin Support [Siddharth Thevaril](https://wordpress.org/support/users/nomnom99/)
 * (@nomnom99)
 * [3 years, 1 month ago](https://wordpress.org/support/topic/seems-not-to-work-10/#post-16778274)
 * Hi [@ibiza69](https://wordpress.org/support/users/ibiza69/)
 * The handle is the username for a Twitter account, it starts with `@`. For example,
   [Bill Gate’s Twitter handle](https://twitter.com/BillGates) is **[@billgates](https://wordpress.org/support/users/billgates/)**
 * Try reconnecting with the handle and let us know if you’re still facing problems
   tweeting.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Restricted Site Access] White listed IP address being restricted](https://wordpress.org/support/topic/white-listed-ip-address-being-restricted/)
 *  Plugin Contributor [Siddharth Thevaril](https://wordpress.org/support/users/nomnom99/)
 * (@nomnom99)
 * [3 years, 1 month ago](https://wordpress.org/support/topic/white-listed-ip-address-being-restricted/#post-16756233)
 * Hello [@pocketnurse](https://wordpress.org/support/users/pocketnurse/)
 * Can you tell us which version of the plugin you’re using?
 * If it is the latest one, can you try rolling back to the previous versions so
   that it is easier for us to narrow down the problem?
 * You can download the [earlier versions here](https://wordpress.org/plugins/restricted-site-access/advanced/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Restricted Site Access] Redirection no longer working](https://wordpress.org/support/topic/redirection-no-longer-working-2/)
 *  Plugin Contributor [Siddharth Thevaril](https://wordpress.org/support/users/nomnom99/)
 * (@nomnom99)
 * [3 years, 2 months ago](https://wordpress.org/support/topic/redirection-no-longer-working-2/#post-16692289)
 * Hi [@mikegibbons4](https://wordpress.org/support/users/mikegibbons4/) thanks 
   for letting us know.
 * During our manual and automated tests for 7.4.0, we couldn’t reproduce the issue
   faced on 7.3.2.
 * You can download the older versions [here](https://wordpress.org/plugins/restricted-site-access/advanced/)
   under the “PREVIOUS VERSIONS” section.
 * In the meantime, can you give us more information about your setup as well as
   the details of your site? You can get the site info under **Tools > Site Health
   > Info > Copy site info to clipboard**.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Restricted Site Access] Redirection no longer working](https://wordpress.org/support/topic/redirection-no-longer-working-2/)
 *  Plugin Contributor [Siddharth Thevaril](https://wordpress.org/support/users/nomnom99/)
 * (@nomnom99)
 * [3 years, 3 months ago](https://wordpress.org/support/topic/redirection-no-longer-working-2/#post-16664942)
 * Hi all, this issue is fixed in the latest release 7.4.0. Please let us know if
   the issue is resolved for you.
 * Thanks in advance!

Viewing 15 replies - 1 through 15 (of 44 total)

1 [2](https://wordpress.org/support/users/nomnom99/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/nomnom99/replies/page/3/?output_format=md)
[→](https://wordpress.org/support/users/nomnom99/replies/page/2/?output_format=md)