Nikolay Bachiyski
Forum Replies Created
-
Unfortunately you can’t do it without a plugin.
Forum: Fixing WordPress
In reply to: After 3.6.1 Update – Can't change Sticky status in Quick EditI just released 1.2.1 of Admin in English, which should fix the problem. Could you please give it a try and confirm that it works alright? Thanks!
I just released Admin in English 1.2.1, could you confirm that it fixes the problem?
Forum: Plugins
In reply to: [Liveblog] Disabling a liveblog?Hey Kargo,
You can archive the liveblog from the edit post page. This won’t show anything to the normal users, just to the users, who have rights to create new entries.
If the small note is getting in your way, yes, creating a new post is the only option.
Forum: Plugins
In reply to: [Liveblog] [Plugin: Liveblog] Error 404In general liveblog should be working with W3 Total Cache, but we need to test some more.
We’ll try to track down the issue for the next version: https://github.com/Automattic/liveblog/issues/91
Forum: Plugins
In reply to: [Liveblog] All timestamps say "43 Years Ago"For some reason the timestamp is 0 (the UNIX timestamps start on Jan 1st, 1970).
Could you show us an example of a page, which exhibits this problem?
Forum: Plugins
In reply to: [Liveblog] Why no simple upload button for images?Hey meerderideen,
Better upload methods and formatting are on the roadmap for the next version: https://github.com/Automattic/liveblog/issues?milestone=5&state=open
Forum: Plugins
In reply to: [Liveblog] Question about unchecking the liveblog boxForum: Plugins
In reply to: [Liveblog] Question about unchecking the liveblog boxjfrenaye, Liveblog 1.3 just came out and it allows you to “Archive” a liveblog. This will hide the compose box, but will still show the entries.
Forum: Plugins
In reply to: [Liveblog] Question about unchecking the liveblog boxOn the first question – the newest version 1.3 will be out tomorrow probably, will contain a functionality for archiving a liveblog. If a liveblog is archived the posting interface is gone, but the posts are still there.
On the second, we are working on uploading images via mobile for our next version.
Hey, are you still experiencing the problem with the latest Liveblog versions?
Forum: Plugins
In reply to: [Liveblog] [Plugin: Liveblog] post to twitterThis isn’t implemented, but you can follow the discussion here: https://github.com/Automattic/liveblog/issues/26
Forum: Plugins
In reply to: [Liveblog] How to query number of liveblog entries for a given post?@eschickel, currently there isn’t specific API for getting the count, but you can use the following code:
function get_liveblog_entries_count_for_post_id( $post_id ) { $query = new WPCOM_Liveblog_Entry_Query( $post_id, WPCOM_Liveblog::key ); return count( $query->get_all() ); }
If you’re using an object cache it would be pretty fast. It’s calling
get_comments()
once under the hood, so it shouldn’t be too slow in any case.Forum: Plugins
In reply to: [Liveblog] Not workingIf nothing’s happening, probably there’s a JavaScript error.
Could you do the following things:
0. Try the latest Liveblog version from https://github.com/Automattic/liveblog/archive/master.zip
1. If it still isn’t working, could you see if there are any JS errors?Forum: Plugins
In reply to: [Liveblog] [Plugin: Liveblog] Error 404Hey everybody,
I tried on several installs with all the permalink structures mentioned above and it always works for me.
I’d really like to help you. Here are a couple ideas:
0. Could you disable any caching plugins for a bit?
1. Could you install the Rewrite Rules Inspector plugin and see if there are any missing rewrite rules? A screenshot of the rules page will be useful.
2. If anybody is willing to give access to a server with 404-ing liveblog, I’d be happy to have a look.