Changeset 3484049
- Timestamp:
- 03/16/2026 04:05:43 PM (2 weeks ago)
- Location:
- repeaterly
- Files:
-
- 53 added
- 3 edited
-
tags/2.0.4 (added)
-
tags/2.0.4/assets (added)
-
tags/2.0.4/assets/css (added)
-
tags/2.0.4/assets/css/overview.css (added)
-
tags/2.0.4/assets/images (added)
-
tags/2.0.4/assets/images/logo-placeholder.png (added)
-
tags/2.0.4/assets/js (added)
-
tags/2.0.4/assets/js/widgets (added)
-
tags/2.0.4/assets/js/widgets/accordion.js (added)
-
tags/2.0.4/autoloader.php (added)
-
tags/2.0.4/includes (added)
-
tags/2.0.4/includes/acf.php (added)
-
tags/2.0.4/includes/dynamic-content.php (added)
-
tags/2.0.4/includes/hook.php (added)
-
tags/2.0.4/includes/page-manager.php (added)
-
tags/2.0.4/includes/tag-manager.php (added)
-
tags/2.0.4/includes/tags (added)
-
tags/2.0.4/includes/tags/acf (added)
-
tags/2.0.4/includes/tags/acf/acf-color.php (added)
-
tags/2.0.4/includes/tags/acf/acf-date-time.php (added)
-
tags/2.0.4/includes/tags/acf/acf-field.php (added)
-
tags/2.0.4/includes/tags/acf/acf-gallery.php (added)
-
tags/2.0.4/includes/tags/acf/acf-image.php (added)
-
tags/2.0.4/includes/tags/acf/acf-number.php (added)
-
tags/2.0.4/includes/tags/acf/acf-url.php (added)
-
tags/2.0.4/includes/tags/base (added)
-
tags/2.0.4/includes/tags/base/post-content.php (added)
-
tags/2.0.4/includes/tags/base/post-custom-field.php (added)
-
tags/2.0.4/includes/tags/base/post-date.php (added)
-
tags/2.0.4/includes/tags/base/post-excerpt.php (added)
-
tags/2.0.4/includes/tags/base/post-featured-image.php (added)
-
tags/2.0.4/includes/tags/base/post-title.php (added)
-
tags/2.0.4/includes/tags/base/post-url.php (added)
-
tags/2.0.4/includes/tags/base/site-logo.php (added)
-
tags/2.0.4/includes/tags/base/site-tagline.php (added)
-
tags/2.0.4/includes/tags/base/site-title.php (added)
-
tags/2.0.4/includes/tags/base/site-url.php (added)
-
tags/2.0.4/includes/utils.php (added)
-
tags/2.0.4/includes/widget-manager.php (added)
-
tags/2.0.4/includes/widgets (added)
-
tags/2.0.4/includes/widgets/accordion.php (added)
-
tags/2.0.4/includes/widgets/button.php (added)
-
tags/2.0.4/includes/widgets/heading.php (added)
-
tags/2.0.4/includes/widgets/icon-list.php (added)
-
tags/2.0.4/includes/widgets/image-gallery.php (added)
-
tags/2.0.4/includes/widgets/image.php (added)
-
tags/2.0.4/includes/widgets/promotion.php (added)
-
tags/2.0.4/languages (added)
-
tags/2.0.4/languages/index.php (added)
-
tags/2.0.4/readme.txt (added)
-
tags/2.0.4/repeaterly.php (added)
-
tags/2.0.4/views (added)
-
tags/2.0.4/views/overview.php (added)
-
trunk/includes/page-manager.php (modified) (1 diff)
-
trunk/readme.txt (modified) (4 diffs)
-
trunk/repeaterly.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
repeaterly/trunk/includes/page-manager.php
r3484018 r3484049 65 65 plugins_url('/assets/css/overview.css', Repeaterly::plugin_file()), 66 66 array(), 67 '1.0.0',67 Repeaterly::plugin_version(), 68 68 'all' 69 69 ); 70 wp_enqueue_style( 71 'repeaterly-overview-css' 72 ); 70 wp_enqueue_style('repeaterly-overview-css'); 73 71 } 74 72 } -
repeaterly/trunk/readme.txt
r3484018 r3484049 4 4 Requires at least: 5.9 5 5 Tested up to: 6.9 6 Stable tag: 2.0. 36 Stable tag: 2.0.4 7 7 Requires PHP: 7.4 8 8 License: GPLv2 or later … … 53 53 Say goodbye to Elementor Pro’s paywall! Repeaterly’s new Dynamic Tags let you add dynamic content to any Elementor widget **—free**. Pull data from: 54 54 55 - ACF fields and sub-fields (including Repeater and Relationship fields). 56 57 - Post title, content, excerpt, permalink, featured image and many more. 58 55 59 [youtube https://www.youtube.com/watch?v=WPwdwvXJ2Vo] 56 60 57 - ACF fields and sub-fields (including Repeater and Relationship fields).58 59 - Post title, content, excerpt, permalink, featured image and many more.60 61 61 Unlike others, our ACF tags support subfields, giving you unmatched flexibility. No other free plugin does this without Pro **—game-changer**! 62 62 … … 176 176 👉 [Get Repeaterly Pro](https://repeaterly.com/) 177 177 178 ## </>Source Code178 ## Source Code 179 179 180 180 Here's the source code link of Repeaterly: … … 261 261 == Changelog == 262 262 263 = 2.0.4 = 264 Fix: CSS enqueueing in Page_Manager to use dynamic plugin version 265 263 266 = 2.0.3 = 264 267 Added: Dynamic Accordion -
repeaterly/trunk/repeaterly.php
r3484018 r3484049 5 5 * Plugin URI: https://repeaterly.com 6 6 * Description: Seamlessly integrate dynamic tags with ACF repeater & relationship fields into Elementor, enhancing your design capabilities. 7 * Version: 2.0. 37 * Version: 2.0.4 8 8 * Author: Techimium 9 9 * Author URI: https://techimium.com … … 30 30 static function plugin_version() 31 31 { 32 return '2.0. 3';32 return '2.0.4'; 33 33 } 34 34
Note: See TracChangeset
for help on using the changeset viewer.