Title: wpbees's Replies | WordPress.org

---

# wpbees

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

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

 Search replies:

## Forum Replies Created

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

1 [2](https://wordpress.org/support/users/wpbees/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/wpbees/replies/page/3/?output_format=md)…
[9](https://wordpress.org/support/users/wpbees/replies/page/9/?output_format=md)
[10](https://wordpress.org/support/users/wpbees/replies/page/10/?output_format=md)
[11](https://wordpress.org/support/users/wpbees/replies/page/11/?output_format=md)
[→](https://wordpress.org/support/users/wpbees/replies/page/2/?output_format=md)

 *   Forum: [Localhost Installs](https://wordpress.org/support/forum/localhost-installs/)
   
   In reply to: [website trasfered on synology nas](https://wordpress.org/support/topic/website-trasfered-on-synology-nas/)
 *  [wpbees](https://wordpress.org/support/users/wpbees/)
 * (@wpbees)
 * [7 years, 10 months ago](https://wordpress.org/support/topic/website-trasfered-on-synology-nas/#post-10454556)
 * Hello,
 * have you tried to deactivate and activate again the theme you’re using?.
    if 
   yes try to update your phpAdmin
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Remove words “Search for:” from my theme](https://wordpress.org/support/topic/remove-words-search-for-from-my-theme/)
 *  [wpbees](https://wordpress.org/support/users/wpbees/)
 * (@wpbees)
 * [7 years, 10 months ago](https://wordpress.org/support/topic/remove-words-search-for-from-my-theme/#post-10454298)
 * Hello,
 * If the search field is implemented as a widget, this can be done via the administration
   interface. Just navigate to Appearance > Widgets and drag the search widget from
   the widget area to the “Available Widgets” pane.
 * If the search field is hard-coded into the theme, it might be easier to edit 
   the CSS rather than the HTML and PHP. Here’s how:
 *  Use Firebug or a similar tool to locate the DIV element containing the search
   code.
    In the theme’s CSS file (probably style.css), add display: none to that
   DIV. That’s it!
 * This is a minimally invasive approach. If you ever want to re-enable the search
   bar, just remove the display: none statement from your CSS.
 * i hope this helps.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [non-root multisite access problem](https://wordpress.org/support/topic/non-root-multisite-access-problem/)
 *  [wpbees](https://wordpress.org/support/users/wpbees/)
 * (@wpbees)
 * [7 years, 10 months ago](https://wordpress.org/support/topic/non-root-multisite-access-problem/#post-10454271)
 * Hello,
 * Try changing this two lines in .htaccess:
 * RewriteRule ^(wp-(content|admin|includes).*) $1 [L]
    RewriteRule ^(.*\.php)$ 
   $1 [L]
 * With this:
 * RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-(content|admin|includes).*) $2 [L]
    RewriteRule
   ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L]
 * I hope this helps.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Allow users to reate their own blog](https://wordpress.org/support/topic/allow-users-to-reate-their-own-blog/)
 *  [wpbees](https://wordpress.org/support/users/wpbees/)
 * (@wpbees)
 * [7 years, 10 months ago](https://wordpress.org/support/topic/allow-users-to-reate-their-own-blog/#post-10454144)
 * Hello,
 * Try using this plugin Peter’s Collaboration Email This method is useful only 
   if you are using the account-based system for accepting guest posts. And, you
   need all guest bloggers to be registered as a contributor in your blog. Once 
   you have installed the plugin in your blog, instead of the publish button, each
   contributor can see the ‘Submit for Review’.
 * i hope this helps.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [How to create a new post with pre-filled content?](https://wordpress.org/support/topic/how-to-create-a-new-post-with-pre-filled-content/)
 *  [wpbees](https://wordpress.org/support/users/wpbees/)
 * (@wpbees)
 * [7 years, 10 months ago](https://wordpress.org/support/topic/how-to-create-a-new-post-with-pre-filled-content/#post-10454089)
 * Hello,
 * If I understand properly. Look on these filter hook- wp_insert_post_data. In 
   functions.php:
 *  if (isAdmin()){
 *  add_filter(‘wp_insert_post_data’,’custom_insert_post’, ’99’, 2);
 *  function custom_insert_post($data, $postarr){ <–
    $data[‘post_title’] = ‘default_post_title’;
   $data[‘post_status’] = ‘future’; //…. etc
 *  }
 *  }
 * Also look on that hook – save_post.
 *  add_action(‘save_post’, ‘custom_insert_meta_values’);
 *  function custom_insert_meta_values($post_ID){
    $default_meta_key = ‘….’; $default_meta_value
   = ‘….’;
 *  add_post_meta($post_ID, $default_meta_key, $default_meta_value);
 * i hope this helps.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Requests_Cookie_Jar not found](https://wordpress.org/support/topic/requests_cookie_jar-not-found-2/)
 *  [wpbees](https://wordpress.org/support/users/wpbees/)
 * (@wpbees)
 * [7 years, 10 months ago](https://wordpress.org/support/topic/requests_cookie_jar-not-found-2/#post-10454016)
 * Hello,
 * I Think you need to do some changes in your (class_requests.php)
    have you try
   checking your (Jar.php) on your phpAdmin?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Warning being thrown from kses.php](https://wordpress.org/support/topic/warning-being-thrown-from-kses-php/)
 *  [wpbees](https://wordpress.org/support/users/wpbees/)
 * (@wpbees)
 * [7 years, 10 months ago](https://wordpress.org/support/topic/warning-being-thrown-from-kses-php/#post-10453944)
 * Hello,
 * think the warning is from the plugin your using. And (wp_kses_attr_check) act
   like a security it only allows HTML elements.
 * i hope this helps.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Blog page doesnt display correctly, posts clicked redirect to homepage](https://wordpress.org/support/topic/blog-page-doesnt-display-correctly-posts-clicked-redirect-to-homepage/)
 *  [wpbees](https://wordpress.org/support/users/wpbees/)
 * (@wpbees)
 * [7 years, 10 months ago](https://wordpress.org/support/topic/blog-page-doesnt-display-correctly-posts-clicked-redirect-to-homepage/#post-10447800)
 * hello
 * Have you tried checking the links on your wordpress?
    i think that it is still
   on Home page URL.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Center Logo for Mobile: OceanWP Theme](https://wordpress.org/support/topic/center-logo-for-mobile-oceanwp-theme/)
 *  [wpbees](https://wordpress.org/support/users/wpbees/)
 * (@wpbees)
 * [7 years, 10 months ago](https://wordpress.org/support/topic/center-logo-for-mobile-oceanwp-theme/#post-10443946)
 * Hello,
 * Upon checking your website in my phone. I can see that there is no problem, the
   
   logo is fine.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Footer widget not working](https://wordpress.org/support/topic/footer-widget-not-working/)
 *  [wpbees](https://wordpress.org/support/users/wpbees/)
 * (@wpbees)
 * [7 years, 10 months ago](https://wordpress.org/support/topic/footer-widget-not-working/#post-10443774)
 * Hello,
 * Can you provide the URL of your website?
    so that I can analyze it and find a
   better solution for your problem.
 * Thank you.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [WordPress Update Failed due to inconsistent file permissions.:](https://wordpress.org/support/topic/wordpress-update-failed-due-to-inconsistent-file-permissions/)
 *  [wpbees](https://wordpress.org/support/users/wpbees/)
 * (@wpbees)
 * [7 years, 10 months ago](https://wordpress.org/support/topic/wordpress-update-failed-due-to-inconsistent-file-permissions/#post-10443743)
 * Hi,
 * Did you do the update manually or it is in auto-update?
    if it’s in an auto update
   I recommend that do the update manually to avoid errors in updating your WordPress.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Delete Cover Photo option on User Profiles](https://wordpress.org/support/topic/delete-cover-photo-option-on-user-profiles/)
 *  [wpbees](https://wordpress.org/support/users/wpbees/)
 * (@wpbees)
 * [7 years, 10 months ago](https://wordpress.org/support/topic/delete-cover-photo-option-on-user-profiles/#post-10443696)
 * Hi,
 * Have you tried looking at the member directories? you can hide your cover photo
   in there.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Cant login (cpanel)](https://wordpress.org/support/topic/cant-login-cpanel-2/)
 *  [wpbees](https://wordpress.org/support/users/wpbees/)
 * (@wpbees)
 * [7 years, 10 months ago](https://wordpress.org/support/topic/cant-login-cpanel-2/#post-10443625)
 * Hello,
 * Have you tried to login to your cPanel account using a different browser? Or 
   I would suggest clearing your browser’s cache/cookies and attempt to access your
   hosting account again.
 * i hope this helps.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Detect Mobile Browser](https://wordpress.org/support/topic/detect-mobile-browser/)
 *  [wpbees](https://wordpress.org/support/users/wpbees/)
 * (@wpbees)
 * [7 years, 10 months ago](https://wordpress.org/support/topic/detect-mobile-browser/#post-10443470)
 * Hello,
 * The hamburger menu is always there it is just hidden at certain screen sizes.
   
   you can get the hamburger menu effect on desktop browsers as well, just shrink
   the width of your browser window down and eventually you will see the hamburger.
 * i hope this helps,
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Issue with WordPress mobile view – Top menu bar breaks for logged in users](https://wordpress.org/support/topic/issue-with-wordpress-mobile-view-top-menu-bar-breaks-for-logged-in-users/)
 *  [wpbees](https://wordpress.org/support/users/wpbees/)
 * (@wpbees)
 * [7 years, 10 months ago](https://wordpress.org/support/topic/issue-with-wordpress-mobile-view-top-menu-bar-breaks-for-logged-in-users/#post-10440480)
 * Hello,
 * thank you for providing your theme.
    can you send me a screen shot of your web
   site in mobile view so that i can see what actually the problem is and analyze
   it for a better solution.

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

1 [2](https://wordpress.org/support/users/wpbees/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/wpbees/replies/page/3/?output_format=md)…
[9](https://wordpress.org/support/users/wpbees/replies/page/9/?output_format=md)
[10](https://wordpress.org/support/users/wpbees/replies/page/10/?output_format=md)
[11](https://wordpress.org/support/users/wpbees/replies/page/11/?output_format=md)
[→](https://wordpress.org/support/users/wpbees/replies/page/2/?output_format=md)