Search Results for 'code'
-
Search Results
-
Hi everybody! I need to change some “titles” and “invalid” some actions of BBPress so I can use it for my blog. Anybody who could help me with some codes, please?
Than you! 😀
Cheers!Good evening, I added a field on the WP profile and wanted to bbpress posted on the profile.
How do we do?
I tried your plugin bbp profile information so I have almost everything I want but not totally.What added to the Profile page of WP fields (Role on the site, website, additional fields (with add function), etc.).
For the formatting, changing the file should be simple but I do not know what code used to do.
Same, how added some fields in the WP topics (subject / response).
What bothers me in the plugin’s name display / First name / email automatically. Why not have checkboxes on what the user wants to view. But before the administrator can block fields.
Given that I want to add a facebook fields and if it is not empty and the link, I want to display on the profile and the topic / response mode with an image.
For additional fields, four are enough for me, but how to add it to the wp-admin?
On my site, wp-admin is accessible for admins and the member / user by everyone.
If you do not understand me, I will try to make screenshots to make it more understandable.
Sincerely Nicolas.Topic: Hook into bbPress teeny MCE?
I need to add a button to bbPress instance of the teeny MCE.
I’ve used the following code to test how my mce plugin work:
// add new buttons add_filter('mce_buttons', 'myplugin_register_buttons'); function myplugin_register_buttons($buttons) { array_push($buttons, 'separator', 'myplugin'); return $buttons; } // Load the TinyMCE plugin : editor_plugin.js (wp2.5) add_filter('mce_external_plugins', 'myplugin_register_tinymce_javascript'); function myplugin_register_tinymce_javascript($plugin_array) { $plugin_array['myplugin'] = plugins_url('/js/tinymce-plugin.js',__FILE__); return $plugin_array; }This works like it should on the admin side.
I can’t wrap my head around how to get the same principle to work for bbPress instance of teeny mce. Which filter/action do I need to use and where? I’ve tried using the teeny_mce_buttons filter without any luck.
WP 4.2.4, bbPress 2.5.8
