Andrew Zhezhera
Forum Replies Created
-
Forum: Plugins
In reply to: [qTranslate] qTranslate compatibility with WordPress 4.0.1Thanks for suggestions, it seems to be the only free multilanguage plugin that is compatible with actual version of WordPress.
I want to add Ukrainian language to it, but there are no corresponding .mo and .po files in language directory.
So I’d like to know how to make them ??
Forum: Fixing WordPress
In reply to: How to add post formats to custom post typesHi kunstwerck,
Yes, it works, but only if add action on ‘init’ hook, not on ‘after_setup_theme’. Using removal function seems a bit awkward to me, but anyway, the original problem is solved.
Thank you
Forum: Fixing WordPress
In reply to: How to add post formats to custom post typesHi kunstwerck,
As far as I understand, there are two ways of adding post formats:
1) by calling add_post_type_support( ‘products’, ‘post-formats’)
2) by calling register_post_type(‘products’, … , ‘supports’ => array(‘post-formats’))The second method is actually alias of calling add_post_type_support(), so they both are basically the same.
The problem is that without calling add_theme_support() I cannot select format of the product being added/edited, because there is no Format meta box (like this one – https://op111.net/wp-content/uploads/2010/12/wordpress-31-post-formats-aside.png)
Forum: Fixing WordPress
In reply to: Can't update core from dashboardHi Bqicot, just add that code to functions.php in your current theme
@michaldybczak, did you manage to resolve your backup problem?
I have just one (pure theoretical) question. Suppose I upload an original jpg image in [gallery] folder that is 1024x768px with filesize of 200kb. Why does NextGen create a copy of it in [dynamic] folder that is the same 1024x768px but with bloated filesize of 500kb?
Forum: Fixing WordPress
In reply to: Can't update core from dashboardTemporarily solved the problem by switching api transport from curl to http-streams.
add_filter( 'http_api_transports', function() { return array( 'streams' ); });
Forum: Fixing WordPress
In reply to: Can't update core from dashboardI’m still stuck.
HTTPS tester reports failure because of the following line in its code:$ip = gethostbyname( ‘api.www.remarpro.com’ );
$expected = array( ‘66.155.40.250’, ‘66.155.40.249’ );
$ok = in_array( $ip, $expected);and the current ip of api.www.remarpro.com is 66.155.40.203, which is not in the list
However, when I try to update WP still can’t establish a secure connection to www.remarpro.com.
Hope it doesn’t rely on IP addresses instead of a hostname (like the above mentioned plugin)
Forum: Fixing WordPress
In reply to: Can't update core from dashboardHi Casey!
Yes I’ve seen this article but it mainly dealt with question of how to block unwanted updates, and I want to do the opposite task.I don’t see anything criminal in Apache logs, however I don’t know where I can see the outbound DNS requests that web server sends.
At last, after I have upgraded to the latest version (2.0.23) the problem disappeared.
Thank you ??
I upgraded to the latest version 2.0.17 but have the same issue as before. Tried to use different browsers with and without cache, all the same.
Hi @photocrati, you are right. It seems a little bit strange when some links don’t work the way they should.
PS. Just upgraded to 2.0.14, but the problem remained.