Tag: class

  • Health time table – Weekly timetable to your health workout routines (Zumba, Physique Assault, Crossfit…) (Calendars)

    Health time table – Weekly timetable to your health workout routines (Zumba, Physique Assault, Crossfit…) (Calendars)

    An easy to use schedule for your fitness classes.
    Create weekly timetables with major workouts as Les Mills body Attack, Pump, Grit, Crossfit and zumba

    – Easy to use

    tired to upload jpg scans of your schedules who doesn’t fit well on small screens ?

    With Fitness schedule create beautiful and customized schedules for your WordPress website and display them wherever you want with a simple shortcode
    Works with every themes and page builders.

    – Natively responsive

    Schedules are natively responsive and will display in an elegant way which fits any screens: Desktop, tablet and smartphone.

    – Customize

    Customize the colors and sizes, days of the week and start/finish hours with ease.
    Directly see the changes with the live preview.
    Developers can also customize CSS.

    – Add your own workout and coachs

    Fitness Schedule comes with 13 majors workouts classes but you can add your own.
    Also add your coachs and assign them to workouts.

    – with Performances in mind

    The plugin is very lightweight and only loads the minimum css/js when needed.

  • PHP Counter – social networks lovers/followers counter plugin (Add-ons)

    Social Counter – PHP Plugin grabs the latest counts of your Fans/Followers etc. from your favorite social networks and then displays them on your website .

    Include PHP Class File

    
    require './socialCounter.php';
    
    

    Run Class

    
    $SocialCounter = new SocialCounter();
    
    

    Run Function

    See example to get social network count

    
    // change 'get_facebook()' with your function name from list of functions
    
    echo $SocialCounter->get_facebook();
    
    

    List Of Functions

    1. get_facebook();
    2. get_twitter();
    3. get_google();
    4. get_instagram();
    5. get_youtube();
    6. get_vimeo();
    7. get_pinterest();
    8. get_dribbble();
    9. get_behance();
    10. get_vk();
    11. get_soundcloud();
    12. get_github();
  • Faculty Administration Gadget Plus (Challenge Administration Instruments)

    Faculty Administration Gadget Plus (Challenge Administration Instruments)

    Login Information

    Email Password Type
    admin@w3developer.org 1234 Admin
    teacher@w3developer.org 1234 Teacher
    student@w3developer.org 1234 Student
    parent@w3developer.org 1234 Parent

    Features of School Management System Plus

    Integrates and facilitates 4 types of user accounts

    Administrator

    • Manage students class/group wise
    • Add / edit / delete student
    • Add / edit / delete student final marks
    • View profile of students
    • Manage teacher profile
    • Add / edit / delete teacher information
    • Manage parent according to student class wise
    • Create / edit / delete sections / group for students
    • Subjects can be defined separately according to each classes
    • Manage class routine
    • Manage staff salary
    • Create / edit / delete class routine schedule on 7days a week
    • Create / edit / delete holidays and show them on calender
    • Manage payment for student
    • Create / edit / delete parents
    • Create / edit / delete human resources
    • Create / edit / delete salary for staff
    • Create / edit / delete invoice listing
    • View invoice and print them
    • Manage noticeboard of school
    • Create / edit / delete notices according to date
    • Notices are visible in calendar in dashboard
    • Create invoices to all students in his school that learn some subject if that subject have fee
    • Edit system settings
    • Add staff attendance
    • Import list of his teachers
    • Import list of his students
    • Import list of subjects for directions
    • Add transfer certificate for student
    • Manage own profile
    • Access account from anywhere, by any device like desktop, laptop, smart phone and tablet

    Teacher

    • Manage students class/group wise
    • Add / edit / delete diaries
    • View profile of students
    • View mark sheet of student
    • View teacher profile
    • Manage exam listing
    • Manage marks (edit/ update) and attendance,class & student wise
    • View class routine
    • Add / edit / delete exams for subject
    • Attendance students for exam
    • View library and book status
    • View / edit noticeboard or school events
    • Creating online exams and see answers and marks for students
    • Manage own profile
    • Access account from anywhere, by any device like desktop, laptop, smart phone and tablet

    Student

    • View own class subjects
    • View own marks and attendances
    • View class routine
    • View invoice and payment list
    • View library and book status
    • View noticeboard and school events in calendar
    • View own certificate
    • Manage own profile
    • View own student card
    • Access account from anywhere, by any device like desktop, laptop, smart phone and tablet

    Parent

    • View own children marks and attendances and other comments from teacher
    • View own children class routine
    • View own children invoice and payment list
    • View noticeboard and school events in calendar
    • Manage own profile
    • Access account from anywhere, by any device like desktop, laptop, smart phone and tablet
  • SQL Helper (Database Abstractions)

    SQL Helper (Database Abstractions)


    What is SQL Helper?

    I’m sharing this with the world because we need another way to access data – don’t you think? Truthfully – I wanted to see if I could flex the C# stuff and run up data access with a single dll and signle line of functions.

    Features

    • Fetch data with signle line of functions
    • Fetch data with custome column’s name
    • Fetch data with sorting
    • Fetch data with diffrent type of joins
    • Fetch data with paging
    • SQL error handling
    • Full dll source code – (You can customize as your own way)
    • Development time saving… :)

    Demo Code

    • Select All Rows With All function

      dTable.All("TableName");
    • Fetch data with Select function

      dTable.Select("TableName");
      dTable.Select("TableName", "Columns");
      dTable.Select("TableName", "Columns", "Where");
      dTable.Select("TableName", "Columns", "Sort", "SortType");
      dTable.Select("TableName", "Columns", "Where", "Sort", "SortType");
      

      Select function is very usefull and it has five overload methods.
      All parameters description is above this function.

    • Fetch data with Where function

      dTable.Where("TableName", "Where");
      dTable.Where("TableName", "Where", "Columns");
      dTable.Where("TableName", "Where", "Columns", "Sort", "SortType");
      
    • Fetch data with OrderBy function

      dTable.OrderBy("TableName", "Sort", "SortType");
      dTable.OrderBy("TableName", "Sort", "SortType", "Columns");
      dTable.OrderBy("TableName", "Sort", "SortType", "Columns", "Where");
      
    • Fetch data with Paged function

      dTable.Paged("TableName", "PageIndex", "PageSize");
      dTable.Paged("TableName", "PageIndex", "PageSize", "Columns");
      dTable.Paged("TableName", "PageIndex", "PageSize", "Columns", , "Where");
      dTable.Paged("TableName", "PageIndex", "PageSize", "Columns", , "Where", "Sort", "SortType");
      

      You can fetch data with paging and you paging result will return with MyResult class.
      PageIndex you require to pass your current page index. which you require to show in list.
      PageSize pass your current page size.

    Support

    Once again, As I said at the beginning, I’d be glad to help you if you have any questions relating to this code.
    I’ll do my best to assist. If you have a more general question relating to the code on CodeCanyon,
    you might contact me at here. Thanks so much!.

    For new features:

    Though we will never discourage users from developing solutions that solve their needs,
    the goals of the SQL Helper are very focused. If you are looking to get new features merged back into the SQL Helper DLL,
    we highly encourage you to contact me at ajmerainfo@gmail.com or write
    comment on my CodeCanyon this product page.

    Thanks.

    hit counters
    hit counter

  • Dance WordPress Theme – Pirouette Studio (Miscellaneous)

    Dance WordPress Theme – Pirouette Studio (Miscellaneous)

    Dance WordPress Theme












    Pirouette is a premium theme for Dance Studios. Its unique features and functionalities make it the ideal solution for websites dedicated to dancing schools or sport businesses, fitness center, gym, yoga studio, martial arts dojo and other similar activities. It is suited for any type of dance club, with classes for ballet, latino, salsa, tango, contempo, jazz, hip-hop, street dance, tap and others.

    Dance WordPress Theme Pirouette

    Pirouette is designed for visually impressive websites, with large sliders and images, stunning carousels and generous footers. We’ve tailored the theme to a dance academy needs, so you will find custom functionalities that will help you build a gorgeous website in no-time.

    Pirouette comes bundled with several premium plugins included for free:

    • Visual Composer – The most popular WP content building plugin (You save $34).
    • Slider Revolution – The perfect tool to create stunning sliders ( You save $19).
    • Events Schedule – A smart plugin that displays schedules and timetables in style (You save $29).

    The theme includes the xtender plugin, our own powerful tool designed to improve our clients’ WordPress experience. Xtender plugin brings features like:

    • ⁃ Custom Visual Composer elements
    • ⁃ An extended Individual Page Settings options panel
    • ⁃ Sidebars generator
    • ⁃ Custom shortcodes for icons and buttons
    • ⁃ Custom Widgets
    • ⁃ Custom options for Footers

    Powerful Customizer

    Pirouette improves standard WP options with an extended Customizer that allows you to tweak everything to your needs.

    Demo content included

    You can get a head start by building directly on our demo content, a framework with ready to use pages and posts, menus, widgets and other elements. We include demo content also for Revolution Slider and Events Schedule plugins. Recreating our demo should be a breeze.

    Compatible with any 4-corners display

    The theme is fully responsible and retina ready. Your website will look great on any screen size. Plus, if you want to go the extra mile, we added several options to customize how and which elements will be displayed, depending on screen size.

    Quick and easy setup

    You will have the theme, along with the demo content, installed and ready to use in minutes. The included plugins are bundled and you just follow the recommended plugins auto-install.

    Frequent updates with auto-update

    We always keep themes updated. Our products are in great shape even after several years and we love to hear clients’ feedback, so we can add new features. Pirouette includes an easy auto-update function, so you know you are running the latest version.

    Pirouette comes with dozens of features including:

    • ⁃ Real-time Customizer
    • ⁃ Powerful Individual Page Settings
    • ⁃ Unlimited levels large menus
    • ⁃ Custom footer menu
    • ⁃ Extensive header and background customizations
    • ⁃ Extensive Page Heading options
    • ⁃ Fully adjustable layout
    • ⁃ Multi-language support with WPML
    • ⁃ Unlimited colors
    • ⁃ Font Awesome and Themify icons included
    • ⁃ Smart and elegant buttons
    • ⁃ Advanced typography options
    • ⁃ SEO friendly
    • ⁃ Unlimited custom sidebars
    • ⁃ Clean code
    • ⁃ Custom carousel elements
    • ⁃ Extensive documentation
    • ⁃ Optimized for speed
    • ⁃ Smart search functionality
    • ⁃ Social media sharing options

    Please note: The demo content does not include videos and images. The WPML plugins is not included.

  • Timetable WordPress Plugin – Weekly Type Time table (Calendars)

    Timetable WordPress Plugin – Weekly Type Time table (Calendars)

    Weekly Class Schedule – Timetable WordPress Plugin

    Weekly Class Schedule is a simple but versatile WordPress plugin, for an elegant display of your classes or events. You can choose one of the five timetable styles, each with different design and features.

    Build your schedule in minutes, with basic WordPress knowledge, and add it in your page with our custom Visual Composer element or through an auto-generated simple shortcode.

    The Weekly Tabs or the Large List styles are a great solution for a Dance Studio, Fitness or Sports Center, while the Compact List style works better for Conferences, Speakers, Workshops or Seminars. For schedules with the same classes every week, like that of a School, College, Kindergarten or University, the Weekly Schedule style gives you the perfect look. It’s suited also for Medical Centers, Beauty Parlours and other professionals who need to display the working hours. The Plain List style is our timetable solution with rich visuals, designed for a display of important events. Music Festivals, Sports Arenas, a Stadium or an Exhibition Center can take advantage of this schedule style to easily promote their events.

    Because we have several different timetable styles, Weekly Class Schedule is an extremely versatile plugin, that can be used by a lot of different businesses. Filling the schedule with classes or events is quick and easy, similar with creating WordPress posts.

    Easy Schedule Builder

    Our builder is designed for basic WP users, you can set everything up with a few clicks. The schedule style, classes to be displayed, filters, labels and messages, colors and all other options are intuitive and easy to customize. Placing it in the page is just as easy.

    Unlimited Classes

    You can add as many classes as you want to your schedule and use the powerful options to save time. Adding call-to-action buttons, canceling events or setting them to appear automatically every week can be done in seconds.

    Elegant Pop-up Window

    A schedule should display only the important info, but you might have a lot of other useful details for your visitors. That’s why, each class accepts individual text and images, that can be displayed in a modal pop-up window.

    Assign Class Types, Locations and Instructors

    Visitors will be able to see right away what they are looking for, if you assign categories to your classes. Assigning Types, Locations and Instructors makes it easy to filter classes and displays important info in the schedule.

    Advanced Filters

    Our plugin is ready for schedules with a lot of classes, therefore powerful filters are mandatory. You can allow various filters, like Type, Location, Instructor, Day or Time of the Day and you can get the perfect design by placing them left, right or center.

    Call-to-action Buttons

    You can convince visitors to interact right away with your offer, by placing a custom call-to-action button for each class. The button can add the class to iCal calendars, open the mailing function or send to an internal or external link.

    Weekly Class Schedule Features List

    • Easy Schedule Builder for basic WP users
    • 5 unique timetable styles that can be changed with one click
    • 100% Responsive, ready for any four corners device
    • Easy VC integration with a custom Visual Composer element
    • Build unlimited schedules, each with different content
    • Create unlimited classes and events just like WP posts
    • Set classes to appear every week automatically
    • Assign Class Types, Locations and Instructors for each class
    • Add your own labels and custom messages
    • Easy to change colors for text and special elements
    • Elegant pop-up modal window for text and images for each class
    • Show a schedule with all your events, the next weeks or just a few days
    • Powerful filters that work fast and look great with any schedule style
    • You can hide content, filters, labels and other info
    • Five filter categories: Type, Location, Instructor, Day or Time of the Day
    • Place filters left, right or center, use checkboxes or switchers
    • Display canceled events, marked visible in the schedule
    • Featured image displayed in the Plain List schedule and in the pop-up box
    • Call-to-action button in the Plain List and Weekly Tabs schedule style
    • Visitors can add the class directly in their iCal calendar with one click
    • Add you email address to the button so visitors can mail you for reservation
    • Send to URL with the event’s button or even with Type, Location or Instructor
    • Make classes as short as 10 minutes or as long as 6 hours
    • Easy date selection for your classes with a WP calendar
    • You can add pop-up modal windows also for Type, Location or Instructor
    • Choose the first day of the timetable from your WP settings
    • Extended documentation with screenshots and complete instructions

    IMPORTANT: Please note that images are not included. The Live Preview demo has been created with Visual Composer and our own WordPress theme, Hotel Leisure.

  • AD Type Software for WordPress (Utilities)

    AD Type Software for WordPress (Utilities)

    4721 icons + 657 GFonts + unlimited Styles and Classes in 1 CLICK!

    Main Features

    Add Icon (1-click shortcode generator)

    Add Style (1-click shortcode generator)

    Add Class (1-click shortcode generator)

    Custom Classes (css propeties generator like the professional code editor softwares)

    WordPress 3.8 – 3.7 – 3.6 Ready

    Retina Ready

    Browser Compatibility

    Amazing Support

    Specific Features

    ADD ICON

    • 4721 Icons (15 Sets)!
    • Icon Color
    • Icon Size
    • BG Color
    • Icon Spin
    • Over Color
    • Over Opacity
    • Over BG Color
    • Over Spin
    • URL
    • URL Target

    ADD STYLE

    • 657 Google Fonts!
    • Font Size
    • Font Color
    • Font Weight
    • Font Style
    • Line Height
    • Text Align
    • Text Direction
    • Text Animations!

    ADD CLASS

    • Unlimited custom .Classes
    • 100+ CSS Attributes
    • 30+ HTML Tags
    • Color Picker
    • Visual Class Tester
    • Full HTML Insert
    • Direct CLASS Insert
    • CSS Generator like code editors

    Credits