Title: Sidati's Replies | WordPress.org

---

# Sidati

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

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

 Search replies:

## Forum Replies Created

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

1 [2](https://wordpress.org/support/users/sidati/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/sidati/replies/page/3/?output_format=md)…
[6](https://wordpress.org/support/users/sidati/replies/page/6/?output_format=md)
[7](https://wordpress.org/support/users/sidati/replies/page/7/?output_format=md)
[8](https://wordpress.org/support/users/sidati/replies/page/8/?output_format=md)
[→](https://wordpress.org/support/users/sidati/replies/page/2/?output_format=md)

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Hide page from non logged in users](https://wordpress.org/support/topic/hide-page-from-non-logged-in-users/)
 *  [Sidati](https://wordpress.org/support/users/sidati/)
 * (@sidati)
 * [8 years, 10 months ago](https://wordpress.org/support/topic/hide-page-from-non-logged-in-users/#post-9305852)
 * Please [checkout this link](https://developer.wordpress.org/themes/template-files-section/page-template-files/#top)
   to understand the concept of “Page template” ;),
 * **TMALSS**; you need to create new php file in your current theme and put that
   code in it and save it, then from the admin dashboard go to edit the page you
   want to protect and choose the template you just created.
 * ![](https://i0.wp.com/developer.wordpress.org/files/2014/10/basics-page-templates-
   03.png?ssl=1)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Dashboard error 404 not found](https://wordpress.org/support/topic/dashboard-error-404-not-found/)
 *  [Sidati](https://wordpress.org/support/users/sidati/)
 * (@sidati)
 * [8 years, 10 months ago](https://wordpress.org/support/topic/dashboard-error-404-not-found/#post-9300837)
 * Try this
    ⌊null⌉
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Hide page from non logged in users](https://wordpress.org/support/topic/hide-page-from-non-logged-in-users/)
 *  [Sidati](https://wordpress.org/support/users/sidati/)
 * (@sidati)
 * [8 years, 10 months ago](https://wordpress.org/support/topic/hide-page-from-non-logged-in-users/#post-9300825)
 * Hi [@nikkiapt](https://wordpress.org/support/users/nikkiapt/),
    For multiple 
   pages use, i suggest to create a [template page](https://developer.wordpress.org/themes/template-files-section/page-template-files/)
   like so :
 *     ```
       <?php 
       /**
        * Template Name: Protected page
        */
   
       get_header();
       ?>
   
       <?php if is_user_logged_in() : ?>
          <article>
             <h1><?php the_title() ?></h1>
             <div><?php the_content() ?></div>
          </article>
       <?php else : ?>
          <p><?php _e('Sorry! Only logged-in users are allowed to see the content');
        ?></p>
       <?php endif ?>
   
       <?php get_footer(); ?>
       ```
   
 * Then every page you want to make it protected, just assign this template to it,
   [check out this link](https://developer.wordpress.org/themes/template-files-section/page-template-files/#top)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [How to delete cache from other peoples browsers](https://wordpress.org/support/topic/how-to-delete-cache-from-other-peoples-browsers/)
 *  [Sidati](https://wordpress.org/support/users/sidati/)
 * (@sidati)
 * [9 years ago](https://wordpress.org/support/topic/how-to-delete-cache-from-other-peoples-browsers/#post-9104644)
 * Try to add this code at the top of your `index.php` file, this will force the
   browser to get the new version since the expiration date was already passed `
   16 May 1990` My birthday :p
 *     ```
       <?php
       header("Cache-Control: no-cache, must-revalidate");
       header("Expires: Wed, 16 May 1990 00:00:00 GMT");
       ?>
       ```
   
 * **But this make the browser clear the cache every time, so add for 24 hours to
   be sure all your users are “cache cleared” then remove it 😉**
    -  This reply was modified 9 years ago by [Sidati](https://wordpress.org/support/users/sidati/).
 *   Forum: [Developing with WordPress](https://wordpress.org/support/forum/wp-advanced/)
   
   In reply to: [Remove ‘my site’ with dashbord in admin bar](https://wordpress.org/support/topic/remove-my-site-with-dashbord-in-admin-bar/)
 *  [Sidati](https://wordpress.org/support/users/sidati/)
 * (@sidati)
 * [9 years ago](https://wordpress.org/support/topic/remove-my-site-with-dashbord-in-admin-bar/#post-9104635)
 * OK, there are 2 options.
 * **Option #1**
 * if you want to disable the whole admin bar for all users then just add this line
   to your `functions.php` file :
 * `add_filter('show_admin_bar', '__return_false');`
 * **Options #2**
    if you want just hide the site name ad keep the admin bar, then
   hide it with CSS is simplest way :P, add this code to your `style.css` file
 * `#wp-admin-bar-site-name { display:none !important;}`
 * Hope this help 😉
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Instagram Images Aren’t Displayed Properly](https://wordpress.org/support/topic/instagram-images-arent-displayed-properly/)
 *  [Sidati](https://wordpress.org/support/users/sidati/)
 * (@sidati)
 * [9 years, 7 months ago](https://wordpress.org/support/topic/instagram-images-arent-displayed-properly/#post-8255231)
 * does all pictures are like this ??
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Making the backend look like part of your main site?](https://wordpress.org/support/topic/making-the-backend-look-like-part-of-your-main-site/)
 *  [Sidati](https://wordpress.org/support/users/sidati/)
 * (@sidati)
 * [9 years, 7 months ago](https://wordpress.org/support/topic/making-the-backend-look-like-part-of-your-main-site/#post-8241888)
 * You need to do A LOT OF WORK to reach that and its not good idea, if you want
   to create a custom back-end just create new one on the front-end, it will be 
   mush easier than re-design the old one and add just what you need.
 * I got tired of just thinking about it 😛
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Instagram Images Aren’t Displayed Properly](https://wordpress.org/support/topic/instagram-images-arent-displayed-properly/)
 *  [Sidati](https://wordpress.org/support/users/sidati/)
 * (@sidati)
 * [9 years, 7 months ago](https://wordpress.org/support/topic/instagram-images-arent-displayed-properly/#post-8241874)
 * Its your theme :(,
    You can fix it with copy/paste this code on your style.css
 *     ```
       .video-container {
       	height: auto !important;
       	display: block !important;
       	padding-top: 0 !important;
       }
       .video-container iframe {
       	height: auto !important;
       	position: static !important;
       }
       ```
   
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Weird Media Library image preview problem](https://wordpress.org/support/topic/weird-media-library-image-preview-problem/)
 *  [Sidati](https://wordpress.org/support/users/sidati/)
 * (@sidati)
 * [9 years, 7 months ago](https://wordpress.org/support/topic/weird-media-library-image-preview-problem/#post-8241821)
 * Did you check if your new hosting is supporting GD library `php-gd`, its a php
   extension 😛
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Switch to WordPress.com](https://wordpress.org/support/topic/switch-to-wordpress-com/)
 *  [Sidati](https://wordpress.org/support/users/sidati/)
 * (@sidati)
 * [9 years, 7 months ago](https://wordpress.org/support/topic/switch-to-wordpress-com/#post-8241815)
 * Yes its possible =>
    [https://en.support.wordpress.com/moving-from-self-hosted-wordpress-to-wordpress-com/](https://en.support.wordpress.com/moving-from-self-hosted-wordpress-to-wordpress-com/)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [I want only one category on my front page but it will not display](https://wordpress.org/support/topic/i-want-only-one-category-on-my-front-page-but-it-will-not-display/)
 *  [Sidati](https://wordpress.org/support/users/sidati/)
 * (@sidati)
 * [9 years, 8 months ago](https://wordpress.org/support/topic/i-want-only-one-category-on-my-front-page-but-it-will-not-display/#post-8190628)
 * Glad you figured it out
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Please help with Multiple linked thumbnails](https://wordpress.org/support/topic/please-help-with-multiple-linked-thumbnails/)
 *  [Sidati](https://wordpress.org/support/users/sidati/)
 * (@sidati)
 * [9 years, 8 months ago](https://wordpress.org/support/topic/please-help-with-multiple-linked-thumbnails/#post-8189722)
 * You’re welcome
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [One wp to a new wp same server migration](https://wordpress.org/support/topic/one-wp-to-a-new-wp-same-server-migration/)
 *  [Sidati](https://wordpress.org/support/users/sidati/)
 * (@sidati)
 * [9 years, 8 months ago](https://wordpress.org/support/topic/one-wp-to-a-new-wp-same-server-migration/#post-8181671)
 * You’re welcome [@mcdrewblue](https://wordpress.org/support/users/mcdrewblue/)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [I want only one category on my front page but it will not display](https://wordpress.org/support/topic/i-want-only-one-category-on-my-front-page-but-it-will-not-display/)
 *  [Sidati](https://wordpress.org/support/users/sidati/)
 * (@sidati)
 * [9 years, 8 months ago](https://wordpress.org/support/topic/i-want-only-one-category-on-my-front-page-but-it-will-not-display/#post-8178990)
 * Mmmmh!! can you please activate the default theme and tell us if the issue still
   exist 😀
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [The requested URL /us-preppers.com/register/ was not found on this server](https://wordpress.org/support/topic/the-requested-url-us-preppers-comregister-was-not-found-on-this-server/)
 *  [Sidati](https://wordpress.org/support/users/sidati/)
 * (@sidati)
 * [9 years, 8 months ago](https://wordpress.org/support/topic/the-requested-url-us-preppers-comregister-was-not-found-on-this-server/#post-8178961)
 * Try to deactivate all plugins and delete your `.htaccess` then go to :
    **Dashboard**-
   > **settings** -> **Permalinks** -> click **Save Changes**, and see if its working.
 * if so try to activate plugins one by one and every time you activated a plugin
   see if pages still working so you can locate the “bad plugin.

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

1 [2](https://wordpress.org/support/users/sidati/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/sidati/replies/page/3/?output_format=md)…
[6](https://wordpress.org/support/users/sidati/replies/page/6/?output_format=md)
[7](https://wordpress.org/support/users/sidati/replies/page/7/?output_format=md)
[8](https://wordpress.org/support/users/sidati/replies/page/8/?output_format=md)
[→](https://wordpress.org/support/users/sidati/replies/page/2/?output_format=md)