Changeset 3313335
- Timestamp:
- 06/17/2025 02:59:56 PM (9 months ago)
- Location:
- smart-answer
- Files:
-
- 49 added
- 2 edited
-
tags/2.0 (added)
-
tags/2.0/assets (added)
-
tags/2.0/assets/loading.gif (added)
-
tags/2.0/css (added)
-
tags/2.0/css/admin_styles.css (added)
-
tags/2.0/css/styles.css (added)
-
tags/2.0/includes (added)
-
tags/2.0/includes/admin-questions.php (added)
-
tags/2.0/includes/admin-responses.php (added)
-
tags/2.0/includes/metabox-questions.php (added)
-
tags/2.0/includes/metabox-responses.php (added)
-
tags/2.0/js (added)
-
tags/2.0/js/admin-ajax.js (added)
-
tags/2.0/js/sman-ajax.js (added)
-
tags/2.0/languages (added)
-
tags/2.0/languages/smart-answer-es_CR.mo (added)
-
tags/2.0/languages/smart-answer-es_CR.po (added)
-
tags/2.0/languages/smart-answer-es_CU.mo (added)
-
tags/2.0/languages/smart-answer-es_CU.po (added)
-
tags/2.0/languages/smart-answer-es_DO.mo (added)
-
tags/2.0/languages/smart-answer-es_DO.po (added)
-
tags/2.0/languages/smart-answer-es_EC.mo (added)
-
tags/2.0/languages/smart-answer-es_EC.po (added)
-
tags/2.0/languages/smart-answer-es_ES.mo (added)
-
tags/2.0/languages/smart-answer-es_ES.po (added)
-
tags/2.0/languages/smart-answer-es_GT.mo (added)
-
tags/2.0/languages/smart-answer-es_GT.po (added)
-
tags/2.0/languages/smart-answer-es_HN.mo (added)
-
tags/2.0/languages/smart-answer-es_HN.po (added)
-
tags/2.0/languages/smart-answer-es_MX.mo (added)
-
tags/2.0/languages/smart-answer-es_MX.po (added)
-
tags/2.0/languages/smart-answer-es_NI.mo (added)
-
tags/2.0/languages/smart-answer-es_NI.po (added)
-
tags/2.0/languages/smart-answer-es_PA.mo (added)
-
tags/2.0/languages/smart-answer-es_PA.po (added)
-
tags/2.0/languages/smart-answer-es_PE.mo (added)
-
tags/2.0/languages/smart-answer-es_PE.po (added)
-
tags/2.0/languages/smart-answer-es_PR.mo (added)
-
tags/2.0/languages/smart-answer-es_PR.po (added)
-
tags/2.0/languages/smart-answer-es_PY.mo (added)
-
tags/2.0/languages/smart-answer-es_PY.po (added)
-
tags/2.0/languages/smart-answer-es_SV.mo (added)
-
tags/2.0/languages/smart-answer-es_SV.po (added)
-
tags/2.0/languages/smart-answer-es_UY.mo (added)
-
tags/2.0/languages/smart-answer-es_UY.po (added)
-
tags/2.0/languages/smart-answer-es_VE.mo (added)
-
tags/2.0/languages/smart-answer-es_VE.po (added)
-
tags/2.0/readme.txt (added)
-
tags/2.0/smart-answers.php (added)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/smart-answers.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
smart-answer/trunk/readme.txt
r3309885 r3313335 6 6 Requires at least: 4.0 7 7 Tested up to: 6.8 8 Stable tag: 1.98 Stable tag: 2.0 9 9 Requires PHP: 7.4 10 10 License: GPLv2 or later … … 56 56 == Changelog == 57 57 58 = 2.0 = 59 Resolve plugin issues related to the review 2. 60 58 61 = 1.9 = 59 62 Resolve plugin issues related to the review. -
smart-answer/trunk/smart-answers.php
r3309885 r3313335 3 3 * Plugin Name: Smart Answer 4 4 * Description: Create custom questions, deploy via shortcodes, manage responses, mark favorites or ban. 5 * Version: 1.95 * Version: 2.0 6 6 * Author: @softcialdeveloper 7 7 * License: GPL-2.0+ … … 19 19 20 20 function sman_custom_admin_styles() { 21 wp_enqueue_style("sma n-custom-admin-styles", plugins_url("/css/admin_styles.css", __FILE__));22 wp_register_script("sma n-admin-ajax", plugins_url("/js/admin-ajax.js", __FILE__));21 wp_enqueue_style("smart-answer-custom-admin-styles", plugins_url("/css/admin_styles.css", __FILE__)); 22 wp_register_script("smart-answer-admin", plugins_url("/js/admin-ajax.js", __FILE__)); 23 23 $_array = ["ajaxurl" => admin_url("admin-ajax.php")]; 24 wp_localize_script("sma n-admin-ajax", "ajax_object", $_array);25 wp_enqueue_script("sma n-admin-ajax");24 wp_localize_script("smart-answer-admin", "ajax_object", $_array); 25 wp_enqueue_script("smart-answer-admin"); 26 26 } 27 27 add_action("admin_enqueue_scripts", "sman_custom_admin_styles"); … … 232 232 if ($result) { 233 233 wp_send_json_success([ 234 "message" => __('Your answer has been saved successfully', 'sman') . ".",234 "message" => __('Your answer has been saved successfully', "smart-answer") . ".", 235 235 ]); 236 236 } else { … … 454 454 // error_log('PO file path: ' . $po_file); 455 455 456 // error_log('Translation test: ' . __('Your answer has been saved successfully', 'sman'));456 // error_log('Translation test: ' . __('Your answer has been saved successfully', "smart-answer")); 457 457 // } 458 458 // add_action('init', 'debug_translations', 11);
Note: See TracChangeset
for help on using the changeset viewer.