Changeset 3443643
- Timestamp:
- 01/20/2026 11:54:35 PM (4 weeks ago)
- Location:
- capstonai-freemium/trunk
- Files:
-
- 1 added
- 4 edited
-
capstonai-freemium.php (modified) (2 diffs)
-
classes/setting.php (modified) (1 diff)
-
helpers/helpers.php (modified) (3 diffs)
-
helpers/imageHelpers.php (added)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
capstonai-freemium/trunk/capstonai-freemium.php
r3443204 r3443643 3 3 * Plugin Name: CapstonAI 4 4 * Description: Boost your SEO and GEO performance in one click. CapstonAI analyzes, optimizes, and enhances every page of your site — from meta tags to structured data — using advanced AI to maximize visibility across search engines and generative platforms. 5 * Version: 1.2.1 35 * Version: 1.2.14 6 6 * Author: Bourbon Tech 7 7 * Author URI: https://capston.ai/ 8 * Text Domain: capstonai 8 * Text Domain: capstonai-freemium 9 9 * Domain Path: /languages 10 10 * License: GPL-3.0-or-later … … 22 22 if ( ! defined( 'ABSPATH' ) ) exit; 23 23 24 define('CAPSTONAI_VERSION', '1.2.1 3');24 define('CAPSTONAI_VERSION', '1.2.14'); 25 25 define('CAIFR_URL', plugins_url('', __FILE__)); 26 26 define('CAIFR_DIR', plugin_dir_path(__FILE__)); -
capstonai-freemium/trunk/classes/setting.php
r3417171 r3443643 72 72 include_once CAIFR_DIR . '/helpers/titleHelpers.php'; 73 73 include_once CAIFR_DIR . '/helpers/topicsHelpers.php'; 74 include_once CAIFR_DIR . '/helpers/imageHelpers.php'; 74 75 include_once CAIFR_DIR . '/classes/hooks.php'; 75 76 include_once CAIFR_DIR . '/classes/activationHooks.php'; -
capstonai-freemium/trunk/helpers/helpers.php
r3443107 r3443643 746 746 } 747 747 748 $images_data = CA PSAI_ImageHelpers::getAllPostsWithImages();748 $images_data = CAIFR_ImageHelpers::getAllPostsWithImages(); 749 749 750 750 foreach ($images_data as $image_data) { … … 915 915 if ($customer_id === false) $data; 916 916 917 $response = wp_remote_get(CA PSAI_ADMIN_API_URL . '/image/alt-images/customer?pluginId=' . $customer_id);917 $response = wp_remote_get(CAIFR_ADMIN_API_URL . '/image/alt-images/customer?pluginId=' . $customer_id); 918 918 if (is_wp_error($response)) { 919 919 return $data; … … 930 930 return []; 931 931 } 932 933 public static function convertPathToUrl2($file_path) 934 { 935 $normalized_path = str_replace('\\', '/', $file_path); 936 937 $wp_content_pos = strpos($normalized_path, 'wp-content'); 938 939 if ($wp_content_pos === false) { 940 return ''; 941 } 942 943 $relative_path = substr($normalized_path, $wp_content_pos); 944 945 $full_url = site_url('/') . $relative_path; 946 947 return $full_url; 948 } 932 949 } -
capstonai-freemium/trunk/readme.txt
r3443204 r3443643 6 6 Tested up to: 6.9 7 7 Requires PHP: 7.4 8 Stable tag: 1.2.1 38 Stable tag: 1.2.14 9 9 License: GPL-3.0-or-later 10 10 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 105 105 == Changelog == 106 106 107 = 1.2.14 = 108 * Fix Dashboard UX 109 107 110 = 1.2.13 = 108 111 * Fix Dashboard UI
Note: See TracChangeset
for help on using the changeset viewer.