chriskeeble
Forum Replies Created
-
We recently put together an ajax-based directory lookup to handle a similar situation in a C# based project – if I get time over the next couple of weeks I’ll look at porting it over to PHP and into this plugin. It would help one of our clients too.
Hi Boone,
You’re welcome. And that’s great news. Thanks also for the link to the github repository, much appreciated.
Kind regards
Chris
Update:
To fix the date issue, update bp-group-management-bp-functions.php
1. Line 102: change
order=group_idtoorder=newest2. Line 71: insert the following code
else if ( $order == 'newest' ) $args['type'] = 'newest';The group ID issue is due to line 68:
$args['type'] = 'newest';But the underlying BuddyPress sorting doesn’t appear to offer an ID based sort, so would need further ivestigation to resolve this properly.
Kind regards
Chris
Forum: Plugins
In reply to: [Invite Anyone] Invite Anyone Upgrade IssuesThis problem (described in the first post) still exists when upgrading from v1.0.10 to v1.0.11.
To resolve, once the upgrade fails, simply go to Plugins -> Add New, search for invite anyone, and install – it then succeeds (and retains your previous settings thankfully!)
@ralceus – You may want to post your question as a new topic rather than hijacking the original question (to avoid confusion for other readers).
Hi @lenasterg,
Thanks for the reply – I provided some more details of the specific problem we experienced on this thread in case it helps. I’d be interested in your thoughts there.
Forum: Plugins
In reply to: [Group Documents] [Plugin: Group Documents] Download linkSimilarly, I think line 38 of the same file (cssjs.php):
add_action('admin_init','bp_group_documents_admin_cssjs');should be calling ‘admin_head’ instead of ‘admin_init’ ? i.e.:
add_action('admin_head', 'bp_group_documents_admin_cssjs');I’d love some feedback on this and the suggestion in my previous post if anyone has a view?
Forum: Plugins
In reply to: [Group Documents] [Plugin: Group Documents] Download linkHi @lenasterg,
As I understand it, your latest version of the plugin is compatible with WP v3.3.3, but that’s still in beta.
Do you have a version of your plugin which words with WordPress 3.3.2 and BuddyPress v1.5.5 ? (for a production release).
The specific problem we’ve found is that general.js is not being loaded on the group pages. (It is loaded on the home page however).
UPDATE: On line 27 of cssjs.php you are calling:
add_action( 'template_redirect', 'bp_group_documents_front_cssjs', 1 );Is there any reason why you’re using ‘template_redirect’ instead of ‘wp_head’ (which appears to resolve the problem) i.e. replace the line above with:
add_action( 'wp_head', 'bp_group_documents_front_cssjs', 100);*Note I have used the priority parameter (100) having taken a cue from the file bp-core-cssjs.php
There are still other issues, but so far these appear to be more to do with styling / integration with the theme in use.
Many thanks
Chris
Hi lenasterg,
Do you have a version of your plugin which words with WordPress 3.3.2 and BuddyPress v1.5.5 ? (for a production release)
Many thanks
Chris