Skip to main content

Home/ Wordpress/ Group items tagged user

Rss Feed Group items tagged

timothypeverhart

Google Chrome for PC Latest Version - 0 views

image

Google Chrome

started by timothypeverhart on 24 Jul 23 no follow-up yet
timothypeverhart

Google Chrome for PC Latest Version - 1 views

image

Google Chrome

started by timothypeverhart on 24 Jul 23 no follow-up yet
timothypeverhart

Google Chrome for PC Latest Version - 0 views

image

Google Chrome

started by timothypeverhart on 24 Jul 23 no follow-up yet
timothypeverhart

Google Chrome for PC Latest Version - 0 views

image

Google Chrome

started by timothypeverhart on 24 Jul 23 no follow-up yet
Luciano Ferrer

User Role Management in WordPress | Beginner's Guide - 1 views

  •  
    "WordPress is a CMS that comes with its own user role management system. This user role management in WordPress defines what access does a specific user has, what the user can do and cannot do on the website. As your website grows, it is important to know these user roles and permissions. One really important thing to understand before starting is that user roles should be assigned keeping in mind what user will be doing on the site."
Luciano Ferrer

WordPress › CleanPrint « WordPress Plugins - 0 views

  •  
    "CleanPrint - Eco-friendly content output to print, PDF, email, Kindle, Box, Google Drive and Dropbox The world's best and most used eco-friendly print tool is now available on WordPress. Join top sites like NBC News, CNN, Disney and Fox Sports and offer your users an economically and ecologically friendly printing and saving experience that saves paper, ink, and money while saving trees. How CleanPrint Works CleanPrint is an eco-friendly tool that saves paper, ink and money when printing from the internet. Users can easily edit content before printing or saving to PDF, Kindle, Dropbox, Google Drive or Box. CleanPrint includes sharing tools and a pagination/paper saving counter that shows visitors how eco-friendly your site is and helps them avoid that dreaded extra sheet of paper! User activates CleanPrint by hitting print button Print preview appears including pagination and editing tools for optimization User selects desired output: PDF - Saves content as a PDF document Text - Saves content as a rich text formated file Dropbox - Saves a PDF or text file to your Dropbox account Box - Saves a PDF or text file to your Box account Google Drive - Saves a PDF or text file to your Google Drive account Kindle - Saves content directly to your Kindle Google Cloud Print - prints to a remote printer Print - Sends content to your printer Email - Sends content via email Share article link to Facebook, Twitter, LinkedIn, and Google+ Features and Benefits Use the CleanPrint button set or point your own buttons or text to CleanPrint. Lightbox keeps users on your page within their original browser window. Green ticker shows how many pages CleanPrint has saved. Pagination/paper saving counter helps users avoid that dreaded extra sheet of paper. Control - Users are in control of font size, images, gray scale of text, and eliminating any unwanted content before outputting t
Luciano Ferrer

WordPress › Peter's Login Redirect « WordPress Plugins - 0 views

  •  
    "Redirect users to different locations after logging in and logging out. Define a set of redirect rules for specific users, users with specific roles, users with specific capabilities, and a blanket rule for all other users. Also, set a redirect URL for post-registration. This is all managed in Settings > Login/logout redirects. You can use the syntax [variable]username[/variable] in your URLs so that the system will build a dynamic URL upon each login, replacing that text with the user's username. In addition to username, there is "userslug", "homeurl", "siteurl", "postid-23", "http_referer" and you can also add your own custom URL "variables". See Other Notes / How to Extend for documentation. If you're using a plugin such as Gigya that bypasses the regular WordPress login redirect process (and only allows one fixed redirect URL), set that plugin to redirect to wp-content/plugins/peters-login-redirect/wplogin_redirect_control.php and set the relevant setting to "Yes" at the bottom of the Settings > Login/Logout redirects page in the WordPress admin panel. You can add your own code logic before and between any of the plugin's normal redirect checks if needed. See Other Notes / How to Extend for documentation. Some examples include: redirecting the user based on their IP address; and redirect users to a special page on first login. This plugin also includes a function rul_register that acts the same as the wp_register function you see in templates (typically producing the Register or Site Admin links in the sidebar), except that it will return the custom defined admin address. rul_register takes three parameters: the "before" code (by default ""), the "after" code (by d"
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 );"
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

