Yellow Swordfish said
Are you sure that this has nothing to do with the changes that WordPress made to the use of the TinyMCE editor in version 4.0? A lot of TinyMCE add-on plugins stopped working as they should because they did not get updated to use V4 of TinyMCE as WordPress was now using?
It i also worth stating that Simple:Press does not load any TinyMCE or forum components like this on your blog posts pages where comments are used. We could not effect this.
I’m sorry because I don’t check with detail. Maybe this effected from CKEditor before we migrate to TinyMCE Advanced. After I check with detail, it’s look the error on function.php at the themes. The codes like the below:
function rich_text_comment_form( $args ) {
ob_start();
wp_editor( ”, ‘comment’, array(
‘media_buttons’ => true, // show insert/upload button(s) to users with permission
‘textarea_rows’ => 10, // re-size text area
‘dfw’ => true, // replace the default full screen with DFW (WordPress 3.4+)
‘tinymce’ => array(
‘theme_advanced_buttons1’ => ‘bold,italic,underline,strikethrough,bullist,numlist,code,blockquote,link,unlink,outdent,indent,|,undo,redo,fullscreen’,
‘theme_advanced_buttons2’ => ”, // 2nd row, if needed
‘theme_advanced_buttons3’ => ”, // 3rd row, if needed
‘theme_advanced_buttons4’ => ” // 4th row, if needed
),
‘quicktags’ => array(‘buttons’ => ‘strong,em,link,block,del,ins,img,ul,ol,li,close,fullscreen’)
) );
$args[‘comment_field’] = ob_get_clean();
return $args;
}
function bbp_enable_visual_editor( $args = array() ) {
$args[‘tinymce’] = true;
return $args;
}
add_filter( ‘bbp_after_get_the_content_parse_args’, ‘bbp_enable_visual_editor’ );
After I remove the code, the comment editor already back to default WP editor.
Not sure what you mean by ‘integrate to the WordPress profile’. Simple:Press profile already contains the important fields of data from the WP profile. I will need more information to fully understand what you are asking for please.
Sorry, maybe I don’t explain with detail. For the default profile on WP already done but we had add some fields too into WP profile from other plugins such as “Birthday” fields as the required when the user login into our site. But in Custom Profile Fields, we can’t see the data already fill into the “Birthday” fields.
Simple:Press being template driven can be changed in any way that you like. So moving things around in the SP profile page or SP profile popup can be fairly easily achieved. Many of those items you mentioned however are not WP or SP standard profile fields so can I assume you are using some sort of third party profile add-on now. And if so then it might depend on how that plugin stores its data.
For the menu that can directly go to Profile already done from Avada themes. So, I think for this issue is already done.
Private messaging needs a permission turning in for your users to use it so have you visited the permission section in the forum admin and turned on the use of PMs for the right sets?
Thanks for your suggest, we can use it now.
Well, I have still some questions that I’m confused how to customize it.
- How can I make all the fields that I add from Custom Fields could be appear in the user profile page like “Member since”, “Username”, “First name” but only for fields that already fill by user?
- How can I remove the number post on the besides of administrator name in the footer? I just got this code but I can’t seperate it like I want.
sp_AdminsList('tagClass=spLeft spAdministrators', __sp('Administrators: '));
Many thanks for your respond.