This popups when requesting the desktop version of your site on the current version of word-press but unfortunately pops up under the menu bar and horizontally not vertically. Any one know how to force it vertical ?
]]>I was wondering if you can take this request, integrating with buddypress bringing to front end as well would be nice feature.
]]>Would love to see a version wherein local client could be stored on the Server to speed up the deployment, rather than fetching over the Web. This might be tricky with different server implementations out there, but the TogetherJS build instructions are a tad complicated!
]]>Hello,
We’re in love with this plugin, but have found there’s some test users or hacked in user on it which has them browsing their own blog and when I follow them it takes me out of my blog.
Their name is Riccardo and the blog they take me to is https://www.ignoranza.net
If they’re a test user how can I remove them, if they’ve hacked in somehow how can I disable them and block them?
Any assistance appreciated,
Cheers
When I start I session, I get a popup saying that someone has invited me to collaborate, which obviously doesn’t make sense.
I don’t know if this is a problem with TogetherJS itself, or the way that you integrated/launch it, but heads up in case it’s fixable.
[Otherwise this is great, and I’m looking forward to using it for client training/bug sessions. Thanks.]
]]>Here’s the full error:
Warning: Missing argument 2 for current_user_can_for_blog(), called in /wp-content/plugins/collaboration/togetherjs.php on line 34 and defined in /wp-includes/capabilities.php on line 1362
As it’s shown at the top of the admin & public pages whenever the plugin is active on a standard (not networked) WordPress site running 3.8.1.
The Fix:
A quick change of current_user_can_for_blog()
to current_user_can()
on line 34 of togetherjs.php
fixed this issue. Should continue to work for networked sites as this function assumes the currently viewed site (which is what we want).
I’ll start with what fixed the issue for me. The point where the plugin calls the scripts in togetherjs.php
can be changed to:
add_action( 'admin_bar_menu', array( &$this, 'add_colaborate_menu' ), 0 );
add_action( 'admin_init', array( &$this, 'add_javascripts' ), 0 );
add_action( 'admin_head', array( &$this, 'add_head' ), 9999 );
add_action( 'wp_enqueue_scripts', array( &$this, 'add_javascripts' ), 0 );
add_action( 'wp_head', array( &$this, 'add_head' ), 9999 );
I have jQuery called in the header via wp_enqueue_scripts, and the add_head
scripts need to be placed after that so the priority was pushed so they’re added as the last item in the <head> (fixing the issue where jQuery was reporting to be undefined).
Also added a new wp_enqueue_scripts
because add_javascripts
wasn’t being called on the public pages in order to add the main togetherjs javascript (fixing the issue where TogetherJS was reporting to be undefined).
Hi, wanted to explore this interesting plugin but upon trying to network activate it says:
“The plugin does not have a valid header.”
Any ideas?