Title: Ritsk's Replies | WordPress.org

---

# Ritsk

  [  ](https://wordpress.org/support/users/ritsk/)

 *   [Profile](https://wordpress.org/support/users/ritsk/)
 *   [Topics Started](https://wordpress.org/support/users/ritsk/topics/)
 *   [Replies Created](https://wordpress.org/support/users/ritsk/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/ritsk/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/ritsk/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/ritsk/engagements/)
 *   [Favorites](https://wordpress.org/support/users/ritsk/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 16 total)

1 [2](https://wordpress.org/support/users/ritsk/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/ritsk/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Front-end Editor for WordPress] How to add Thumbnail button in frontend editor](https://wordpress.org/support/topic/how-to-add-thumbnail-button-in-frontend-editor/)
 *  Thread Starter [Ritsk](https://wordpress.org/support/users/ritsk/)
 * (@ritsk)
 * [10 years, 11 months ago](https://wordpress.org/support/topic/how-to-add-thumbnail-button-in-frontend-editor/#post-5400806)
 * I guess this element will be there when you use the_post_thumbnail(); to display
   and when you edit it FEE will turn that to set-post-thumbnail.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Front-end Editor for WordPress] How to add Thumbnail button in frontend editor](https://wordpress.org/support/topic/how-to-add-thumbnail-button-in-frontend-editor/)
 *  Thread Starter [Ritsk](https://wordpress.org/support/users/ritsk/)
 * (@ritsk)
 * [11 years, 10 months ago](https://wordpress.org/support/topic/how-to-add-thumbnail-button-in-frontend-editor/#post-5400604)
 * I have Done the required.. By adding code in class-wp-front-end-editor.php
 * $wp_admin_bar->add_node( array(
    ‘id’ => ‘featuredImage’, ‘href’ => ‘#’, ‘title’
   => ‘<span class=”button-primary” title=”Set Header image”>Set Header image</span
   >’, ‘meta’ => array( ‘title’ => ‘Set Header image’ ), ‘fee’ => true ) );
 * inside public function admin_bar_menu( $wp_admin_bar ) {
 * And Added jquery function inside js/tinymce.fee.js
 * editor.addButton( ‘wp-admin-bar-featuredImage’, {
    title: ‘featuredImage’, tooltip:‘
   featuredImage’, onclick: function( event ) { event.preventDefault(); $( ‘#set-
   post-thumbnail’ ).click(); } } );
 * This may help other people..
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Front-end Editor for WordPress] Text Widget editor](https://wordpress.org/support/topic/text-widget-editor/)
 *  [Ritsk](https://wordpress.org/support/users/ritsk/)
 * (@ritsk)
 * [11 years, 10 months ago](https://wordpress.org/support/topic/text-widget-editor/#post-4973146)
 * This plugin allow you to make modification in page content, Widget and other 
   section like menu are part of theme. so you can’t edit those via this plugin.
   Istead you can develop some plugin that you can call from front end and make 
   required changes in same.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Front-end Editor for WordPress] Custom Post Support](https://wordpress.org/support/topic/custom-post-support-3/)
 *  [Ritsk](https://wordpress.org/support/users/ritsk/)
 * (@ritsk)
 * [11 years, 10 months ago](https://wordpress.org/support/topic/custom-post-support-3/#post-5400555)
 * Thats correct, To make custom post editable you need to add support for the same.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [Front End Menu, page, post and slider editor](https://wordpress.org/support/topic/front-end-menu-page-post-and-slider-editor/)
 *  Thread Starter [Ritsk](https://wordpress.org/support/users/ritsk/)
 * (@ritsk)
 * [11 years, 11 months ago](https://wordpress.org/support/topic/front-end-menu-page-post-and-slider-editor/#post-5102599)
 * hello,
 * To do this front end editing, I have developed a plugin that is having basic 
   option “Edit page”, Manange menu, Manage theme options, Manage Slider and add
   new page.
 * Edit page is done with wp-frontend-editor and for rest I have opened admin pages
   without menu bar in iframe.
 * this may help other people.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Front-end Editor for WordPress] [plugin : front end editor] Multisite spacebar issue](https://wordpress.org/support/topic/plugin-front-end-editor-multisite-spacebar-issue/)
 *  Thread Starter [Ritsk](https://wordpress.org/support/users/ritsk/)
 * (@ritsk)
 * [11 years, 11 months ago](https://wordpress.org/support/topic/plugin-front-end-editor-multisite-spacebar-issue/#post-5244414)
 * I have resolved the issue of spacebar. This was due to scroll to top functionality
   in my theme. I have removed scroll to top from my theme while editing the page.
 * This may be useful to other…
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Admin Bar ID Menu] Id is showing old page review id](https://wordpress.org/support/topic/id-is-showing-old-page-review-id/)
 *  Thread Starter [Ritsk](https://wordpress.org/support/users/ritsk/)
 * (@ritsk)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/id-is-showing-old-page-review-id/#post-5143176)
 * Sorry my theme is loading pages using ajax. So admin bar is not loading every
   time.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[More Fields] [Plugin: More Fields] How do I make a custom field required?](https://wordpress.org/support/topic/plugin-more-fields-how-do-i-make-a-custom-field-required/)
 *  [Ritsk](https://wordpress.org/support/users/ritsk/)
 * (@ritsk)
 * [13 years, 11 months ago](https://wordpress.org/support/topic/plugin-more-fields-how-do-i-make-a-custom-field-required/#post-3053738)
 * I am also looking for the same. I need a checkbox to be checked before submission.
   it is manditory field.
 * Can anyone help me.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [Open NextGEN gallery from link or single image](https://wordpress.org/support/topic/open-nextgen-gallery-from-link-or-single-image/)
 *  [Ritsk](https://wordpress.org/support/users/ritsk/)
 * (@ritsk)
 * [14 years, 1 month ago](https://wordpress.org/support/topic/open-nextgen-gallery-from-link-or-single-image/page/2/#post-2382375)
 * Thanks for the post..
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Redirect to edit media page after uploading media](https://wordpress.org/support/topic/redirect-to-edit-media-page-after-uploading-media/)
 *  Thread Starter [Ritsk](https://wordpress.org/support/users/ritsk/)
 * (@ritsk)
 * [14 years, 5 months ago](https://wordpress.org/support/topic/redirect-to-edit-media-page-after-uploading-media/#post-2630637)
 * okies..
    Thanks for the reply. We will look for solution if it exists.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [how can I change lable of Author to writer in admin panel](https://wordpress.org/support/topic/how-can-i-change-lable-of-author-to-writer-in-admin-panel/)
 *  Thread Starter [Ritsk](https://wordpress.org/support/users/ritsk/)
 * (@ritsk)
 * [14 years, 5 months ago](https://wordpress.org/support/topic/how-can-i-change-lable-of-author-to-writer-in-admin-panel/#post-2632197)
 * Yes ! I have already created forum topic for the same. but no answer on it yet.
   So thought you might have some way to do this.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [how can I change lable of Author to writer in admin panel](https://wordpress.org/support/topic/how-can-i-change-lable-of-author-to-writer-in-admin-panel/)
 *  Thread Starter [Ritsk](https://wordpress.org/support/users/ritsk/)
 * (@ritsk)
 * [14 years, 5 months ago](https://wordpress.org/support/topic/how-can-i-change-lable-of-author-to-writer-in-admin-panel/#post-2632172)
 * keesiemeijer..
    Can u please help me in following. I want redirect the page after
   uploading image / video to edit of recently uploaded image/video.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [how can I change lable of Author to writer in admin panel](https://wordpress.org/support/topic/how-can-i-change-lable-of-author-to-writer-in-admin-panel/)
 *  Thread Starter [Ritsk](https://wordpress.org/support/users/ritsk/)
 * (@ritsk)
 * [14 years, 5 months ago](https://wordpress.org/support/topic/how-can-i-change-lable-of-author-to-writer-in-admin-panel/#post-2632168)
 * Thats Wonderful.
    Thanks for the reply.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Redirect to edit media page after uploading media](https://wordpress.org/support/topic/redirect-to-edit-media-page-after-uploading-media/)
 *  Thread Starter [Ritsk](https://wordpress.org/support/users/ritsk/)
 * (@ritsk)
 * [14 years, 5 months ago](https://wordpress.org/support/topic/redirect-to-edit-media-page-after-uploading-media/#post-2630621)
 * i think it not big task, WordPress is great cms and very flexible.
    Can someone
   give me a hint where to look for the same.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[User Role Editor] [Plugin: User Role Editor] s2Member / Per-User Capabilities](https://wordpress.org/support/topic/plugin-user-role-editor-s2member-per-user-capabilities/)
 *  [Ritsk](https://wordpress.org/support/users/ritsk/)
 * (@ritsk)
 * [14 years, 5 months ago](https://wordpress.org/support/topic/plugin-user-role-editor-s2member-per-user-capabilities/#post-2008636)
 * Thanks for the reply Vladimir Garagulya. It was due to plugin error. I removed
   the user role from database directly.

Viewing 15 replies - 1 through 15 (of 16 total)

1 [2](https://wordpress.org/support/users/ritsk/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/ritsk/replies/page/2/?output_format=md)