Title: usrbowe's Replies | WordPress.org

---

# usrbowe

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Can't upload images](https://wordpress.org/support/topic/cant-upload-images-99/)
 *  Thread Starter [usrbowe](https://wordpress.org/support/users/usrbowe/)
 * (@usrbowe)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/cant-upload-images-99/#post-5463294)
 * Now I discovered that image upload works stable for files around 30kB, and sometimes
   for images larger (tested on 150kB image)…
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Can't upload images](https://wordpress.org/support/topic/cant-upload-images-99/)
 *  Thread Starter [usrbowe](https://wordpress.org/support/users/usrbowe/)
 * (@usrbowe)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/cant-upload-images-99/#post-5463288)
 * [@frumph](https://wordpress.org/support/users/frumph/) Okey, now there is again
   HTTP error… So what could I do? I dont have access to php.ini (it’s shared hosting).
   Thanks
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Can't upload images](https://wordpress.org/support/topic/cant-upload-images-99/)
 *  Thread Starter [usrbowe](https://wordpress.org/support/users/usrbowe/)
 * (@usrbowe)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/cant-upload-images-99/#post-5463276)
 * Well, but I don’t have HTTP error anymore, now I have this error: “An error occurred
   in the upload. Please try again later.”.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Facebook Comments by Fat Panda] Change language](https://wordpress.org/support/topic/change-language-62/)
 *  [usrbowe](https://wordpress.org/support/users/usrbowe/)
 * (@usrbowe)
 * [11 years, 8 months ago](https://wordpress.org/support/topic/change-language-62/#post-5148951)
 * Hi,
 * I need the same thing. I found only this solution by myself.
    1. Go to editor page (…/wp-admin/plugin-editor.php)
    2. Select Fat Panda Comments
    3. a) Open file:**fatpanda-facebook-comments/plugin.php**
    4. b) Find this string: `'og:locale' => 'en_US'`
    5. c) And change “en_US” to Norweigan language code
    6. * If it’s not still working. Edit this file:
        **fatpanda-facebook-comments/comments.
       php**, and here change this original code: `js.src = "//connect.facebook.net/
       <?php echo get_locale() ?>/all.js#xfbml=1";` to this: `js.src = "//connect.facebook.
       net/cs_CZ/all.js#xfbml=1";`
 * Also check if you don’t use some other Facebook widget/box on your site which
   could use English. In my case my theme Jarida with Facebook widget used English
   language for Facebook fan box, which overwrite my changes done in Fat Panda. 
   So I had to change these widget locale.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Youtube Channel Gallery] feedorder=desc DOES NOT WORK](https://wordpress.org/support/topic/feedorderdesc-does-not-work/)
 *  [usrbowe](https://wordpress.org/support/users/usrbowe/)
 * (@usrbowe)
 * [11 years, 9 months ago](https://wordpress.org/support/topic/feedorderdesc-does-not-work/#post-5103605)
 * Yes, I have same problem. I need descending order of my videos, but shortcode
   feedoder=”desc” is not working.
 * Thanks for any help to this issue.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Logo Slider] how to show one logo](https://wordpress.org/support/topic/how-to-show-one-logo/)
 *  [usrbowe](https://wordpress.org/support/users/usrbowe/)
 * (@usrbowe)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/how-to-show-one-logo/#post-4729631)
 * You have your lucky day! 😀
 * Here is edited file (logo-slider.php), just upload to this folder:
    **/wp-content/
   plugins/logo-slider/**(rewrite existing) **DOWNLOAD LINK:**: [http://www.filedropper.com/logo-slider](http://www.filedropper.com/logo-slider)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Logo Slider] how to show one logo](https://wordpress.org/support/topic/how-to-show-one-logo/)
 *  [usrbowe](https://wordpress.org/support/users/usrbowe/)
 * (@usrbowe)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/how-to-show-one-logo/#post-4729628)
 * Hi,
 * I have similar problem. I want to show only 2logos. I have a solution, whcih 
   works for 1, 2 or what number of logos you want.
 * **1) Edit file: logo-slider/logo-slider.php (via FTP or in WordPress via Edit
   link)**
    In this file find this code (it is in middle):
 *     ```
       <select name="wp_logo_slider_settings[num_img]">
               	<option value="3" <?php echo ($options['num_img'] == '3' ? 'selected="selected"' : '') ?>><?php _e('3','lgs') ?></option>
               	<option value="4" <?php echo ($options['num_img'] == '4' ? 'selected="selected"' : '') ?>><?php _e('4','lgs') ?></option>
               	<option value="5" <?php echo ($options['num_img'] == '5' ? 'selected="selected"' : '') ?>><?php _e('5','lgs') ?></option>
               	<option value="6" <?php echo ($options['num_img'] == '6' ? 'selected="selected"' : '') ?>><?php _e('6','lgs') ?></option>
               	<option value="7" <?php echo ($options['num_img'] == '7' ? 'selected="selected"' : '') ?>><?php _e('7','lgs') ?></option>
               	<option value="8" <?php echo ($options['num_img'] == '8' ? 'selected="selected"' : '') ?>><?php _e('8','lgs') ?></option>
               </select>
       ```
   
 * And as you can see, there are listed all number options. So if you want add 1
   logo option just insert this:
    `<option value="1" <?php echo ($options['num_img']
   == '1' ? 'selected="selected"' : '') ?>><?php _e('1','lgs') ?></option>` under:`
   <select name="wp_logo_slider_settings[num_img]">`
 * 2) Go to plugin settings and change number of logos to 1! 🙂
 * The final code will look like this:
 *     ```
       <select name="wp_logo_slider_settings[num_img]">
               	<option value="1" <?php echo ($options['num_img'] == '1' ? 'selected="selected"' : '') ?>><?php _e('1','lgs') ?></option>
               	<option value="3" <?php echo ($options['num_img'] == '3' ? 'selected="selected"' : '') ?>><?php _e('3','lgs') ?></option>
               	<option value="4" <?php echo ($options['num_img'] == '4' ? 'selected="selected"' : '') ?>><?php _e('4','lgs') ?></option>
               	<option value="5" <?php echo ($options['num_img'] == '5' ? 'selected="selected"' : '') ?>><?php _e('5','lgs') ?></option>
               	<option value="6" <?php echo ($options['num_img'] == '6' ? 'selected="selected"' : '') ?>><?php _e('6','lgs') ?></option>
               	<option value="7" <?php echo ($options['num_img'] == '7' ? 'selected="selected"' : '') ?>><?php _e('7','lgs') ?></option>
               	<option value="8" <?php echo ($options['num_img'] == '8' ? 'selected="selected"' : '') ?>><?php _e('8','lgs') ?></option>
               </select>
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [Jetpack gallery](https://wordpress.org/support/topic/jetpack-gallery-2/)
 *  Thread Starter [usrbowe](https://wordpress.org/support/users/usrbowe/)
 * (@usrbowe)
 * [12 years, 2 months ago](https://wordpress.org/support/topic/jetpack-gallery-2/#post-4618229)
 * Solved. It’s integrated in my theme.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [ERROR: Cookies are blocked…](https://wordpress.org/support/topic/error-cookies-are-blocked/)
 *  Thread Starter [usrbowe](https://wordpress.org/support/users/usrbowe/)
 * (@usrbowe)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/error-cookies-are-blocked/#post-4519083)
 * Ok, that is correct it is not in wordpress repository. But I was looking more
   for help, how to debug theme generaly to find a bug which cause, that I can’t
   login after update. It has to be, some new feature added in latest wordpress,
   some new cookies for login or I don’t know… It’s not much related to theme.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [ERROR: Cookies are blocked…](https://wordpress.org/support/topic/error-cookies-are-blocked/)
 *  Thread Starter [usrbowe](https://wordpress.org/support/users/usrbowe/)
 * (@usrbowe)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/error-cookies-are-blocked/#post-4519081)
 * That is not true. Did you look at link? The webpage is all about WordPress themes.
   And you are telling me that this theme is NON-WP? It work’s fine with wordpress,
   there is a thousand of wordpress functions in it and works fine. It’s integrated
   in WordPress administration panel and a lot more thinks. So this is WORDPRESS
   COMPATIBLE theme. There is just some issue with newer wordpress version, because
   before update everything works great.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [ERROR: Cookies are blocked…](https://wordpress.org/support/topic/error-cookies-are-blocked/)
 *  Thread Starter [usrbowe](https://wordpress.org/support/users/usrbowe/)
 * (@usrbowe)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/error-cookies-are-blocked/#post-4519063)
 * Ok, I am reopening this topic. I found that my theme is blocking somehow my login.
   So it cuase that problem with cookies. Is there some procedure which I can follow
   to determinate where is error in my theme code? Thanks
 * Theme is: [SchemerType Mag](http://wordpressthemesbase.com/view/884.html)
 * Now I have to delete my theme via FTP, login to my wordpress site and then reupload
   theme via FTP. And do this again after my login cookies expires 🙁
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [ERROR: Cookies are blocked…](https://wordpress.org/support/topic/error-cookies-are-blocked/)
 *  Thread Starter [usrbowe](https://wordpress.org/support/users/usrbowe/)
 * (@usrbowe)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/error-cookies-are-blocked/#post-4519038)
 * I found the problem. It was in my theme, where I changed some php code in functions.
   php and other files. I will have to check my typping errors in code. Thank you
   for help.
 * For others, follow these step to solve this issue:
    1)DEACTIVATE PLUGINS (rename
   folder via FTP) 2)DEACTIVATE CURRENT THEME (delete theme folder via FTP)
 * This should help 🙂
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [ERROR: Cookies are blocked…](https://wordpress.org/support/topic/error-cookies-are-blocked/)
 *  Thread Starter [usrbowe](https://wordpress.org/support/users/usrbowe/)
 * (@usrbowe)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/error-cookies-are-blocked/#post-4519034)
 * Hi,
 * I found only this in debug.log
 * > PHP Notice: wp_register_script was called **incorrectly**. Scripts and styles
   > should not be registered or enqueued until the `wp_enqueue_scripts`, `admin_enqueue_scripts`,
   > or `login_enqueue_scripts` hooks. Please see [Debugging in WordPress](http://codex.wordpress.org/Debugging_in_WordPress)
   > for more information. (This message was added in version 3.3.) in /wp-includes/
   > functions.php on line 3049
 * Coudl this cause my problem with cookies? And I don’t speak with my host, but
   I will later today.

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