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.

ParameterTypeDescription
$versionstringPlatform version. By default it takes the WooCommerce version.

Changelog

VersionDescription
3.0.0Introduced

Usage Example

add_filter('sequra_platform_options_version', function($version){
  return '9.6.0';
});