Skip to main content

Home/ Wordpress/ Group items tagged editor

Rss Feed Group items tagged

Luciano Ferrer

widgets - Give Editor Access To Sidebar - WordPress Development Stack Exchange - 3 views

  •  
    "The edit_theme_options capability should allow the user to edit the sidebar as described on this page : http://codex.wordpress.org/Appearance_Widgets_SubPanel Code to add to functions.php $role = get_role('editor'); $role->add_cap('edit_theme_options'); Edit: This should work to prevent editor accessing themes or menus function custom_admin_menu() { $user = new WP_User(get_current_user_id()); if (!empty( $user->roles) && is_array($user->roles)) { foreach ($user->roles as $role) $role = $role; } if($role == "editor") { remove_submenu_page( 'themes.php', 'themes.php' ); remove_submenu_page( 'themes.php', 'nav-menus.php' ); } } add_action('admin_menu', 'custom_admin_menu'); I haven't had chance to test this, but it only removes them from the menu they may still be able to access them by typing in the URL directly."
Luciano Ferrer

Mostrar completo el editor de WordPress | Ayuda WordPress - 0 views

  •  
    "Para conseguirlo tienes que crear una función en tu plugin de utilidades o archivo functions.php y añadir el siguiente código: //Activar todos los botones del editor function todos_los_botones($buttons) { $buttons[] = 'fontselect'; //Selector de tipo de fuente $buttons[] = 'fontsizeselect'; //Selector de tamaño de fuente $buttons[] = 'styleselect'; //Selector de estilos de párrafo mucho más amplio $buttons[] = 'backcolor'; //Color de fondo de párrafo $buttons[] = 'newdocument'; //Nuevo documento inline $buttons[] = 'cut'; //Cortar texto $buttons[] = 'copy'; //Copiar texto $buttons[] = 'charmap'; //Mapa de caracteres $buttons[] = 'hr'; //Línea horizontal $buttons[] = 'visualaid'; //Ayudas visuales del editor return $buttons; } add_filter("mce_buttons_3", "todos_los_botones"); "
awqi zar

Dean's FCKEditor for WordPress - a WYSIWYG editor plugin : DEAN LEE:/DEV/BLOG - 0 views

  •  
    CKeditor is an open source WYSIWYG text editor ,brings to the web much of the power of desktop editors like MS Word.it's lightweight and is compatible with most internet browsers which include: IE 5.5+ (Windows), Firefox 1.0+, Mozilla 1.3+ and Netscape 7+.
Vernon Fowler

WordPress › User Role Editor « WordPress Plugins - 0 views

  • as a copy of other existing role
  • Multiple roles could be assigned to user simultaneously
  •  
    With User Role Editor WordPress plugin you can change user role (except Administrator) capabilities easy, with a few clicks. Just turn on check boxes of capabilities you wish to add to the selected role and click "Update" button to save your changes.
Luciano Ferrer

WordPress › User Role Editor « WordPress Plugins - 1 views

  •  
    "User Role Editor WordPress plugin makes the role capabilities changing easy. You can change any standard WordPress user role (except administrator). "
Luciano Ferrer

Redirección de usuarios a páginas personalizadas al registrarse en WordPress - 0 views

  •  
    "// --------------------------------- // Redirección de registro (login) // según el tipo (rol) de usuario. // --------------------------------- function mytheme_custom_login_redirect($redirect_to, $request, $user) { global $user; if ( isset( $user->roles ) && is_array( $user->roles ) ) { // Si es un usuario administrador // le redirigimos a la página de gestión de plugins if ( in_array( 'administrator', $user->roles ) ) return home_url( '/wp-admin/plugins.php' ); // Si es un usuario con permisos de editor // le enviamos a la página de gestión de entradas. elseif ( in_array( 'editor', $user->roles ) ) return home_url( '/wp-admin/edit.php' ); // Y a todos los demás usuarios // les redirigimos a la página de inicio de la web. else return home_url(); } else { return $redirect_to; } } add_filter( 'login_redirect', 'mytheme_custom_login_redirect', 10, 3 );"
Peter Nilsson

4 Visual CSS Editors Plugins for Customizing WordPress - 1 views

  •  
    Use one of these CSS editor plugins to change the appearance of your WordPress website and without editing any code, including CSS Hero and Genesis Extender
Luciano Ferrer

WordPress › PDF Image Generator « WordPress Plugins - 0 views

  •  
    "Generate a thumbnail of a PDF document by using ImageMagick. Allow inserting PDF link with a image into the editor. By uploading a PDF attachment, this plugin convert the cover page to jpeg and attach it as a post thumbnail file. It also allows displaying a thumbnail icon and inserting PDF link with a cover image into the editor."
Luciano Ferrer

