Plugin Directory

Changeset 2859389


Ignore:
Timestamp:
02/03/2023 06:09:23 AM (3 years ago)
Author:
krunal265
Message:

load dashicons for non logged in users and update readme file

Location:
team-member-slider-block/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • team-member-slider-block/trunk/readme.txt

    r2858756 r2859389  
    11=== Team Member Slider Block ===
    22Contributors: krunal265
    3 Tags: slider block, team member, gutenberg block, grid layout
     3Tags: repeater block, slider block, team member, gutenberg block, grid layout
    44Requires at least: 5.9.3
    55Tested up to: 6.1
     
    1313== Description ==
    1414Team Member Slider Block is the best Gutenberg plugin for displaying information about team members. This plugin consists of one Gutenberg block. There are columns and a slider layout included. Layouts can be customized according to your needs.
     15
    1516In addition, it has the following features:
    16 1) Manageable column and slider layout. Both layouts have different settings.
    17 2) There are separate settings for images, member information, and social icons.
    18 3) For each member, you can add more social icons and their URLs.
     171) This is a repeater block. You can add as many single blocks as you need.
     182) Manageable column and slider layout. Both layouts have different settings.
     193) There are separate settings for images, member information, and social icons.
     204) For each member, you can add more social icons and their URLs.
    1921
    2022== Installation ==
  • team-member-slider-block/trunk/team-member-slider-block.php

    r2858756 r2859389  
    2323add_action( 'init', 'tmsb_create_block_team_member_slider_block_block_init' );
    2424
     25/**
     26 * Enqueue files for frontend.
     27 */
    2528add_action(
    2629    'wp_enqueue_scripts',
     
    3639
    3740        wp_enqueue_script( 'tmsb-sliderjs', plugins_url( 'assets/js/slickerslider.js', __FILE__ ), array( 'jquery' ), '1.0.0', true );
     41
     42        wp_enqueue_style( 'dashicons' );
    3843    }
    3944);
     45
     46/**
     47 * Enqueue files for backend.
     48 */
    4049add_action(
    4150    'admin_enqueue_scripts',
Note: See TracChangeset for help on using the changeset viewer.