Changeset 3355045
- Timestamp:
- 09/03/2025 05:09:23 AM (4 months ago)
- Location:
- accordions-wp/trunk
- Files:
-
- 1 added
- 1 deleted
- 6 edited
-
admin/js/accordion-backend-admin.js (modified) (2 diffs)
-
css/responsive-accordion.css (modified) (1 diff)
-
custom-accordion-admin.php (deleted)
-
custom-accordion-wp.php (modified) (3 diffs)
-
inc/accordions-wp-post-type.php (modified) (2 diffs)
-
inc/custom-accordion-admin.php (added)
-
readme.txt (modified) (2 diffs)
-
theme/custom-wp-accordion-themes.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
accordions-wp/trunk/admin/js/accordion-backend-admin.js
r2982015 r3355045 1 1 (function( $ ) { 2 2 'use strict'; 3 4 3 jQuery(".tabs-menu a").click(function(event) { 5 4 event.preventDefault(); … … 10 9 $(tab).fadeIn(); 11 10 }); 12 13 11 })( jQuery ); -
accordions-wp/trunk/css/responsive-accordion.css
r3304152 r3355045 9 9 /* #Reset 10 10 // ================================================== */ 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 } 16 29 17 30 /*Themes theme1*/ -
accordions-wp/trunk/custom-accordion-wp.php
r3334708 r3355045 4 4 * Plugin URI: https://themepoints.com/wp-accordions/ 5 5 * 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. 26 * Version: 3.0.3 7 7 * Author: Themepoints 8 8 * Author URI: https://themepoints.com … … 48 48 } 49 49 add_action('wp_enqueue_scripts', 'custom_accordion_active_script'); 50 50 51 51 /** 52 52 * Enqueue admin scripts and styles for custom post type … … 152 152 */ 153 153 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'); 155 155 } 156 156 add_action('admin_menu', 'themepoints_custom_accordion_submenu_pages'); -
accordions-wp/trunk/inc/accordions-wp-post-type.php
r3334708 r3355045 77 77 // Use nonce for verification 78 78 wp_nonce_field( plugin_basename( __FILE__ ), 'custom_accordion_wordpress_dynamicMeta_noncename' ); 79 ?>80 <?php81 79 82 80 //get the saved meta as an arry … … 248 246 </div> 249 247 </div> 250 </div> 248 </div> 251 249 <?php 252 250 } -
accordions-wp/trunk/readme.txt
r3334708 r3355045 5 5 Requires at least: 4.0 6 6 Tested up to: 6.8.2 7 Stable tag: 3.0. 27 Stable tag: 3.0.3 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 152 152 == Changelog == 153 153 154 = 3.0.3 = 155 * Update Option Page. 156 * Fix Security Issue. 157 154 158 = 3.0.2 = 155 159 * Update Option Page. -
accordions-wp/trunk/theme/custom-wp-accordion-themes.php
r3334708 r3355045 4 4 } 5 5 6 function TCP_accordions_wordpress_table_body( $postid){6 function TCP_accordions_wordpress_table_body( $postid ){ 7 7 $tcpfeaturess = get_post_meta( $postid, 'custom_accordion_wordpresspro_columns'); 8 8 $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.