Plugin Directory

Changeset 3473540


Ignore:
Timestamp:
03/03/2026 10:53:43 AM (4 weeks ago)
Author:
wpsaad
Message:

#issue alm-front script

Location:
alt-manager
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • alt-manager/tags/1.8.2/alt-manager.php

    r3406338 r3473540  
    3030                require_once dirname( __FILE__ ) . '/freemius/start.php';
    3131                $am_fs = fs_dynamic_init( array(
    32                     'id'             => '5548',
    33                     'slug'           => 'alt-manager',
    34                     'type'           => 'plugin',
    35                     'navigation'     => 'tabs',
    36                     'public_key'     => 'pk_07c4f76da780308f88546ce3da78a',
    37                     'is_premium'     => false,
    38                     'premium_suffix' => 'premium plan',
    39                     'has_addons'     => false,
    40                     'has_paid_plans' => true,
    41                     'menu'           => array(
     32                    'id'               => '5548',
     33                    'slug'             => 'alt-manager',
     34                    'type'             => 'plugin',
     35                    'navigation'       => 'tabs',
     36                    'public_key'       => 'pk_07c4f76da780308f88546ce3da78a',
     37                    'is_premium'       => false,
     38                    'premium_suffix'   => 'premium plan',
     39                    'has_addons'       => false,
     40                    'has_paid_plans'   => true,
     41                    'menu'             => array(
    4242                        'slug'   => 'alt-manager',
    4343                        'parent' => array(
     
    4545                        ),
    4646                    ),
    47                     'is_live'        => true,
     47                    'is_live'          => true,
     48                    'is_org_compliant' => true,
    4849                ) );
    4950            }
  • alt-manager/tags/1.8.2/inc/alm-empty-generator.php

    r3406338 r3473540  
    333333
    334334$init = new alm_dom_generator();
    335 add_action( 'wp_footer', function () {
     335function alm_enqueue_frontend_script() {
    336336    if ( is_admin() ) {
    337337        return;
     
    390390        'titleText' => $title_output,
    391391    ) );
    392 }, PHP_INT_MAX );
     392}
     393
     394add_action( 'wp_enqueue_scripts', 'alm_enqueue_frontend_script', 20 );
  • alt-manager/trunk/alt-manager.php

    r3406338 r3473540  
    3030                require_once dirname( __FILE__ ) . '/freemius/start.php';
    3131                $am_fs = fs_dynamic_init( array(
    32                     'id'             => '5548',
    33                     'slug'           => 'alt-manager',
    34                     'type'           => 'plugin',
    35                     'navigation'     => 'tabs',
    36                     'public_key'     => 'pk_07c4f76da780308f88546ce3da78a',
    37                     'is_premium'     => false,
    38                     'premium_suffix' => 'premium plan',
    39                     'has_addons'     => false,
    40                     'has_paid_plans' => true,
    41                     'menu'           => array(
     32                    'id'               => '5548',
     33                    'slug'             => 'alt-manager',
     34                    'type'             => 'plugin',
     35                    'navigation'       => 'tabs',
     36                    'public_key'       => 'pk_07c4f76da780308f88546ce3da78a',
     37                    'is_premium'       => false,
     38                    'premium_suffix'   => 'premium plan',
     39                    'has_addons'       => false,
     40                    'has_paid_plans'   => true,
     41                    'menu'             => array(
    4242                        'slug'   => 'alt-manager',
    4343                        'parent' => array(
     
    4545                        ),
    4646                    ),
    47                     'is_live'        => true,
     47                    'is_live'          => true,
     48                    'is_org_compliant' => true,
    4849                ) );
    4950            }
  • alt-manager/trunk/inc/alm-empty-generator.php

    r3406338 r3473540  
    333333
    334334$init = new alm_dom_generator();
    335 add_action( 'wp_footer', function () {
     335function alm_enqueue_frontend_script() {
    336336    if ( is_admin() ) {
    337337        return;
     
    390390        'titleText' => $title_output,
    391391    ) );
    392 }, PHP_INT_MAX );
     392}
     393
     394add_action( 'wp_enqueue_scripts', 'alm_enqueue_frontend_script', 20 );
Note: See TracChangeset for help on using the changeset viewer.