WordPress › Nav Menu Roles « WordPress Plugins - 1 views

  •  
    "Hide custom menu items based on user roles This plugin lets you hide custom menu items based on user roles. So if you have a link in the menu that you only want to show to logged in users, certain types of users, or even only to logged out users, this plugin is for you."
Vernon Fowler

WordPress › Add Multiple Users for WordPress « WordPress Plugins - 1 views

  • Functions include the ability to manually input new user information, convert CSV data to user information, and create users from a list of email addresses. Each new user registration can include almost all available standard user meta fields plus any additional meta fields you require.
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.
Vernon Fowler

Function Reference/current user can « WordPress Codex - 2 views

  • Do not pass a role name to current_user_can(), as this is not guaranteed to work correctly (see #22624). Instead, you may wish to try the check user role function put together by AppThemes.
  •  
    "Function Reference/current user can Description Whether the current user has a certain capability."
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). "
Vernon Fowler

Top Five User Roles and Capabilities Plugins for WordPress | Web Hosting Hub Support Ce... - 3 views

  •  
    "We've done a bit of research into the various plugins available in order to compile a list of the top five WordPress plugins for extending and managing WordPress user roles and capabilities."
awqi zar

50 Ultimate Tutorials To Make You A Power Wordpress User - 18 views

  •  
    WordPress is the most used blogging platform around the world. Its the first choice of bloggers because its really easy to use. One more reason I prefer WordPress because it has a huge community of users and whenever you face any problem you can discuss it with the community. There are also various sites available for WordPress tutorials. If you want to be an expert of WordPress then these sites will be really helpful for you. Today we compiled a huge list of ultimate and useful WordPress tutorials that will make you a power WordPress user.
Web Dorado

Essential WP Tools for Better User Engagement | WPJournals - 0 views

  •  
    I guess everyone knows how important user engagement is. It takes a credit for increased pageviews, content consumption, user retention, low bounce rates and many more positive changes on your website.
Luciano Ferrer

WordPress › Quiz Master Next « WordPress Plugins - 2 views

  •  
    "The easiest and most flexible way to add multiple quizzes, tests, and surveys to your website. The easiest and most flexible way to add multiple quizzes, tests, surveys, and contact forms to your website. This plugin allows for unlimited quizzes each with unlimited amount of questions. The plugin allows you to create the quiz, add it to any page using a customized shortcode, allows the user to take the quiz, and then saves the results. You can set up what the user sees after he or she takes the quiz based on the user's score. You can also have the plugin create a certificate for the user as well!"
marshal sandler

Checkmate 2.0: A Free Premium WordPress Theme - 0 views

  •  
    Checkmate 2.0: A Free Premium WordPress Theme The Perfect Building Block for Your Blog Checkmate has been a very popular WordPress theme with thousands of users worldwide. Now it is has been made even better. I've learned a thing or two from the users of Checkmate, listened to the feature requests and I've decided it is time to release Checkmate 2.0. Checkmate 2.0 is built on the original version of Checkmate, but could almost be considered a completely new theme. The interface has gotten a huge and much needed update. The layout is still simple and clean but now is more polished and modern. Customizing the CSS and the look of theme is even better, the entire site was coded with the end user customizing the site in mind.
robinjtech

A Flexible WordPress Plugin For Generating Different Types Of Charts. - 0 views

  •  
    Flexible chart is a wordpress plugin for generating chart in flexible way where user will be able to create their own bar chart, line chart, pie chart, polar area chart, radar chart, doughnut chart. In this wordpress plugin user have flexible options for changing charts or graphs colors etc. It has flexible input system by which user will be able to put their data without any file restriction for generating their charts.
1 - 20 of 256 Next › Last »
Showing 20 items per page