diff --git a/Public/ContactForm/Infrastructure/Ui/ContactFormRenderer.php b/Public/ContactForm/Infrastructure/Ui/ContactFormRenderer.php index 879ca7e3..86096dcf 100644 --- a/Public/ContactForm/Infrastructure/Ui/ContactFormRenderer.php +++ b/Public/ContactForm/Infrastructure/Ui/ContactFormRenderer.php @@ -371,7 +371,7 @@ final class ContactFormRenderer implements RendererInterface $html .= '
'; $html .= ''; $html .= '
'; - $html .= sprintf('
%s
', esc_html($phoneLabel)); + $html .= sprintf('%s', esc_html($phoneLabel)); $html .= sprintf('

%s

', esc_html($phoneValue)); $html .= '
'; $html .= '
'; @@ -380,7 +380,7 @@ final class ContactFormRenderer implements RendererInterface $html .= '
'; $html .= ''; $html .= '
'; - $html .= sprintf('
%s
', esc_html($emailLabel)); + $html .= sprintf('%s', esc_html($emailLabel)); $html .= sprintf('

%s

', esc_html($emailValue)); $html .= '
'; $html .= '
'; @@ -389,7 +389,7 @@ final class ContactFormRenderer implements RendererInterface $html .= '
'; $html .= ''; $html .= '
'; - $html .= sprintf('
%s
', esc_html($locationLabel)); + $html .= sprintf('%s', esc_html($locationLabel)); $html .= sprintf('

%s

', esc_html($locationValue)); $html .= '
'; $html .= '
'; diff --git a/Public/RelatedPost/Infrastructure/Ui/RelatedPostRenderer.php b/Public/RelatedPost/Infrastructure/Ui/RelatedPostRenderer.php index 075fd12e..2d2dcc1c 100644 --- a/Public/RelatedPost/Infrastructure/Ui/RelatedPostRenderer.php +++ b/Public/RelatedPost/Infrastructure/Ui/RelatedPostRenderer.php @@ -312,7 +312,7 @@ final class RelatedPostRenderer implements RendererInterface $html .= '
'; $html .= '
'; $html .= sprintf( - '
%s
', + '%s', esc_html($title) ); $html .= '
'; diff --git a/Schemas/top-notification-bar.json b/Schemas/top-notification-bar.json index 51441dd9..9fbd590b 100644 --- a/Schemas/top-notification-bar.json +++ b/Schemas/top-notification-bar.json @@ -92,11 +92,11 @@ "link_url": { "type": "url", "label": "URL del enlace", - "default": "#", + "default": "/suscripcion-vip", "editable": true, "required": true, "placeholder": "https://", - "description": "URL de destino del enlace" + "description": "URL de destino del enlace. Fase 4.4: Debe coincidir con otros CTAs del mismo texto" } } },