Plugin Directory

Changeset 2991411


Ignore:
Timestamp:
11/08/2023 03:58:57 AM (2 years ago)
Author:
zervise
Message:

fixed bugs and updated to 1.1.1

Location:
zervise-contact-us-form
Files:
10 added
3 edited

Legend:

Unmodified
Added
Removed
  • zervise-contact-us-form/tags/1.0.1/Readme.txt

    r2990137 r2991411  
    44Requires at least: 4.7
    55Tested up to: 6.3
    6 Stable tag: 1.0.0
     6Stable tag: 1.1.0
    77Requires PHP: 7.0
    88License: GPLv2 or later
  • zervise-contact-us-form/trunk/Readme.txt

    r2990137 r2991411  
    44Requires at least: 4.7
    55Tested up to: 6.3
    6 Stable tag: 1.0.0
     6Stable tag: 1.1.1
    77Requires PHP: 7.0
    88License: GPLv2 or later
     
    7373= 1.0.0 =
    7474* Stable initial version.
    75 * Supported with WordPress 5.9.
    76 * Colors updated to match original zervise.com theme.
    77 * Other performance improvements.
     75* Supported with WordPress 5.8.
     76* Colors updated to match zervise.com theme.
  • zervise-contact-us-form/trunk/includes/zervise-contact-us-scripts.php

    r2604228 r2991411  
    11<?php
    2   // Adds Scripts
    3   function zervise_add_scripts(){
    4     // Adds Main CSS
    5     wp_enqueue_style('yts-main-style', plugin_dir_url(__FILE__). '/css/style.css', array(), null, all);
    6     // Adds Main JS
    7     wp_enqueue_script('yts-main-script', plugin_dir_url(__FILE__). '/js/main.js', array(), null, all);
     2// Adds Scripts
     3function zervise_add_scripts()
     4{
     5  // Adds Main CSS
     6  wp_enqueue_style('yts-main-style', plugin_dir_url(__FILE__) . '/css/style.css', array(), null, 'all');
     7  // Adds Main JS
     8  wp_enqueue_script('yts-main-script', plugin_dir_url(__FILE__) . '/js/main.js', array(), null, 'all');
    89
    9     // Adds Font-awesome Script
    10     wp_register_style('fontawesome', 'https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css');
    11     wp_enqueue_style('fontawesome');
    12   }
     10  // Adds Font-awesome Script
     11  wp_register_style('fontawesome', 'https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css');
     12  wp_enqueue_style('fontawesome');
     13}
    1314
    14   add_action('wp_enqueue_scripts', 'zervise_add_scripts');
     15add_action('wp_enqueue_scripts', 'zervise_add_scripts');
Note: See TracChangeset for help on using the changeset viewer.