sequra_platform_options_version
Hook
Filter
Filter the version to be used in the platform options.
Description
This filter allows modifying the the platform version string to be used in the platform options.
Parameter | Type | Description |
---|---|---|
$version | string | Platform version. By default it takes the WooCommerce version. |
Changelog
Version | Description |
---|---|
3.0.0 | Introduced |
Usage Example
add_filter('sequra_platform_options_version', function($version){
return '9.6.0';
});
Updated about 1 month ago