usrbowe
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Can't upload imagesNow I discovered that image upload works stable for files around 30kB, and sometimes for images larger (tested on 150kB image)…
Forum: Fixing WordPress
In reply to: Can't upload images@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
In reply to: Can't upload imagesWell, 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
In reply to: [Facebook Comments by Fat Panda] Change languageHi,
I need the same thing. I found only this solution by myself.
- Go to editor page (…/wp-admin/plugin-editor.php)
- Select Fat Panda Comments
- a) Open file:fatpanda-facebook-comments/plugin.php
- b) Find this string:
'og:locale' => 'en_US' - c) And change “en_US” to Norweigan language code
- * 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
In reply to: [Youtube Channel Gallery] feedorder=desc DOES NOT WORKYes, 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
In reply to: [Logo Slider] how to show one logoYou 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-sliderForum: Plugins
In reply to: [Logo Slider] how to show one logoHi,
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
In reply to: Jetpack gallerySolved. It’s integrated in my theme.
Forum: Fixing WordPress
In reply to: ERROR: Cookies are blocked…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
In reply to: ERROR: Cookies are blocked…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
In reply to: ERROR: Cookies are blocked…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
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
In reply to: ERROR: Cookies are blocked…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
In reply to: ERROR: Cookies are blocked…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, orlogin_enqueue_scriptshooks. Please see Debugging in WordPress for more information. (This message was added in version 3.3.) in /wp-includes/functions.php on line 3049Coudl this cause my problem with cookies? And I don’t speak with my host, but I will later today.