1
zivXP
Switching themes
  • 2023/2/23 9:01

  • zivXP

  • Not too shy to talk

  • Posts: 113

  • Since: 2006/2/9 1


Is it possible to switch themes with a button?

2
heyula
Re: Switching themes
  • 2023/2/24 15:08

  • heyula

  • Theme Designer

  • Posts: 605

  • Since: 2008/4/24


There is already a block for this. Themes block in the system module. But if you want to do it with a button, you can use the code below. domain.com/index.php?xoops_theme_select=XH-003
le="color: #000000"><?php <div class="btn-group" role="group" aria-label="Basic mixed styles example"> <button type="button" class="btn btn-danger"><a href="https://domain.com/index.php?xoops_theme_select=XH-003">Tema 1</button> <button type="button" class="btn btn-warning"><a href="https://domain.com/index.php?xoops_theme_select=XH-004">Tema 2</button> <button type="button" class="btn btn-success"><a href="https://domain.com/index.php?xoops_theme_select=XH-005">Tema 3</button> </div>
Resized Image

3
zivXP
Re: Switching themes
  • 2023/2/24 16:44

  • zivXP

  • Not too shy to talk

  • Posts: 113

  • Since: 2006/2/9 1


Quote:

heyula wrote:
There is already a block for this.
Themes block in the system module.

But if you want to do it with a button, you can use the code below.

domain.com/index.php?xoops_theme_select=XH-003


Thank you. This is what I was looking for. I will try to implement.