Skip to main content
Solved

Dynamic Button URL

  • October 1, 2025
  • 2 replies
  • 41 views

Forum|alt.badge.img
  • Contributor I
  • 1 reply

I’m not sure whether anybody else has come across this or if it is even possible.

 

I am trying to change the contents of a buttons URL based on the profiles $locale.

Based on the 2 country code, I want to direct them to a different website.

Is this possible?

Best answer by whereisjad

@NBiff in order to accomplish what you are describing you will need to script it via Django and HTML logic.

You add a HTML block and in the code section like below:

{% if profile.locale == "en" %}
<a href="https://example.com/en-signup"
style="display:inline-block; padding:12px 24px; background:#000; color:#fff; border-radius:6px; text-decoration:none;">
Subscribe Now
</a>
{% elsif profile.locale == "it" %}
<a href="https://example.com/it-iscriviti"
style="display:inline-block; padding:12px 24px; background:#000; color:#fff; border-radius:6px; text-decoration:none;">
Iscriviti Ora
</a>
{% elsif profile.locale == "fr" %}
<a href="https://example.com/fr-inscription"
style="display:inline-block; padding:12px 24px; background:#000; color:#fff; border-radius:6px; text-decoration:none;">
Inscrivez-vous
</a>
{% else %}
<a href="https://example.com/global-join"
style="display:inline-block; padding:12px 24px; background:#000; color:#fff; border-radius:6px; text-decoration:none;">
Join Us
</a>
{% endif %}

 

2 replies

whereisjad
Expert Problem Solver IV
Forum|alt.badge.img+15
  • Expert Problem Solver IV
  • 131 replies
  • Answer
  • October 1, 2025

@NBiff in order to accomplish what you are describing you will need to script it via Django and HTML logic.

You add a HTML block and in the code section like below:

{% if profile.locale == "en" %}
<a href="https://example.com/en-signup"
style="display:inline-block; padding:12px 24px; background:#000; color:#fff; border-radius:6px; text-decoration:none;">
Subscribe Now
</a>
{% elsif profile.locale == "it" %}
<a href="https://example.com/it-iscriviti"
style="display:inline-block; padding:12px 24px; background:#000; color:#fff; border-radius:6px; text-decoration:none;">
Iscriviti Ora
</a>
{% elsif profile.locale == "fr" %}
<a href="https://example.com/fr-inscription"
style="display:inline-block; padding:12px 24px; background:#000; color:#fff; border-radius:6px; text-decoration:none;">
Inscrivez-vous
</a>
{% else %}
<a href="https://example.com/global-join"
style="display:inline-block; padding:12px 24px; background:#000; color:#fff; border-radius:6px; text-decoration:none;">
Join Us
</a>
{% endif %}

 


Forum|alt.badge.img
  • Author
  • Contributor I
  • 1 reply
  • October 1, 2025

Thank you ​@whereisjad