Changeset 2672648
- Timestamp:
- 02/04/2022 04:42:30 AM (5 months ago)
- Location:
- mini-ajax-woo-cart
- Files:
-
- 73 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
mini-ajax-woo-cart/trunk/google-fonts-list.php
r2671892 r2672648 225 225 $css = array(); 226 226 227 $family = majc_verify_settings($meta[$key . '_font_family']);228 $style = majc_verify_settings($meta[$key . '_font_style']);229 $text_decoration = majc_verify_settings($meta[$key . '_text_decoration']);230 $text_transform = majc_verify_settings($meta[$key . '_text_transform']);231 $size = majc_verify_settings($meta[$key . '_font_size']);232 $line_height = majc_verify_settings($meta[$key . '_line_height']);233 $letter_spacing = majc_verify_settings($meta[$key . '_letter_spacing']);234 $color = majc_verify_settings($meta[$key . '_font_color']);227 $family = ; 228 $style = ; 229 $text_decoration = ; 230 $text_transform = ; 231 $size = ; 232 $line_height = ; 233 $letter_spacing = ; 234 $color = ; 235 235 236 236 if (strpos($style, 'italic')) { … … 269 269 270 270 if (isset($majc_settings['display']['enable_flying_cart']) && isset($majc_settings['custom']['enable'])) { 271 $font_family_array[] = $majc_settings['custom']['header_title_font_family']; 272 $font_family_array[] = $majc_settings['custom']['content_font_family']; 273 $font_family_array[] = $majc_settings['custom']['product_title_font_family']; 274 $font_family_array[] = $majc_settings['custom']['button_text_font_family']; 271 if (isset($majc_settings['custom']['header_title_font_family'])) { 272 $font_family_array[] = $majc_settings['custom']['header_title_font_family']; 273 } 274 if (isset($majc_settings['custom']['content_font_family'])) { 275 $font_family_array[] = $majc_settings['custom']['content_font_family']; 276 } 277 if (isset($majc_settings['custom']['product_title_font_family'])) { 278 $font_family_array[] = $majc_settings['custom']['product_title_font_family']; 279 } 280 if (isset($majc_settings['custom']['button_text_font_family'])) { 281 $font_family_array[] = $majc_settings['custom']['button_text_font_family']; 282 } 275 283 } 276 284 -
mini-ajax-woo-cart/trunk/mini-ajax-cart.php
r2671892 r2672648 6 6 Plugin URI: https://github.com/pzstar/mini-ajax-woo-cart 7 7 Description: Ajax, Floating, Slide In, Popup Cart For WordPress with WooCommerce 8 Version: 1.0. 78 Version: 1.0. 9 9 Author: HashThemes 10 10 Author URI: http://hashthemes.com … … 35 35 36 36 public function define_constants() { 37 defined('MAJC_VERSION') or define('MAJC_VERSION', '1.0. 7'); //plugin version37 defined('MAJC_VERSION') or define('MAJC_VERSION', '1.0.'); //plugin version 38 38 39 39 defined('MAJC_TD') or define('MAJC_TD', 'mini-ajax-cart'); //plugin's text domain -
mini-ajax-woo-cart/trunk/readme.txt
r2671892 r2672648 4 4 Requires at least: 5.0 5 5 Tested up to: 5.9 6 Stable tag: 1.0. 76 Stable tag: 1.0. 7 7 Requires PHP: 5.0 8 8 License: GPLv2 or later … … 163 163 <a href="https://1.envato.market/2rKYB0">WooCommerce Cart</a> <a href="https://demo.hashthemes.com/ultimate-woocommerce-cart/slide-in-cart/">Demo Site</a> <a href="https://hashthemes.com/documentation/ultimate-woocommerce-cart-documentation/">Documentation</a> 164 164 165 166 167 168 165 169 = 1.0.7 = 166 170 * Change in admin design … … 192 196 = 1.0.0 = 193 197 * Release 194 195 == Upgrade Notice ==196 197 = 1.0 =198 Release
Note: See TracChangeset
for help on using the changeset viewer.