Hello,
It’s been 4 days. Still no help or support from you.
Hello @rpladmin ,
I hope you are doing well. Please accept our sincere apologies for the delay in getting back to you, and thank you for your patience.
Regarding your queries about customizing the backend admin workflow:
TinyMCE & Editor Height: Our plugin’s internal text editor environment does not currently support external advanced editor tools or a default height adjustment to 450px.
Accordion State: The question accordions are designed to remain collapsed by default to keep the admin interface clean and structured, so there is no built-in setting to force them all open at once.
I have shared your exact requirements directly with our development team. They are currently reviewing these suggestions to check if implementing these backend customizations is technically feasible for future updates. Once I have more clarity or an update from them, I will be sure to let you know here.
Thank you again for your valuable feedback, and please feel free to reach out if you have any other questions in the meantime.
Warm regards,
Pankaj
Hello @rpladmin ,
I hope you are doing well. I am following up with an update from our development team regarding your customization requests:
TinyMCE Customization: We have introduced a new hook qsm_question_editor_settings that allows you to extend the options available in the question description editor and rich question editor. Here is a code snippet you can add to your theme’s functions.php file to add font, size, and color tools:
add_filter( 'qsm_question_editor_settings', function ( $settings, $context ) {
$settings['tinymce']['toolbar1'] .= ',fontselect,fontsizeselect,forecolor,backcolor';
return $settings;
}, 10, 2 );
Editor Height: The editor box can be manually resized directly within the admin interface by clicking and dragging the handle at the bottom-right corner of the editor field to expand it to 450px or your desired height.
Accordion Default State: Regarding keeping all accordions open by default, after careful review, our team decided not to implement this as a core feature. Forcing all accordions to stay expanded leads to a cluttered interface and negatively impacts performance and navigation for most users.
We hope the new filter snippet helps you customize the editor to better fit your workflow! Please let us know if you have any questions.
Warm regards,
Pankaj