Plugin Directory

Changeset 3355045


Ignore:
Timestamp:
09/03/2025 05:09:23 AM (4 months ago)
Author:
themepoints
Message:
  • Update Option Page.
  • Fix Security Issue.
Location:
accordions-wp/trunk
Files:
1 added
1 deleted
6 edited

Legend:

Unmodified
Added
Removed
  • accordions-wp/trunk/admin/js/accordion-backend-admin.js

    r2982015 r3355045  
    11(function( $ ) {
    22    'use strict';
    3 
    43    jQuery(".tabs-menu a").click(function(event) {
    54        event.preventDefault();
     
    109        $(tab).fadeIn();
    1110    });
    12 
    1311})( jQuery );
  • accordions-wp/trunk/css/responsive-accordion.css

    r3304152 r3355045  
    99/*  #Reset
    1010//  ================================================== */
    11 .responsive-accordion { margin: 0 0 20px 0; padding: 0; list-style-type: none; }
    12 .responsive-accordion li { margin: 0 0 10px 0; padding: 0; }
    13 .responsive-accordion li:last-child { margin-bottom: 0; }
    14 .responsive-accordion li .responsive-accordion-head { cursor: pointer; }
    15 .responsive-accordion li .responsive-accordion-head.active { font-weight: normal; }
     11.responsive-accordion {
     12    margin: 0 0 20px 0;
     13    padding: 0;
     14    list-style-type: none;
     15}
     16.responsive-accordion li {
     17    margin: 0 0 10px 0;
     18    padding: 0;
     19}
     20.responsive-accordion li:last-child {
     21    margin-bottom: 0;
     22}
     23.responsive-accordion li .responsive-accordion-head {
     24    cursor: pointer;
     25}
     26.responsive-accordion li .responsive-accordion-head.active {
     27    font-weight: normal;
     28}
    1629
    1730/*Themes theme1*/
  • accordions-wp/trunk/custom-accordion-wp.php

    r3334708 r3355045  
    44     * Plugin URI:  https://themepoints.com/wp-accordions/
    55     * Description: Create beautiful, responsive accordions and FAQ sections with multiple styles, skins, and advanced customization—perfect for organizing content and improving UX.
    6      * Version:     3.0.2
     6     * Version:     3.0.3
    77     * Author:      Themepoints
    88     * Author URI:  https://themepoints.com
     
    4848    }
    4949    add_action('wp_enqueue_scripts', 'custom_accordion_active_script');
    50    
     50
    5151    /**
    5252     * Enqueue admin scripts and styles for custom post type
     
    152152     */
    153153    function themepoints_custom_accordion_support_callback() {
    154         require_once(plugin_dir_path(__FILE__).'custom-accordion-admin.php');
     154        require_once(plugin_dir_path(__FILE__).'inc/custom-accordion-admin.php');
    155155    }
    156156    add_action('admin_menu', 'themepoints_custom_accordion_submenu_pages');
  • accordions-wp/trunk/inc/accordions-wp-post-type.php

    r3334708 r3355045  
    7777        // Use nonce for verification
    7878        wp_nonce_field( plugin_basename( __FILE__ ), 'custom_accordion_wordpress_dynamicMeta_noncename' );
    79         ?>
    80         <?php
    8179
    8280        //get the saved meta as an arry
     
    248246                </div>
    249247            </div>
    250         </div> 
     248        </div>
    251249    <?php
    252250    }
  • accordions-wp/trunk/readme.txt

    r3334708 r3355045  
    55Requires at least: 4.0
    66Tested up to: 6.8.2
    7 Stable tag: 3.0.2
     7Stable tag: 3.0.3
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    152152== Changelog ==
    153153
     154= 3.0.3 =
     155* Update Option Page.
     156* Fix Security Issue.
     157
    154158= 3.0.2 =
    155159* Update Option Page.
  • accordions-wp/trunk/theme/custom-wp-accordion-themes.php

    r3334708 r3355045  
    44    }
    55
    6     function TCP_accordions_wordpress_table_body($postid){
     6    function TCP_accordions_wordpress_table_body( $postid ){
    77        $tcpfeaturess                         = get_post_meta( $postid, 'custom_accordion_wordpresspro_columns');
    88        $custom_accordion_columns_post_themes = get_post_meta( $postid, 'custom_accordion_columns_post_themes', true );
Note: See TracChangeset for help on using the changeset viewer.