Changeset 3104023
- Timestamp:
- 06/18/2024 10:57:00 AM (22 months ago)
- Location:
- dailystory/trunk
- Files:
-
- 3 edited
-
dailystory.php (modified) (1 diff)
-
includes/class-dailystory-shortcodes.php (modified) (3 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
dailystory/trunk/dailystory.php
r3102916 r3104023 4 4 Plugin URI: https://docs.dailystory.com/article/8omibw2171-integrations-wordpress 5 5 Description: The DailyStory plugin simplifies the process of adding popups, web forms, conversion tracking, and other features to your WordPress website. 6 Version: 2.1. 06 Version: 2.1.1 7 7 Author: DailyStory 8 8 Author URI: https://www.dailystory.com/integrations/wordpress/ -
dailystory/trunk/includes/class-dailystory-shortcodes.php
r3102915 r3104023 21 21 } 22 22 } 23 23 24 // ────────────────────────────────────────────── 24 25 // Returns the body content from a URL … … 93 94 // normalize attribute keys, lowercase 94 95 $atts = array_change_key_case((array)$atts, CASE_LOWER); 96 $version = "2.1.1"; 95 97 96 98 // override default attributes with user attributes … … 100 102 101 103 // Add the script reference, pulled from DailyStory, but eventually will be served from a CDN 102 wp_register_script('ds-landingpages', 'https://pages.dailystory.com/bundles/dailystory-landingpage', null, '2.0.6', true);104 wp_register_script('ds-landingpages', 'https://pages.dailystory.com/bundles/dailystory-landingpage', null,$version, true); 103 105 wp_enqueue_script('ds-landingpages'); 104 106 105 107 // enqueue css 106 wp_enqueue_style('ds-webform','https://forms.dailystory.com/content/hosted-webform-min', null, '2.0.6', 'all');108 wp_enqueue_style('ds-webform','https://forms.dailystory.com/content/hosted-webform-min', null, $version, 'all'); 107 109 108 110 // get the tenant uid -
dailystory/trunk/readme.txt
r3102916 r3104023 4 4 Requires at least: 4.0 5 5 Tested up to: 6.5.3 6 Stable tag: 2.1. 06 Stable tag: 2.1.1 7 7 License: GNU General Public License v2.0 or later 8 8 … … 93 93 ## Changelog 94 94 95 ### 2.1.1 96 * Support for redirect url in web form and new javascript events 97 95 98 ### 2.0.6 96 99 * Minor updates to support minified CSS
Note: See TracChangeset
for help on using the changeset viewer.