Changeset 2008551
- Timestamp:
- 01/08/2019 05:17:18 PM (7 years ago)
- Location:
- poshtiban/trunk
- Files:
-
- 3 edited
-
includes/woocommerce.class.php (modified) (2 diffs)
-
poshtiban-wordpress-plugin.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
poshtiban/trunk/includes/woocommerce.class.php
r1983768 r2008551 687 687 } 688 688 } 689 $show_title = true; 690 include Poshtiban_PATH . '/templates/order-downloads.php'; 689 $show_title = false; 690 if( apply_filters('poshtiban_show_download_template', true, $this->type) ) { 691 include Poshtiban_PATH . '/templates/order-downloads.php'; 692 } 693 do_action('poshtiban_downloads_template', $downloads, $show_title); 691 694 } 692 695 … … 719 722 } 720 723 $show_title = false; 721 include Poshtiban_PATH . '/templates/order-downloads.php'; 724 if( apply_filters('poshtiban_show_download_template', true, $this->type) ) { 725 include Poshtiban_PATH . '/templates/order-downloads.php'; 726 } 727 do_action('poshtiban_downloads_template', $downloads, $show_title); 722 728 } 723 729 -
poshtiban/trunk/poshtiban-wordpress-plugin.php
r1983768 r2008551 4 4 Plugin URI: https://poshtiban.com/site/user-guide/poshtiban-wordpress-plugin 5 5 Description: A complete storage solution for wordpress websites. 6 Version: 1. 2.06 Version: 1.3.0 7 7 Author: Mojtaba Darvishi 8 8 Author URI: http://mojtaba.in -
poshtiban/trunk/readme.txt
r1983768 r2008551 40 40 == Changelog == 41 41 42 = 1.3.0 = 43 44 * Add `poshtiban_show_download_template` filter 45 * Add `poshtiban_downloads_template` action 46 47 48 42 49 = 1.2.0 = 43 50
Note: See TracChangeset
for help on using the changeset viewer.