Plugin Directory

Changeset 3232873


Ignore:
Timestamp:
01/31/2025 07:13:29 PM (14 months ago)
Author:
LogicHunt
Message:

Update the plugin

Location:
parallax-scroll-wp
Files:
206 added
3 edited

Legend:

Unmodified
Added
Removed
  • parallax-scroll-wp/trunk/README.txt

    r2996130 r3232873  
    44Tags: parallax, background, scroll, image, parallax background, parallax scroll, parallax scrolling, header, call to action, animation, section builder
    55Requires at least: 5.5
    6 Tested up to: 6.4.1
    7 Stable tag: 1.2.1
     6Tested up to: 6.7.1
     7Stable tag: 1.3.0
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
    1010
    11 Are you looking to enhance your website’s design and user experience? Parallax Scroll WP is the perfect plugin for you! With its powerful features.
     11Enhance your WordPress website with dynamic parallax scrolling backgrounds. Parallax Scroll WP offers an easy way to create visually appealing and engaging experiences for your visitors.
    1212
    1313== Description ==
     14
     15Are you looking to enhance your website’s design and user experience? Elevate your website's design with captivating parallax scrolling effects. Parallax Scroll WP for WordPress makes it easy to create immersive backgrounds that enhance user engagement – no coding needed.
    1416
    1517Parallax Scroll is a Parallax Section Builder plugin for WordPress. The Easiest Way to Get a Parallax Scrolling Background Image with Desired Message, Title, and Logo on Your WordPress Website.
     
    123125== Changelog ==
    124126
     127= 1.3.0 =
     128* Improved Plugin Securities.
     129* Check Latest Compatibility.
     130
    125131= 1.2.1 =
    126 * Check Latest Compatibility
     132* Check Latest Compatibility.
    127133
    128134= 1.1.0 =
    129135* Optimize code
    130 * Check Latest Compatibility
     136* Check Latest Compatibility.
    131137
    132138= 1.0.0 =
  • parallax-scroll-wp/trunk/includes/LgxMetaForm.php

    r2824334 r3232873  
    921921        $default_value = isset( $args['default'] ) ? $args['default'] : '';
    922922        $meta          = get_post_meta( $post->ID, '_save_meta_lgx_parallax_generator', true );
    923         $meta_value    = (! empty( $meta[$args['id']] ) ? $meta[$args['id']] : $default_value);
     923        //$meta_value    = (! empty( $meta[$args['id']] ) ? $meta[$args['id']] : $default_value);
     924        $meta_value    = ( (!empty( $meta[$args['id']] ) && is_numeric($meta[$args['id']] ) ) ? esc_html(esc_js($meta[$args['id']])) : $default_value);
    924925
    925926        $output.= '<td>';
  • parallax-scroll-wp/trunk/parallax-scroll-wp.php

    r2996130 r3232873  
    1111 * Plugin URI:        https://logichunt.com/product/wp-parallax-scroll
    1212 * Description:       Amazing Section Builder Plugin to Build a Responsive and Attractive Section with Background Parallax Effect.
    13  * Version:           1.2.1
     13 * Version:           1.3.0
    1414 * Author:            LogicHunt Inc.
    1515 * Author URI:        https://logichunt.com
     
    2727
    2828//plugin definition specific constants
    29 defined( 'LGX_PARALLAX_VERSION' )               or define( 'LGX_PARALLAX_VERSION', '1.2.1' );
     29defined( 'LGX_PARALLAX_VERSION' )               or define( 'LGX_PARALLAX_VERSION', '1.3.0' );
    3030defined( 'LGX_PARALLAX_PLUGIN' )                or define( 'LGX_PARALLAX_PLUGIN', 'parallax-scroll-wp' );
    3131defined( 'LGX_PARALLAX_PLUGIN_BASE' )           or define( 'LGX_PARALLAX_PLUGIN_BASE', plugin_basename( __FILE__ ) );
Note: See TracChangeset for help on using the changeset viewer.