WordPress › Sangar Slider - WordPress Responsive Slider « WordPress Plugins - 0 views

  •  
    "Sangar Slider is a premium high quality slider plugin for WordPress. Sangar Slider is a premium high quality slider plugin for WordPress. With smooth animation, layered slide, touch and swipe support, easy to use and truly responsive. Packed with premium skins and template, and also easy to create your very own custom template for your slider. It's full-featured, modern, yet easy to use. Sangar Slider is an awesome layer slider as well, with the ability of adding any HTML contents (texts, images, …) in layers. You can even create your very-own theme and template using its extensive API system. No coding required. Sangar Slider Premium is equipped with a cutting-edge, powerfull yet intuitive and easy to use layer editor. With layer editor, you can create your layer content by drag-n-drop your content. Each element of the layer is editable, including content transition. The slider also come with eye-catching animation."
webmoneyai

Pictory AI Review: A Powerful AI Video Editor - Web Money AI - 0 views

  •  
    Pictory AI, a new web-based video editor that claims to utilize Artificial Intelligence (AI) to streamline the creation of videos. Pictory AI promises to assist you in creating stunning videos from your audio or text content in a matter of minutes, with no computer skills or software download required.
Luciano Ferrer

WordPress › TinyMCE Advanced « WordPress Plugins - 2 views

  •  
    "Enables the advanced features of TinyMCE, the WordPress WYSIWYG editor. This plugin adds 16 plugins to TinyMCE: Advanced HR, Advanced Image, Advanced Link, Advanced List, Context Menu, Emotions (Smilies), Date and Time, IESpell, Layer, Nonbreaking, Print, Search and Replace, Style, Table, Visual Characters and XHTML Extras."
Luciano Ferrer

WordPress › Post Thumbnail Editor « WordPress Plugins - 0 views

  •  
    "Fed up with the lack of automated tools to properly crop and scale post thumbnails? Maybe this plugin can help. To meet the needs of themes where the post-thumbnails have random and capricious sizes (which causes wordpress to crop images simply from the middle (either chopping off the top and bottom or chopping off the sides), this plugin attempts to give the users an interface to manually fix those thumbnail and random images."
Luciano Ferrer

WordPress › Codestyling Localization « WordPress Plugins - 0 views

  •  
    You can manage and edit all gettext translation files (*.po/*.mo) directly out of WordPress Admin Center without any need of an external editor.
  •  
    "You can manage and edit all gettext translation files (*.po/*.mo) directly out of WordPress Admin Center without any need of an external editor. "
Vernon Fowler

How to Create Meta Boxes in WordPress | WP Roots - 3 views

  •  
    Meta boxes are the the little blocks in the editor section for each post type. They are actually quite old in WordPress terms - they were introduced back in 2.5 and now almost every premium theme uses this feature. Here's what one looks like on my portfolio:
pcactive

WordPress › Ultimate TinyMCE « WordPress Plugins - 1 views

  •  
    "Ultimate TinyMCE will add over 40 new buttons to the default visual tinymce editor, giving you the power to visually create your pages and posts. No need for mucking about in HTML and CSS."
Vernon Fowler

Roles and Capabilities « WordPress Codex - 2 views

  • Editor – somebody who can publish and manage posts including the posts of other users. Author – somebody who can publish and manage their own posts. Contributor – somebody who can write and manage their own posts but cannot publish them. Subscriber – somebody who can only manage their profile.
  •  
    "edit_published_posts"
Luciano Ferrer

BarTab Lite :: Reviews :: Add-ons for Firefox - 3 views

  •  
    "1) Go to: C:\Users\(your user name)\AppData\Roaming\Mozilla\Firefox\Profiles\(random letters and numbers).default\ 2) Create a folder called 'chrome' (without quotes) if you don't see one. 3) Make a css file called 'userChrome' (userChrome.css) 4) Open it up in a text editor of your choice and put in: .tabbrowser-tab[pending] { opacity: .5; } 6) Restart the browser if it isn't closed. Done!"
Luciano Ferrer

WordPress › Knews Multilingual Newsletters « WordPress Plugins - 4 views

  •  
    "Knews is a powerful multilingual language plug-in that allows you to build professional looking newsletters, segment subscribers in different mailing lists as well as segment them by language all in a matter of minutes. Includes a custom, unique modular WYSIWYG (What You See Is What You Get) editor. Based on templates, with no need to know HTML."
Luciano Ferrer

WordPress › Rating-Widget « WordPress Plugins - 3 views

  •  
    "The Rating-Widget Ratings plugin allows you to create and manage ratings from within your WordPress dashboard. You can embed ratings into your posts, pages or comments. PLUS, you can embed ratings into your BuddyPress activity updates and comments. In extra, the rating support BP's bbPress forum posts ratings. All Rating-Widget ratings are fully customizable, cross-browser, support multi-language, CSS3 compliant and hosted by Rating-Widget.com. You can create unlimited ratings and collect unlimited votes. The rating editor allows you to fully customize your ratings and its placement on your blog's layout. You can also avail of the the 'Top Rated' widget that will allow you to place the widget in your sidebar. This widget will show you the top rated posts, pages and comments."
1 - 20 of 53 Next › Last »
Showing 20 items per page