Ritsk
Forum Replies Created
-
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.
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
In reply to: [Front-end Editor for WordPress] Text Widget editorThis 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
In reply to: [Front-end Editor for WordPress] Custom Post SupportThats correct, To make custom post editable you need to add support for the same.
Forum: Plugins
In reply to: Front End Menu, page, post and slider editorhello,
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.
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
In reply to: [Admin Bar ID Menu] Id is showing old page review idSorry my theme is loading pages using ajax. So admin bar is not loading every time.
Forum: Plugins
In reply to: [More Fields] [Plugin: More Fields] How do I make a custom field required?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
In reply to: Open NextGEN gallery from link or single imageThanks for the post..
Forum: Fixing WordPress
In reply to: Redirect to edit media page after uploading mediaokies..
Thanks for the reply. We will look for solution if it exists.Forum: Fixing WordPress
In reply to: how can I change lable of Author to writer in admin panelYes ! 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
In reply to: how can I change lable of Author to writer in admin panelkeesiemeijer..
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
In reply to: how can I change lable of Author to writer in admin panelThats Wonderful.
Thanks for the reply.Forum: Fixing WordPress
In reply to: Redirect to edit media page after uploading mediai think it not big task, WordPress is great cms and very flexible.
Can someone give me a hint where to look for the same.Thanks for the reply Vladimir Garagulya. It was due to plugin error. I removed the user role from database directly.