This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /* | |
| Plugin Name: Blog Categories Sorting | |
| Plugin URI: https://premium.wpmudev.org/ | |
| Description: Sort Blog Categories by name | |
| Author: Panos Lyrakis @ WPMUDEV | |
| Author URI: https://premium.wpmudev.org/ | |
| License: GPLv2 or later | |
| */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /* | |
| Plugin Name: MarletPress Control Product Prices | |
| Plugin URI: https://premium.wpmudev.org/ | |
| Description: A way to control MarketPress product prices so they don't get set to <= 0 | |
| Author: Panos Lyrakis @ WPMUDEV | |
| Author URI: https://premium.wpmudev.org/ | |
| License: GPLv2 or later | |
| */ | |
| if( ! class_exists( 'WPMUDEV_MP_Price_Control' ) ){ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /* | |
| Plugin Name: Front end assigned support tickets | |
| Plugin URI: https://premium.wpmudev.org/ | |
| Description: Adds a shortcode to display the assigned tickets for each user in front end | |
| Author: Panos Lyrakis @ WPMUDEV | |
| Author URI: https://premium.wpmudev.org/ | |
| License: GPLv2 or later | |
| */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /* | |
| Plugin Name: Autoconfirm appointments paid with MarketPress Manual Payment | |
| Plugin URI: https://premium.wpmudev.org/ | |
| Description: Requires Appointments+ and MarketPress | |
| Author: Panos Lyrakis @ WPMUDEV | |
| Author URI: https://premium.wpmudev.org/ | |
| License: GPLv2 or later | |
| */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /* | |
| Plugin Name: Custom archive virtual page for CoursePress | |
| Plugin URI: https://premium.wpmudev.org/ | |
| Description: Requires CoursePress 2.0 Pro | |
| Author: Panos Lyrakis @ WPMUDEV | |
| Author URI: https://premium.wpmudev.org/ | |
| License: GPLv2 or later | |
| */ | |
| if( ! class_exists( 'WPMUDEV_CP_Custom_Archive' ) ){ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /* | |
| Plugin Name: Appointments Providers admin menu | |
| Plugin URI: https://premium.wpmudev.org/ | |
| Description: Adds an admin menu for providers to manage and export their appointments. Allowed only to edit their appointments and set their selves as providers for new appointments. | |
| Author: Panos Lyrakis @ WPMUDEV | |
| Author URI: https://premium.wpmudev.org/ | |
| License: GPLv2 or later | |
| */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /* | |
| Plugin Name: Front end upfront support tickets | |
| Plugin URI: https://premium.wpmudev.org/ | |
| Description: Adds a shortcode to display the support tickets list and single ticket in front end | |
| Author: Panos Lyrakis @ WPMUDEV | |
| Author URI: https://premium.wpmudev.org/ | |
| License: GPLv2 or later | |
| */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /* | |
| Plugin Name: Appointments+ Update Inventory | |
| Plugin URI: https://premium.wpmudev.org/ | |
| Description: Requires Appointments+ and MarketPress. After new appointment it should update product incventory. | |
| Author: Panos Lyrakis @ WPMUDEV | |
| Author URI: https://premium.wpmudev.org/ | |
| License: GPLv2 or later | |
| */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| add_filter( 'ms_model_settings__get', function( $value, $property, $obj ){ | |
| if( $property == 'currency' ){ | |
| $value = '£'; | |
| } | |
| return $value; | |
| }, 10 , 3 ); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| add_filter( 'map_meta_cap', function( $caps, $cap, $user_id, $args ){ | |
| if( ! isset( $_FILES['support-attachment'] ) ){ | |
| return $caps; | |
| } | |
| $allowed_mimes = array( | |
| 'jpg' =>'image/jpg', | |
| 'jpeg' =>'image/jpeg', | |
| 'gif' => 'image/gif', |