sequrapayment_support_url
Hook Filter
Filters the URL of the plugin support.
Description
This filter allows modifying the URL of the plugin's documentation displayed on the Plugins screen.
| Parameter | Type | Description |
|---|---|---|
$url | string | Support URL |
Changelog
| Version | Description |
|---|---|
| 2.0.0 | Introduced |
Usage Example
add_filter('sequrapayment_support_url', function($url){
$url = 'https://something.else.com';
return $url;
});Updated 6 months ago