Tag: user

  • Entrance-finish Theme Changer for WordPress (Utilities)

    Entrance-finish Theme Changer for WordPress (Utilities)

    Have you ever wondered which theme is more appropriate for your website? You probably hate this, because you have to pick one and drop the others, right? Well, this plugin will solve your dilemma.
    “Front-end Theme Changer” lets your users select the theme they like most from a dropdown (select) menu directly from the front-end.

    screenshot-1
    screenshot-2

    Notes

    • Requires at least PHP 5.3 – most of the hosting companies nowdays run 5.3/5.3+ :)

    Support

    Even though it’s easy to install the plugin, if you face a problem – feel free to contact us. We will be really happy to answer all of your questions and to solve the problem together.

  • Ninja Varieties – WordPress Person Box (Add-ons)

    Ninja Varieties – WordPress Person Box (Add-ons)

    Ninja Forms – WP User Field is an add-on for Ninja Forms which allows you to save the WordPress User who submitted a form.

    Features

    • Enhance any ninja form with user tracking
    • Good for survey / support / content forms
    • Works with any theme / browser
    • Contact me with your feature requests :)

    How it Works

    Ninja Forms – WP User Field adds a new field, to the form editor in Ninja Forms. This field will store the user who submitted that form.

    Usage Instructions

    1. Make sure you have Ninja Forms installed, this plugin requires it.

    2. Install the plugin (WordPress Plugin Installation Instructions)

    3. You now have a new field available to add to your Ninja Forms. Simply create or edit a form and add the field called “WP User” to a form.

    4. A new column will be added to the submissions for that form, which contains the user that submitted that entry. You can change the title of this column by setting the “Label” property for that field.

  • Clientside – WordPress Admin Theme (Interface Parts)

    Clientside – WordPress Admin Theme (Interface Parts)

    Clientside is a meticulous combination of a redesigned admin theme and a set of settings and tools that help customize and unclutter the WordPress interface for yourself or your clients.

    View full presentation

  • ZER0 – HTML5 Digital Inventive Company wordpress Theme (Inventive)

    ZER0 – HTML5 Digital Inventive Company wordpress Theme (Inventive)

    ZER0 – HTML5 digital creative agency template build and designed on Bootstrap 3.x Framework. Clean and extremly modern wordpress theme make your agency look fancy. ZER0 also has an amazing portfolio features and WooCommerce ready.As always responsive and retina ready.

    Image

    Key Features

    • WooCommerce Support
    • Responsive Design
    • Demo Content
    • Drag And Drop Page Builder
    • Powerfull Theme Options
    • 2 Unique Blog Styles (Masonry and Large)
    • 3 Unique Portfolio Styles (Masonry, Large and Samsung Grid)
    • 2 Unique Footers
    • 7 Header Styles
    • Unlimited Colors
    • Slider Revolution
    • Fontawesome
    • Contact Form 7 Support
    • Unlimited Featured Image
    • Newsletter Support
    • nstructional Videos
    • Top Notch Premium Support
  • Closify Press (Media)

    Closify Press (Media)

    (2 in 1) Plugin : Powerful image uploader + Intelligent image optimizer

    Closify is a wordpress plugin, that has a comperhensive image storing and processing features, it comprises of frontend & backend management panels where you can leverage them to create unlimited number of image uploaders, and use its configuration, shortcodes, special wordpress functions easily. Administrator can place multiple multi/single image uploaders in whatever locations inside of his website. The plugin is totally responsive, rich, and intelligent with flexible and intuitive backend control panel.

  • WordPress Person Bookmarks (Standalone model) (Utilities)

    WordPress Person Bookmarks (Standalone model) (Utilities)

    This is a standalone WordPress plugin for the UserPro User Bookmarks addon here. It has the same features of the bookmarks addon, and does not require UserPro to be installed – So It can be used standalone on any WordPress site!

    User Bookmarks plugin will allow users to bookmark any content they want, posts, forum topics, custom posts, and also manage their bookmarks into collections. The plugin offers a simple way to show the bookmarks and bookmark widget and can be integrated into any theme.

    Use your account or login with demo account (username: test password: test) to add/manage bookmarks and collections. If you are looking for some dummy posts to bookmark, you can try all forum topics or example post. (you can choose which post types can be bookmarked)

    • Works with any custom post type!
    • Ajax-powered, very fast execution!
    • Show the bookmark widget via dynamic sidebar widget
    • Show the bookmark widget via automatic mode below post content (You can customize which post types are allowed and exclude certain posts)
    • Show the bookmark widget via shortcode [bookmark]
    • Users can manage their collections and view bookmarks with a simple shortcode: [collections]
    • Shortcodes/PHP methods to display the bookmark widget/collections
    • Comes with its own API for advanced use!

    Users can favorite or bookmark posts, products, forum topics as well as any custom post types!

    A Sidebar widget to bookmark any content, add new collection, and remove a bookmarked post!

    You can enable auto-embedding of Bookmark widget on all post types you WANT via admin settings!

    A simple shortcode [collections] that can be embedded anywhere to allow user to manage his bookmarks and view/access them easily via ajax.

    Admin settings to enable the bookmarking on these post types you want only, and exclude specific posts from being bookmarked too, plus many other customization options to tweak the text, and so on.

    Allow entire collections to be removed, or give user the choice to keep bookmarks and remove the collection!

    You can embed the bookmark widget via shortcode (in addition sidebar widget and automatic embedding):

    [bookmark]

    Or via php API:

    global $wpb;
    echo $wpb->bookmark();

    So simple. And you can also embed the collections via shortcode:

    [collections]

    or via php API

    global $wpb;
    echo $wpb->bookmarks();

    There are a bunch of options that can be customized via shortcode, the same settings that are available in tool settings are customizable via shortcode, so you can rename bookmark to favorite or translate it to your language.

    This tool is fully localized too!

  • Consumer Downloads (Utilities)

    Consumer Downloads (Utilities)

    Usage

    • Upload the plugin
    • Enable the plugin.
    • In the WordPress menu you now will see “User Downloads” added. If you go to “User Downloads” => “Settings” you can set your encryption keys.
    • Than you can create User Downloads wich goes as follows:
      • Create a User Download.
      • Enter a title
      • Enter some content
      • Select to wich user the to be uploaded files should be restricted
      • Upload files for this specific user
      • Publish the User Download
    • I created a function to get all files that are belongs to the logged in user. The functions is get_user_specific_downloads_as_array. With this you can do anything you want to. Let me give you an example of how to list all files of one user per User Download (per post):
    •       $userFiles = get_user_specific_downloads_as_array();
            foreach($userFiles as $userdownload)
            
                echo '<h2>'.$userdownload['title'].'</h2>';
                echo $userdownload['content'];
                echo '<ul>';
                foreach($userdownload['files'] as $file)
                
                    echo '<li>';
      
                    $url = explode('/',$file['user_download_file']['url']);
                    $encryptedurl = user_specific_downloads_encrypt_decrypt('encrypt',$url[8]);
                    $encryptedurl = rawurlencode($encryptedurl);
      
                    echo .= '<a href="'.plugins_url().'/user-downloads/download.php?file='.$encryptedurl.'">'.$file['user_download_file']['title'].'</a><br />';
                    echo .= '<em>'.$file['file']['description'].'</em>';
      
                    echo '</li>';
                
                echo '</ul>';
      
            
    • If you have any questions (technical or not) I will be able to help you.