sequra_mini_widget_default_message_below_limit

Hook Filter

Filter the default below limit message for the mini widget.

Description

This filter allows modifying the default message shown to shopper in cart and listing promotional widgets when the price is below the minimum limit required to pay with seQura.

ParameterTypeDescription
$messagesarrayOne message per country/language. The key must be an ISO code representing the country and the value the string to show

Changelog

VersionDescription
3.0.0Introduced

Usage Example

add_filter('sequra_mini_widget_default_message_below_limit', function($statuses){
  return [
    'ES' => 'Desde %s/mes con seQura',
		'FR' => 'À partir de %s/mois avec seQura',
		'IT' => 'Da %s/mese con seQura',
		'PT' => 'De %s/mês com seQura',
  ];
});