
A plugin to add custom post type ( Events, Courses, Classes, Excursions, Team, Testimonial, Affiliation ) and it’s required meta fields for educational sites. This plugin is dedicated for educational themes.
TP Eduacation allows you to like post from frontend and view the no of likes for that particular post.
TP Education plugin is highly flexible and customizable. This Plugin provides hooks that makes very easy for you to customize the output format. You just need to update design with css.
* Create a folder named "tp-education" and do all the overwrites inside the folder as instructed below. * Archive Pages - you can overwrite all archive pages for post types available in this plugin. ie: tp-archive-class.php * Search Page - you can overwrite search page for post types available in this plugin by tp-archive-search.php * Single Pages - you can overwrite all single pages for post types available in this plugin. ie: tp-single-class.php
= Defaults Atts :- =
* category = ”,
* no_of_posts = 2,
* post_ids = ”, ( should be seperated by ‘,’. ie: 15, 27 )
* column = 2 ( max num value 4 )
[TP_EDUCATION_CLASS] OR [TP_EDUCATION_CLASS category="cat-slug" no_of_posts="2" post_ids="217, 115" column="2"]
[TP_EDUCATION_EVENT] OR [TP_EDUCATION_EVENT category="cat-slug" no_of_posts="2" post_ids="217, 115" column="2"]
[TP_EDUCATION_COURSE] OR [TP_EDUCATION_COURSE category="cat-slug" no_of_posts="2" post_ids="217, 115" column="2"]
[TP_EDUCATION_TEAM] OR [TP_EDUCATION_TEAM category="cat-slug" no_of_posts="2" post_ids="217, 115" column="2"]
[TP_EDUCATION_EXCURSION] OR [TP_EDUCATION_EXCURSION category="cat-slug" no_of_posts="2" post_ids="217, 115" column="2"]
[TP_EDUCATION_AFFILIATION] OR [TP_EDUCATION_AFFILIATION category="cat-slug" no_of_posts="2" post_ids="217, 115" column="2"]
[TP_EDUCATION_TESTIMONIAL] OR [TP_EDUCATION_TESTIMONIAL no_of_posts="2" post_ids="217, 115" column="2"]
[TP_EDUCATION_SEARCH_TAB]<h3>Functions to Call Meta Values</h3>
is_tp_education();
tp_event_date( $post_id = '' ); // Event Date tp_event_start_time( $post_id = '' ); // Event Start Time tp_event_end_time( $post_id = '' ); // Event End Time tp_event_location( $post_id = '' ); // Event Location
tp_class_cost( $post_id = '' ); // Class Cost tp_class_period( $post_id = '' ); // Class Period tp_class_size( $post_id = '' ); // Class Size tp_class_age_group( $post_id = '' ); // Class Age Group
tp_excursion_start_date( $post_id = '' ); // Excursion Start Date tp_excursion_end_date( $post_id = '' ); // Excursion End Date tp_excursion_location( $post_id = '' ); // Excursion Location
tp_team_designation( $post_id = '' ); // Team Designation tp_team_email( $post_id = '' ); // Team Email tp_team_phone( $post_id = '' ); // Team Phone tp_team_skype( $post_id = '' ); // Team Skype tp_team_website( $post_id = '' ); // Team Website tp_team_courses( $post_id = '' ); // Team Courses tp_team_social( $post_id = '' ); // Team Social
tp_testimonial_rating( $post_id = '' ); // Testimonail Rating tp_testimonial_designation( $post_id = '' ); // Testimonail Designation
tp_affiliation_link( $post_id = '' ); // Affiliation Link
tp_course_type( $post_id = '' ); // Course Type tp_course_duration( $post_id = '' ); // Course Duration tp_course_price( $post_id = '' ); // Course Price tp_course_students( $post_id = '' ); // Course no of Students tp_course_language( $post_id = '' ); // Course Language tp_course_assessment( $post_id = '' ); // Course assessment tp_course_skills( $post_id = '' ); // Course skills tp_course_professor( $post_id = '' ); // Course Professor tp_course_counselors( $post_id = '' ); // Course Counselors
tp_education_get_terms( $taxonomy = '', $post_id = '' ); // Get Terms with link
tp_education_like_button( $post_id = '' ); // Like Button ( this function only returns output. )
tp_education_posted_on(); // Post Meta<h3>Functions to Return Meta Values</h3>
get_tp_event_date( $post_id = '' ); // Event Date get_tp_event_start_time( $post_id = '' ); // Event Start Time get_tp_event_end_time( $post_id = '' ); // Event End Time get_tp_event_location( $post_id = '' ); // Event Location
get_tp_class_cost( $post_id = '' ); // Class Cost get_tp_class_period( $post_id = '' ); // Class Period get_tp_class_size( $post_id = '' ); // Class Size get_tp_class_age_group( $post_id = '' ); // Class Age Group
get_tp_excursion_start_date( $post_id = '' ); // Excursion Start Date get_tp_excursion_end_date( $post_id = '' ); // Excursion End Date get_tp_excursion_location( $post_id = '' ); // Excursion Location
get_tp_team_designation( $post_id = '' ); // Team Designation get_tp_team_email( $post_id = '' ); // Team Email get_tp_team_phone( $post_id = '' ); // Team Phone get_tp_team_skype( $post_id = '' ); // Team Skype get_tp_team_website( $post_id = '' ); // Team Website
get_tp_testimonial_designation( $post_id = '' ); // Testimonail Designation
get_tp_affiliation_link( $post_id = '' ); // Affiliation Link
get_tp_course_type( $post_id = '' ); // Course Type get_tp_course_duration( $post_id = '' ); // Course Duration get_tp_course_price( $post_id = '' ); // Course Price get_tp_course_students( $post_id = '' ); // Course no of Students get_tp_course_language( $post_id = '' ); // Course Language get_tp_course_assessment( $post_id = '' ); // Course assessment get_tp_course_skills( $post_id = '' ); // Course skills<h3>Hooks</h3>
do_action( 'tp_event_date_action', $post_id = '' ); // Event Date do_action( 'tp_event_start_time_action', $post_id = '' ); // Event Start Time do_action( 'tp_event_end_time_action', $post_id = '' ); // Event End Time do_action( 'tp_event_location_action', $post_id = '' ); // Event Location
do_action( 'tp_class_cost_action', $post_id = '' ); // Class Cost do_action( 'tp_class_period_action', $post_id = '' ); // Class Period do_action( 'tp_class_size_action', $post_id = '' ); // Class Size do_action( 'tp_class_age_group_action', $post_id = '' ); // Class Age Group
do_action( 'tp_excursion_start_date_action', $post_id = '' ); // Excursion Start Date do_action( 'tp_excursion_end_date_action', $post_id = '' ); // Excursion End Date do_action( 'tp_excursion_location_action', $post_id = '' ); // Excursion Location
do_action( 'tp_team_designation_action', $post_id = '' ); // Team Designation do_action( 'tp_team_email_action', $post_id = '' ); // Team Email do_action( 'tp_team_phone_action', $post_id = '' ); // Team Phone do_action( 'tp_team_skype_action', $post_id = '' ); // Team Skype do_action( 'tp_team_website_action', $post_id = '' ); // Team Website do_action( 'tp_team_courses_action', $post_id = '' ); // Team Courses do_action( 'tp_team_social_action', $post_id = '' ); // Team Social Links
do_action( 'tp_testimonial_rating_action', $post_id = '' ); // Testimonial Rating do_action( 'tp_testimonial_designation_action', $post_id = '' ); // Testimonial Designation do_action( 'tp_testimonial_social_action', $post_id = '' ); // Testimonial Social Links
do_action( 'tp_course_type_action', $post_id = '' ); // Course Type do_action( 'tp_course_duration_action', $post_id = '' ); // Course Duration do_action( 'tp_course_price_action', $post_id = '' ); // Course Price do_action( 'tp_course_students_action', $post_id = '' ); // Course no of Students do_action( 'tp_course_language_action', $post_id = '' ); // Course Language do_action( 'tp_course_assessment_action', $post_id = '' ); // Course Assessment do_action( 'tp_course_skills_action', $post_id = '' ); // Course Skills do_action( 'tp_course_professor_action', $post_id = '' ); // Course Professor do_action( 'tp_course_counselors_action', $post_id = '' ); // Course Counselors
do_action( 'tp_affiliation_link_action', $post_id = '' ); // Affiliation Link
do_action( 'tp_education_posted_on_action' ); // Post Meta
apply_filters( 'tp_education_is_sidebar_enable_filter', true ); add_filter( 'tp_education_is_sidebar_enable_filter', 'custom_function' ); // Use your custom sidebar enable condition function
do_action( 'tp_education_pagination_action' ); add_action( 'tp_education_pagination_action', 'custom_function' ); //add your custom pagination function
do_action( 'tp_education_post_pagination_action' ); add_action( 'tp_education_post_pagination_action', 'custom_function' ); //add your custom post pagination function<h3>Files</h3> Font Awesome 4.2.0 by @davegandy License: http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) Source: http://fontawesome.io jQuery UI - v1.12.0 License: https://jquery.org/license/ ( Copyright jQuery Foundation and other contributors; Licensed MIT ) Source: http://jqueryui.com jquery-timepicker v1.11.5 by Jon Thornton License: https://github.com/jonthornton/jquery-timepicker MIT License © 2014 source: http://jonthornton.github.com/jquery-timepicker/
Starting from $0 per month.
Rating
Reviewers
3 reviews
Tags
Developed By
themepalace
Quick & Easy
Common Ninja has a large selection of powerful Wordpress plugins that are easy to use, fully customizable, mobile-friendly and rich with features — so be sure to check them out!
Testimonial plugins for Wordpress
Galleries plugins for Wordpress
SEO plugins for Wordpress
Contact Form plugins for Wordpress
Forms plugins for Wordpress
Social Feeds plugins for Wordpress
Social Sharing plugins for Wordpress
Events Calendar plugins for Wordpress
Sliders plugins for Wordpress
Analytics plugins for Wordpress
Reviews plugins for Wordpress
Comments plugins for Wordpress
Portfolio plugins for Wordpress
Maps plugins for Wordpress
Security plugins for Wordpress
Translation plugins for Wordpress
Ads plugins for Wordpress
Video Player plugins for Wordpress
Music Player plugins for Wordpress
Backup plugins for Wordpress
Privacy plugins for Wordpress
Optimize plugins for Wordpress
Chat plugins for Wordpress
Countdown plugins for Wordpress
Email Marketing plugins for Wordpress
Tabs plugins for Wordpress
Membership plugins for Wordpress
popup plugins for Wordpress
SiteMap plugins for Wordpress
Payment plugins for Wordpress
Coming Soon plugins for Wordpress
Ecommerce plugins for Wordpress
Customer Support plugins for Wordpress
Inventory plugins for Wordpress
Video Player plugins for Wordpress
Testimonials plugins for Wordpress
Tabs plugins for Wordpress
Social Sharing plugins for Wordpress
Social Feeds plugins for Wordpress
Slider plugins for Wordpress
Reviews plugins for Wordpress
Portfolio plugins for Wordpress
Membership plugins for Wordpress
Forms plugins for Wordpress
Events Calendar plugins for Wordpress
Contact plugins for Wordpress
Comments plugins for Wordpress
Analytics plugins for Wordpress
Common Ninja Apps
Browse our extensive collection of compatible plugins, and easily embed them on any website, blog, online store, e-commerce platform, or site builder.
Use image hover effects to add animations, highlight key visuals, and keep visitors engaged with dynamic image reveals.
Show Google Play reviews for your Android app to build trust, strengthen credibility, and help visitors make confident download decisions.
Present dishes with restaurant menu flip cards that highlight key details, help visitors explore options easily, and support confident ordering decisions.
Use a sticky video that stays visible while users scroll to keep content in view, increase watch time, and boost engagement.
Add interactive two-sided cards with flip effects to present front and back content in a compact, engaging format.
Offer customers a trusted way to pay using PayPal through a PayPal Button that reduces checkout friction and supports higher sales.
Use a Lottie player to embed lightweight JSON animations that improve visual design, keep pages fast, and create a smoother user experience.
Use an image magnifier to let visitors zoom in on photos, view fine details clearly, and enjoy a more accessible and informative visual experience.
Use an order form to let customers submit product orders, save entries, receive notifications, and collect payments through PayPal or Stripe for a smoother buying experience.
Transform PDFs into interactive flipbooks with a PDF flipbook widget that improves reading and keeps visitors engaged.
Add WhatsApp Chat to your site to communicate with visitors, deliver instant support, and create a smoother, more trustworthy user experience.
Create an interactive glossary that displays clear definitions, images, and search options to help visitors learn terms quickly and navigate complex topics with ease.
More plugins
The Common Ninja Search Engine platform helps website builders find the best site widgets, apps, plugins, tools, add-ons, and extensions! Compatible with all major website building platforms - big or small - and updated regularly, our Search Engine tool provides you with the business tools your site needs!
