Plugin Directory

Changeset 2638540


Ignore:
Timestamp:
12/02/2021 12:18:26 PM (4 years ago)
Author:
annurtheme
Message:

Addd Footer Thanks widget

Location:
janeman-core
Files:
7 added
3 edited

Legend:

Unmodified
Added
Removed
  • janeman-core/trunk/assets/css/style.css

    r2638360 r2638540  
    10151015  }
    10161016}
     1017
     1018/*site-footer*/
     1019.site-footer-thanks {
     1020    text-align: center;
     1021}
     1022.site-footer-thanks h2 {
     1023  font-family: "Great Vibes", cursive;
     1024  font-size: 67px;
     1025  color: #fff;
     1026  margin: 0 0 0.3em;
     1027  padding: 0 250px;
     1028  text-transform: capitalize;
     1029  letter-spacing: 5px;
     1030}
     1031
     1032@media (max-width: 1199px) {
     1033  .site-footer-thanks h2 {
     1034    font-size: 55px;
     1035    padding: 0 200px;
     1036  }
     1037}
     1038
     1039@media (max-width: 991px) {
     1040  .site-footer-thanks h2 {
     1041    font-size: 45px;
     1042    padding: 0;
     1043  }
     1044}
     1045
     1046@media (max-width: 767px) {
     1047  .site-footer-thanks h2 {
     1048    font-size: 35px;
     1049    letter-spacing: 2px;
     1050  }
     1051}
     1052
     1053.site-footer-thanks h2 + span {
     1054    font-size: 18px;
     1055    color: #fff;
     1056}
     1057
     1058@media (max-width: 767px) {
     1059  .site-footer-thanks h2 + span {
     1060    font-size: 15px;
     1061  }
     1062}
     1063
  • janeman-core/trunk/janeman-core.php

    r2638360 r2638540  
    33Plugin Name: Janeman Core
    44Plugin URI: https://annurtheme.com/plugins/janemancore
    5 Description: A simple and nice janeman theme core plugin for elementor Widget. It's help you to add section drag and drop. You can change form style using this widget.
    6 Version: 1.0.0
     5Description: A simple and nice janeman theme core plugin for elementor Widget. It's help you to add section drag and drop. You can change section style using this widget.
     6Version: 1.0.1
    77Author: annurtheme
    88Author URI: https://annurtheme.com
     
    2020// Plugin URL
    2121define( 'JANEMANCORE_PLUGIN_URL', plugins_url( '/', __FILE__ ) );
     22
     23// Plugin PATH
     24define( 'JANEMANCORE_PLUGIN_PATH', plugin_dir_path( __FILE__ ) );
     25define( 'JANEMANCORE_PLUGIN_ASTS', JANEMANCORE_PLUGIN_URL . 'assets' );
     26define( 'JANEMANCORE_PLUGIN_IMGS', JANEMANCORE_PLUGIN_ASTS . '/img' );
     27define( 'JANEMANCORE_PLUGIN_INC', JANEMANCORE_PLUGIN_PATH . 'include' );
     28
     29// Extra functions
     30require_once( JANEMANCORE_PLUGIN_INC . '/theme-functions.php' );
    2231
    2332final class JanemancoreExtension {
     
    7382        add_action( "elementor/frontend/after_enqueue_styles", [ $this, 'janemancore_assets_styles' ] );
    7483        add_action( "elementor/frontend/after_enqueue_scripts", [ $this, 'janemancore_assets_scripts' ] );
     84        add_action( "admin_enqueue_scripts", [ $this, 'janemancore_admin_scripts_styles' ] );
     85
    7586
    7687    }
     
    89100    }
    90101
     102    /**
     103     * Enqueue Files for BackEnd
     104     */
     105  function janemancore_admin_scripts_styles() {
     106    wp_enqueue_style("admin-style",plugins_url("/assets/css/admin-styles.css",__FILE__));
     107  }
     108 
    91109    public function register_new_category( $manager ) {
    92110        $manager->add_category( 'annurtheme-category', [
    93             'title' => __( 'Janemanpro Theme : By annurthemes', 'janemancore' ),
     111            'title' => esc_html__( 'Janemanpro Theme : By annurthemes', 'janemancore' ),
    94112            'icon'  => 'fa fa-chart'
    95113        ] );
     
    99117        require_once( __DIR__ . '/widgets/janeman-slider.php' );
    100118        require_once( __DIR__ . '/widgets/janeman-couple.php' );
     119        require_once( __DIR__ . '/widgets/janeman-thanks.php' );
    101120    }
    102121
  • janeman-core/trunk/readme.txt

    r2638360 r2638540  
    77License: GPl V2
    88License URI: https://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html
    9 Stable tag: 1.0.0
     9Stable tag: 1.0.1
    1010
    11 A simple and nice janeman theme core plugin for elementor Widget. It's help you to add section drag and drop. You can change form style using this widget.
     11A simple and nice janeman theme core plugin for elementor Widget. It's help you to add section drag and drop. You can change section style using this widget.
    1212
    1313== Description ==
    14 A simple and nice janeman theme core plugin for elementor Widget. It's help you to add section drag and drop. You can change form style using this widget.
     14A simple and nice janeman theme core plugin for elementor Widget. It's help you to add section drag and drop. You can change section style using this widget.
    1515
    1616For Free & Premium WordPress Theme visit : [AnnurTheme](https://annurtheme.com/).
     
    2828== Changelog ==
    2929
     30= 1.0.1 =
     31* added: Footer Thanks Widget Added
     32* added: Footer Widget CSS
     33
    3034= 1.0.0 =
    3135* Initial Release
Note: See TracChangeset for help on using the changeset viewer.