Changeset 2410957
- Timestamp:
- 11/02/2020 09:38:58 AM (5 years ago)
- Location:
- master-elements/trunk
- Files:
-
- 4 edited
-
addons/widgets/woo-product-archive/woo-product-archive.php (modified) (13 diffs)
-
changelog.txt (modified) (1 diff)
-
masterelements.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
master-elements/trunk/addons/widgets/woo-product-archive/woo-product-archive.php
r2409023 r2410957 244 244 // $this->end_controls_section(); 245 245 246 //////////////////////////////////////////////////////////////////////////247 // Item Style Section246 ////////////////////////////////////////////////////////////////////////// 247 // Item Style Section 248 248 $this->start_controls_section( 249 249 'me-product-item-section', … … 349 349 350 350 351 352 353 351 //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// 354 352 … … 364 362 365 363 366 367 364 $this->add_responsive_control( 368 365 'me_product_item_border_radius', … … 442 439 $this->end_controls_section(); 443 440 444 // image Style Section441 // image Style Section 445 442 $this->start_controls_section( 446 443 'me-product-image-section', … … 491 488 'me_img_animation', 492 489 [ 493 'label' => __( 'Transition', 'plugin-domain'),490 'label' => __('Transition', 'plugin-domain'), 494 491 'type' => Controls_Manager::SLIDER, 495 'size_units' => 'px',492 'size_units' => 'px', 496 493 'range' => [ 497 494 'px' => [ … … 518 515 519 516 $this->end_controls_tabs(); 520 /////////////////////////////////////////////////////////////////////////517 ///////////////////////////////////////////////////////////////////////// 521 518 522 519 $this->add_responsive_control( … … 546 543 $this->end_controls_section(); 547 544 548 // Title Style Section545 // Title Style Section 549 546 $this->start_controls_section( 550 547 'me-product-title-section', … … 647 644 $this->end_controls_section(); 648 645 649 // Price Style Section646 // Price Style Section 650 647 $this->start_controls_section( 651 648 'me_product-price-section', … … 732 729 $this->end_controls_section(); 733 730 734 // Rating Style Section731 // Rating Style Section 735 732 $this->start_controls_section( 736 733 'me_product-rating-section', … … 1168 1165 1169 1166 1170 // Pagination Style Section1167 // Pagination Style Section 1171 1168 $this->start_controls_section( 1172 1169 'me-product-pagination-section', … … 1380 1377 1381 1378 1382 1383 1379 $this->end_controls_tab(); 1384 1380 … … 1547 1543 ] 1548 1544 ); 1549 1550 1545 1551 1546 … … 1941 1936 add_filter('product_custom_limit', array($this, 'custom_product_limit')); 1942 1937 1938 $mobile_width = 100 / $this->get_settings_for_display('me_columns_mobile'); 1939 $tablet_width = 100 / $this->get_settings_for_display('me_columns_tablet'); 1943 1940 require_once(ME_Path . 'addons/widgets/woo-product-archive/master_archive_products.php'); 1944 1941 1942 ?> 1943 <style> 1944 @media screen and (max-width: 767px) { 1945 .woocommerce ul.products[class*=columns-] li.product, .woocommerce-page ul.products[class*=columns-] li.product { 1946 width: <?= $mobile_width ?>%; 1947 } 1948 } 1949 1950 @media screen and (min-width: 768px) and (max-width: 1024px) { 1951 .woocommerce ul.products[class*=columns-] li.product, .woocommerce-page ul.products[class*=columns-] li.product { 1952 width: <?= $tablet_width ?>%; 1953 clear:none; 1954 } 1955 } 1956 </style> 1957 <?php 1945 1958 $mw_shortcode = new \Master_Archive_Products($settings); 1946 1959 $shop_content = $mw_shortcode->get_content(); 1947 1960 1948 echo $shop_content;1961 echo $shop_content; 1949 1962 1950 1963 -
master-elements/trunk/changelog.txt
r2409023 r2410957 1 02/11/2020 2 3 Version 7.4 4 5 [New] Master Archive Col 6 1 7 29/10/2020 2 8 -
master-elements/trunk/masterelements.php
r2409023 r2410957 10 10 * Plugin URI: https://akdesigner.com/ 11 11 * Author: TeamDevBunch 12 * Version: 7. 312 * Version: 7.4 13 13 * Tested up to: 5.5 14 14 * Author URI: https://devbunch.com/ -
master-elements/trunk/readme.txt
r2409023 r2410957 64 64 65 65 == Changelog == 66 = 02/11/2020 Version 7.4 = 67 * [Fix] Master Archive Col 68 66 69 = 29/10/2020 Version 7.3 = 67 70 * [New] Master Archive Control
Note: See TracChangeset
for help on using the changeset viewer.