Tag: api

  • Off Web page search engine optimization plugin (search engine optimization)

    Off Web page search engine optimization plugin (search engine optimization)

    Off Page SEO plugin is a plugin developed to help you get better rankings and get control over your off-page SEO activities! You don’t need to use external service for getting your rankings or writing backlinks to your Excel Sheet any more. From now on, you can simply use your WordPress!

    Lets take a close look at the plugin’s features.

    Rank reporter
    Every 3 days, the script automatically controls your ranking in Google for the specified keywords and URLs. You get a full report in your email box.

    As this is a key functionality of the plugin, we took a good care of it. We have three methods of getting your ranking. From Google results directly, using proxy and if those two pretty much exact methods fails, we are connected to Google Search API. You don’t need to worry about choosing the right method – its automatic!

    Once the automatic rank control is finished, you get a report into your mailbox so you can keep eye on your ranking progress.

    Record & watch backlinks
    Make notes about your backlinks and see their influence on ranking. Have full control over the expenses. Also, make sure your link is not deleted – the plugin check your backlinks every 5 days and lets you know if they are being deleted.

    Get new backlinks
    We are offering opportunities to get a new backlinks that will help your positions in Google.

    Social Share Counter
    The plugin goes through all posts from the post types that you specify and counts how many shares there are on various social sites and keeps this number updated!

    Connect to Google Webmaster Tools API
    See data from Google Webmaster Tools in your WordPress administration! You will get stats for every keyword and page you are getting ranks for.

  • Wiki API Medical doctors – On-line Documentation Supervisor (Utilities)

    Wiki API Medical doctors – On-line Documentation Supervisor (Utilities)

    Wiki API Docs is a documentation manager WordPress plugin. It allows you to create clean, orderly and user-friendly online documentation for anything!

    Wiki API Docs looks like a complete responsive WordPress theme but because it’s a plugin it can be added to any available WordPress theme. That way you can keep using your amazing looking website with your theme of choice and still easily manage your documentation files without ever having to modify anything to keep your documentation good looking and adapt to your current theme style.

    Documentation needs to be clear, searchable and very easy to use and that’s exactly how we created Wiki API Docs. It will save you and your users lots of time! Either way, creating or using your documentation/API.

    five star rating

    tunafish helpdesk

    Want more?

    Wiki API Docs is created to make your life easier! Just like some other very useful time-saving plugins. We made sure Wiki API Docs is compatible with all of them!

    Create Clean Documentation

    Responsive Layout

    Visual Composer and Snipr ready

  • BeDojo – Behance Works WordPress Portfolio Plugin (Social Networking)

    BeDojo – Behance Works WordPress Portfolio Plugin (Social Networking)

    Your Behance portfolio items on your WordPress website

    Yup – you read that right. Let’s say you found an awesome WordPress theme which is simple, has some awesome animations and you want it for your own personal portfolio website. You setup it in minutes, but there’s a problem: the portfolio items. Adding them one more time can consume long hours.

    That made us think how to solve this issue. And the solution is simple – let’s just use the content you already inserted over the years on your Behance profile and include it into your website. Because we know how time consuming is to add all your portfolio’s works on a WordPress website.

    So – just insert your Behance API key to the plugin and you’re all set.

    BeDojo WordPress Plugin Features Overview

    3 Grid Sizes

    You can choose between small, medium and large grid sizes to blend your Behance portfolio submissions perfectly into your WordPress website

    Filters

    We’ve extracted all the created fields attached to your Behance portfolio works so they can be used as portftolio filters on your WordPress website.

    Detailed Item Description

    We don’t just show the Behance project thumbnail and title. The plugin imports into WordPress all the text description and media so you can show off your portfolio projects on your website and not send visitors to Behance.

    Direct access URL

    The plugin generates automatically an URL for each of the imported projects so they can be directly accessed via the browser.

    Shortcode

    Include the portfolio in a WordPress page or post using our custom shortcode which gives you several options, as Grid sizes, Ordering, Creative Fields selection, maximum number of projects shown and filters option.

    Portfolio Management

    You can exclude the projects you think are irelevant for your WordPress website portfolio and remain only with the chosen ones ;) Also you can update selected projects into your WordPress database if you modified something via Behance.

    Behance Performance Block

    You can choose to include this block at the end of the projects and it will show the number of appreciations, comments and views on Behance.

    Advanced Styling

    You have full CSS control so you can style everything – colors, font related attributes, spacings, etc.

    Responsive Grids

    Yup – it’s all mobile-ready.

    Optimized

    Behance API has some limitations over the permitted number of requests per hours. So we had to do our best to optimize all that process so you have a seamless experience while using the plugin. It will show you in real time the number of used requests so you can decide how to use them in the most optimal way.

    Important Note:

    Behance API integration is available only with enabled php CURL. Make sure that your webserver has this option enabled.


    With WP Shots Dojo you can now include your Dribbble shots in your WordPress website.

  • Jobs Plugin for WP (Add-ons)

    Jobs Plugin for WP (Add-ons)

    Turn your blog into a Job Search Engine with WP Job Plugin

    WPJobPlugin is a WordPress Plugin for Indeed API to get all the latest jobs included on your WordPress site. It’s super fast and lightweight and SEO optimized + you can even make money with their Indeed Publisher Program!

    • Create an instant job search functionality to your WordPress site
    • Search-engine Mode or Fixed Niche Job site.
    • WordPress and Location Search.
    • Restrict to fixed Country
    • Sort by date or relevance
    • Search Full-time, Part-time, Contract, Internship, Temporary jobs
    • Content is indexable for search engine (no Javascript)
    • SEO optimized Wordpress titles
    • Plugin settings
    • Superfast & lightweight
    • Easy to use!

    WPJobPlugin Demo sites

    It’s very easy to add job search functionality to your website and can be used for almost any niche.

    Changelog

    v2.0 – December 13, 2015

    • Initial Release
  • Provider Ajax Api (Utilities)

    Provider Ajax Api (Utilities)

    Service AJAX API is easy to use ajax interface for any plugin you have in mind.

    Features includes

    Available API Service:
    • PublicAPI – Which AJAX api that can be serve publicly.
    • ProtectedAPI – Which AJAX api that can only be serve when a user is logged in.
    • AdminAPI – Which AJAX api that can only be accessed by Admin accounts.

    So far this 3 suffice WordPress needs.

    Classes:
    • SVCdb (static) – Query Helper class, which uses wpdb so this is a drop in class.
    • SVCHelper (static) – Some helper functions that will get updated as the library requires it.
    • SVCService (static) – Service API Class
    • SVCSQLConstructor – Used by SVCdb for creating a SQL statements.
    • SVCStore (static) – Common WordPress store functions, this also serves as an example of how to use the SVCdb class. This will also be updated as the library requires it.
    3rd Party:

    JSMin – Used to minify the javascript that is generated by service.

    Folder structure:
    /service
      /docs
      /includes
      /libraries
      /public
      /services
    

    Note: The services/**.php folder is where you will put your services scripts (api) it will auto included every time the plugin is initialised. Although it is not advisable, make it as minimum.

    Usage:

    Requires jQuery and it uses jQuery ajax promise.

    > API.fetch('servertime', ['Y-m-d']).success(function (response) 
          console.log(response);
       ).fail(function(err)  
          console.log(err);
       ); 
    

    More example can be found on plugin documentation or you can view them online here

  • Envato Writer – Market API WordPress Plugin (Add-ons)

    Envato Writer – Market API WordPress Plugin (Add-ons)

    Envato Author – Marketplace API WordPress Plugin is a simple and easy to use plugin for embedding items and authors information from any of Envato Marketplaces into your own WordPress powered websites through use of shortcodes and widgets.

    This comes with 9 Shortcodes, 9 Widgets and 3 WordPress Dashboard Widgets. It helps to display any item/items from any Envato marketplace with all data using Envato Marketplace API. You can use theme in the website sidebars or in pages or in posts.

    It’s automatically adds referral URL on all the URLs, that means you can earn through referral marketing, if you’re author on not, you just need a Envato account.

    It includes 3 WordPress dashboard widget, it displays your envato account balance and other item informations. It also displays the monthly statement and the last 50 sale statistics.

    Features

    • Very simple to install and use.
    • Supports all Envato Marketplaces (currently 8 marketplaces).
    • List marketplace items: popular, new, new from user and random.
    • Display Account Information, Monthly Statement and Last 50 Sale on WordPress admin dashboard.
    • Display Featured Author from any marketplace.
    • Display Featured Item from any marketplace.
    • Display Free Item from any marketplace.
    • Display any marketplace item by specified item ID.
    • Display any marketplace author information by specified username.
    • Generate Referral Links on all the URLs.
    • No coding experience necessary to set it up or use.
    • Ability to choose how many items to display (1 to 29++).
    • All major browser and device supported.
    • Caching of received Envato data for faster response.
    • Requires a cURL enabled hosting to connect to the API

    Shortcodes

    • [wpenvato_user marketplace=”” username=”“]
    • [wpenvato_item item_number=”“]
    • [wpenvato_newitems marketplace=”” categories=”” width=”” height=”” limit=”“]
    • [wpenvato_newitems_random marketplace=”” width=”” height=”” limit=”“]
    • [wpenvato_newitems_user marketplace=”” username=”” width=”” height=”” limit=”“]
    • [wpenvato_popular marketplace=”” width=”” height=”” limit=”“]
    • [wpenvato_featured_item marketplace=”“]
    • [wpenvato_featured_author marketplace=”“]
    • [wpenvato_free_item marketplace=”“]
  • wordpress Envato Affiliate Card (Add-ons)

    wordpress Envato Affiliate Card (Add-ons)

    WP Envato Affiliate Card is a premium add-on of the free plugin WP Plugin Info Card (available in the WordPress repository).
    It lets you display nice cards (3D or flat layout) about Envato products through Envato API data with your affiliate username embedded. Get affiliate cash in the process !

    Demonstration

    WP Envato Affiliate Card Desc

    This plugin supports all Envato products types and markets. If you embed an audio product, it will automatically add an audio player. If the included product has a video preview or is a video, the plugin will automatically add a video player. Audio and video players are based on the native WordPress players (HTML5).
    The plugin uses simple shortcodes with a nice UI (WYSIWYG button included) to let you include a beautiful card in your content + sidebar!

    This plugin is responsive-friendly :

    • the flipping card has a fixed with of 280px
    • the large layout is fully responsive

    How does it work?

    It uses Envato API to fetch product data. All you need to do is provide a valid product ID, and then insert the shortcode in any page to make it work at once!

    This plugin is very light and includes scripts and CSS only if and when required. The shortcode may be added everywhere shortcodes are supported in your theme (content, sidebar widget).

    The plugin also uses WordPress transients to store data returned by the API for 12 hours (720min by default), so your page loading time will not be increased due to too many requests. You may change this cache duration and/or load the API data asynchronously with AJAX.

    The dashboard widget is very easy to set up: you simply add as many products as you want in the admin page and they become visible in your dashboard. Easily monitor all your Envato product from one central location in your admin area!(Fields are added on-the-fly and are sortable via drag-and-drop.)
    Perfect to keep track of your own products!

    As a bonus, the plugin uses the TinyMCE API to improve UI and make inserting shortcodes easier.

    You may provide a list of slugs (comma-separated) in your shortcode slug parameter, WPPIC will randomly choose on item of the list on each page refresh.

    You may easily overload the plugin render. You need to create a new “wppic-templates” folder into your theme folder, then copy the template you want to overload from WP Envato Affiliate Card “wppic-templates” folder.

    You may create your own template file. You need to create a new ”wppic-templates” folder into your theme folder, then copy the template file “wppic-template-plugin-large.php” or “wppic-template-theme-large.php” from WP Envato Affiliate Card ’/wppic-templates’ folder. Rename the file like this “wppic-template-plugin-NEWTEMPLATE.php” or “wppic-template-theme-NEWTEMPLATE.php”, edit it as you go and add your own CSS rules. Finally, call your new template by adding the following parameter in your shortcode: layout=”NEWTEMPLATE”

    Knonw issues

    Some H.264 encoded videos from the Envato market cannot be played in the Firefox browser. This is a known issue and the only current solution is to play them through a Flash player. However because the render layouts are responsive, we can’t load a SWF player as a fallback.

     

    Shortcode parameters

    Please refer to the WP Plugin Info Card plugin page for full documentation.

    • type: envato (default: plugin)
    • slug: envato product IDplugin slug name – Please refer to the plugin/theme URL on wordpress.org to determine its slug: https://wordpress.org/plugins/THE-SLUG/
      custom: value to output : slug, url, name, market, cost, author, avatar, followers, sales, live_preview_url, thumbnail, rating, downloaded, last_updated, audio_url, video_url (default: empty)

    Examples

    [wp-pic type=”envato” slug=”9917232”]

    [wp-pic type=”envato” slug=”9917232” align=”left” scheme=”scheme1” margin=”5px 5px 0 0” layout=”large” ajax=”yes” ]

    [wp-pic type=”envato” slug=”9917232” custom=”name” ] has been sold [wp-pic type=”envato” slug=”9917232” custom=”sales” ] times!

    Languages

    Plugin is fully translatable trought PO & MO files.

    Available languages are:

    – English

    – French

    Installation

    1. Upload and activate the two plugins ‘WP Envato Affiliate Card’ and ‘WP Plugin Info Card’

    2. Click on the “WP Plugin Info” menu

    3. Follow instructions, every option is documented ;-)