Plugin Directory

Changeset 3373301


Ignore:
Timestamp:
10/06/2025 12:48:35 AM (5 months ago)
Author:
Webilia
Message:

Released Listdom Ads 1.8.1

Location:
listdom-ads
Files:
66 added
5 edited

Legend:

Unmodified
Added
Removed
  • listdom-ads/trunk/init.php

    r3358260 r3373301  
    1010     * @var string
    1111     */
    12     public $version = '1.8.0';
     12    public $version = '1.8.1';
    1313
    1414    /**
  • listdom-ads/trunk/listdom-ads.php

    r3358260 r3373301  
    44 * Plugin URI: https://listdom.net
    55 * Description: Display ads on single listing pages
    6  * Version: 1.8.0
     6 * Version: 1.8.1
    77 * Author: Webilia
    88 * Author URI: https://webilia.com/
     
    1111 * Requires PHP: 7.2
    1212 * License: GPLv2 or later
    13  * License URI: http://www.gnu.org/licenses/gpl-2.0.html
     13 * License URI: https://www.gnu.org/licenses/gpl-2.0.html
    1414 * Requires Plugins: listdom
    1515 *
  • listdom-ads/trunk/readme.txt

    r3358260 r3373301  
    66Tested up to: 6.8
    77Requires PHP: 7.2
    8 Stable tag: 1.8.0
     8Stable tag: 1.8.1
    99Requires Plugins: listdom
    1010License: GPLv2 or later
    11 License URI: http://www.gnu.org/licenses/gpl-2.0.html
     11License URI: https://www.gnu.org/licenses/gpl-2.0.html
    1212
    1313Easily monetize your Listdom directory by displaying ads (Google AdSense, affiliate banners, HTML content, shortcodes) on listing detail pages.
     
    7373== Changelog ==
    7474
     75= 1.8.1 - October 5th, 2025 =
     76* Addressed some background issues.
     77
    7578= 1.7.0 =
    76 * Initial public release on WordPress.org 
     79* Initial public release on WordPress.org
    7780* Display ads using HTML, shortcode, images, or scripts 
    7881* Global ad setting – display across all listings 
  • listdom-ads/trunk/vendor/webilia/listdom-p-ads/app/Base.php

    r3353621 r3373301  
    8080    public function response(array $response)
    8181    {
    82         echo json_encode($response, JSON_NUMERIC_CHECK);
     82        echo wp_json_encode($response, JSON_NUMERIC_CHECK);
    8383        exit;
    8484    }
  • listdom-ads/trunk/vendor/webilia/listdom-p-ads/html/form.php

    r3358260 r3373301  
    1111        <div class="lsd-settings-fields-wrapper">
    1212            <div class="lsd-form-row">
    13         <div class="lsd-col-2"><?php echo LSD_Form::label([
    14             'title' => esc_html__('Global Ad', 'listdom-ads'),
    15             'for' => 'lsd_addons_ads_global_ad',
    16         ]); ?></div>
    17         <div class="lsd-col-6">
    18             <?php echo LSD_Form::textarea([
    19                 'id' => 'lsd_addons_ads_global_ad',
    20                 'value' => $ads['global_ad'] ?? '',
    21                 'name' => 'addons[ads][global_ad]',
    22                 'placeholder' => esc_html__('You can use shortcodes or HTML...', 'listdom-ads'),
    23                 'rows' => 10,
    24             ]); ?>
    25             <p class="lsd-admin-description-tiny lsd-mb-0"><?php esc_html_e('Set a global ad for all listings. Override it per listing if needed.', 'listdom-ads'); ?></p>
    26         </div>
    27     </div>
     13                <div class="lsd-col-3"><?php echo LSD_Form::label([
     14                        'class' => 'lsd-fields-label',
     15                        'title' => esc_html__('Global Ad', 'listdom-ads'),
     16                        'for' => 'lsd_addons_ads_global_ad',
     17                    ]); ?></div>
     18                <div class="lsd-col-5">
     19                    <?php echo LSD_Form::textarea([
     20                        'class' => 'lsd-admin-input',
     21                        'id' => 'lsd_addons_ads_global_ad',
     22                        'value' => $ads['global_ad'] ?? '',
     23                        'name' => 'addons[ads][global_ad]',
     24                        'placeholder' => esc_attr__('You can use shortcodes or HTML...', 'listdom-ads'),
     25                        'rows' => 10,
     26                    ]); ?>
     27                    <p class="lsd-admin-description-tiny lsd-mb-0 lsd-mt-2"><?php esc_html_e('Set a global ad for all listings. Override it per listing if needed.', 'listdom-ads'); ?></p>
     28                </div>
     29            </div>
    2830        </div>
    2931    </div>
Note: See TracChangeset for help on using the changeset viewer.