jeffikus
Forum Replies Created
-
Forum: Plugins
In reply to: [WooTumblog] WooTumblog on no flash devicesYeah we are looking at several html5 players as an alternative, we’ve already implemented them into our WordPress.com tumblog themes and will likely implement it into the plugin in the near future!
Forum: Plugins
In reply to: [WooTumblog] [Plugin: WooTumblog] Moving to WordPress 3.1 Custom Post Formats@drperil – do the posts have a post format in the edit post screen of the backend?
Forum: Plugins
In reply to: [WooTumblog] [Plugin: WooTumblog] Moving to WordPress 3.1 Custom Post Formats@monchee – those aren’t supported by the plugin out of the box, but if you want to you can modify line 31 of /classes/wootumblog_postformat.class.php as follows from :
add_theme_support( 'post-formats', array( 'aside', 'image', 'audio', 'video', 'quote', 'link' ) );
Change it to
add_theme_support( 'post-formats', array( 'aside', 'image', 'audio', 'video', 'quote', 'link', 'gallery', 'status', 'chat' ) );
Forum: Plugins
In reply to: [WooTumblog] [Plugin: WooTumblog] Works on Admin Dashboard ONLYHi Terrence
Currently the plugin dashboard will show for those who have permission to publish posts. What you can do if you would like to change this is the following:
Find line 772 in /functions/wootumblog_dashboard_functions.php which reads:
if (current_user_can('publish_posts')) {
Change this to:
if (current_user_can('edit_posts')) {
That’s the minimum level for contributors.
The Tumblog functionality was not designed for BuddyPress unfortunately. However, having said that I can point you in the right direction. The save method on the dashboard widget uses ajax to post to WordPress. What you could do is edit the publish function to do what you want. The two applicable functions are:
in /functions/wootumblog_dashboard_functions.php
woo_tumblog_ajax_post() – which handles the ajax post. probably this is what you would want to modify.
woo_tumblog_publish() – which actually publishes the content.Forum: Plugins
In reply to: [WooTumblog] [Plugin: WooTumblog] Dashboard Widget / AJAX brokenWhat theme are you using? And what version of WordPress?
Forum: Plugins
In reply to: [WooTumblog] WooTumblog on no flash devicesAre you talking about the audio player? If so, I am investigating a html5 player that we already integrated into our WordPress.com tumblog themes. Probably will be out in version 2.0.3
Forum: Plugins
In reply to: [WooTumblog] [Plugin: WooTumblog] Moving to WordPress 3.1 Custom Post Formats@monchee – what do you mean by “rather than the current ones” ?
Forum: Plugins
In reply to: [WooTumblog] [Plugin: WooTumblog] Dashboard Widget / AJAX brokenDo you have any additional plugins installed that might be causing this? Just want to narrow it down.
Thanks, will test and get back to you.
What version of the plugin?
Forum: Plugins
In reply to: [WooTumblog] [Plugin: WooTumblog] Moving to WordPress 3.1 Custom Post FormatsUpgrade to the latest version of the plugin and your posts will automatically be set to the correct post format. Simply change the Tumblog Content setting in Tumblog Options panel to post format.
Forum: Plugins
In reply to: [WooTumblog] [Plugin: WooTumblog] functioning with mobile themeWill check it out and get back to you.
Forum: Plugins
In reply to: [WooTumblog] [Plugin: WooTumblog] Can't add a QuoteCan’t answer your question unless you let me know what version of the plugin you are using.
Forum: Plugins
In reply to: [WooTumblog] [Plugin: WooTumblog] Bug: Post Time does not refreshWhat version of the plugin are you using?