Mathieu Viet
Forum Replies Created
-
Forum: Plugins
In reply to: [Bowe Codes] Display text "No member found" when nothing to displayYou cannot. I’ll look at it so that you will be able to do it in next upgrade.
Forum: Plugins
In reply to: [Bowe Codes] How to insert Group Description into [bc_groups]Hi,
You can use some plugin’s filters such as :
– ‘bowe_codes_groups_tag’,
– ‘bowe_codes_groups_tag_featured’,
– ‘bowe_codes_html_group_after_title’,
– ‘bowe_codes_html_group’Forum: Plugins
In reply to: [Bowe Codes] Shortcode to show only the latest activities in one groupHi, not directly but you can use the activity shortcode and filter this hook ‘bowe_codes_activity_tag_arg’ to add your custom argument.
eg:
function jeroen_group_activities( $activity_args = array() ) { // Set your specific group $group_id = 1; return array_merge( $activity_args, array( 'object' => 'groups', 'primary_id' => $group_id, ) ); } add_filter( 'bowe_codes_activity_tag_arg', 'jeroen_group_activities', 10, 1 );Forum: Plugins
In reply to: [Bowe Codes] Doesn't work in sidebar , wordpress 4.0You should use the Bowe Codes widget that is included within the plugin. If you are using the text widget, you’ll need to use some custom filters to make sure shortcodes are built:
add_filter( 'widget_text', 'shortcode_unautop'); add_filter( 'widget_text', 'do_shortcode');Forum: Plugins
In reply to: [Bowe Codes] Show only private groups in list using bc_user_groupsNot unless you specified specific groups using the feature attribute of the shortcode. I’ll try to see how i can include this request in next upgrade. Thanks for your feedback.
Forum: Plugins
In reply to: [Bowe Codes] bc_group_users show user actions?Hello,
Thanks for your feedback. There’s no argument to add these action buttons, i’ll see if i can add some actions to let you do this in next version of the plugin.
Forum: Plugins
In reply to: [Bowe Codes] xprofile displaying field name before contentHave you tried to set the show_labels parameter to 0 ?
eg:
[bc_member size="125" name="chriscrews" fields="Title" show_labels="0"]Forum: Plugins
In reply to: [Bowe Codes] PHP Warning while creating a new WidgetThanks for your feedback @schwarzaufweiss
No interference with “Display Widgets” v2.03 i think. I made a mistake in the code, i’ll correct it asap.
Forum: Plugins
In reply to: [Buddy-bbPress Support Topic] reply to topici’ll add a way to achieve this in next version (2.0.1). See this commit:
https://github.com/imath/buddy-bbPress-Support-Topic/commit/5190ceb8a2aae7c74b3b8238be971e75a9da222cForum: Plugins
In reply to: [Bowe Codes] update messages in realtime rather than on a page refresh?i guess “buddydevs plugin” is using the heartbeat feature to update the notification bubble in realtime… I prefer to avoid adding new events in there, if i can see the source code of the plugin i can have a look, else if the author needs a specific hook i will be happy to add it.
For the second post, just committed this https://plugins.trac.wordpress.org/changeset/1060722/. So it’s possible using trunk version of the plugin and it will be included in next upgrade.
Thanks for your feedback, Just tried Atahualpa and i don’t have the ‘flashing’ Admin Bar. Maybe the latest commits i’ve made to trunk version fixed this.
Forum: Plugins
In reply to: [Bowe Codes] Allow for multi-selectThanks for your feedback. I have a couple of things to do before upgrading the plugin. But trunk version is including your request since https://plugins.trac.wordpress.org/changeset/1060579
Using trunk version or, once the plugin will be upgraded, you’ll be able to add a multiple attribute by choosing a
multiselecttype of field instead of theselecttype when registering a new “bowe” codeForum: Plugins
In reply to: [Bowe Codes] An error on Social InvitationThanks for your feedback. Just committed this https://plugins.trac.wordpress.org/changeset/1060610 so trunk version should be ok and it should be fixed for next plugin upgrade.
Forum: Plugins
In reply to: [Bowe Codes] PHP NoticeThanks for the feedback, just committed https://plugins.trac.wordpress.org/changeset/1060579. So trunk version should be ok. It will be fixed when i’ll soon upgrade the plugin.
Forum: Plugins
In reply to: [Buddy-bbPress Support Topic] no status anywhereThe only way this could happen is that you upgraded from version 1.0.x directly to version 2.0 without doing the 1.1 upgrade.
Since 1.1, i’m using the same post meta :
_bpbbpst_support_topicIf you still have meta keys like
'support_topic'(that was the one i used to use in 1.0.x), you can temporarily add this code to the functions.php file of your active theme. Before doing so: make sure to do a database backup, just in case.function bbpst_upgrade_temp() { global $wpdb; $wpdb->update( $wpdb->postmeta, array( 'meta_key' => '_bpbbpst_support_topic' ), array( 'meta_key' => 'support_topic' ) ); } add_action( 'admin_init', 'bbpst_upgrade_temp' );Then go in WordPress backend and once the page loaded, remove the above code from the functions.php file of your active theme.