hangar-wp-theme/README.md

24 lines
699 B
Markdown
Raw Normal View History

2022-06-28 12:19:01 +02:00
## logo howto
2022-06-28 12:23:44 +02:00
To change logo change content of `images/logo.gif` to desired logo to be displayed wich is called in file [header.php line #94](https://git.hangar.org/hangar-tech/hangar-wp-theme/src/branch/test/header.php#L94)
2021-02-18 14:02:08 +01:00
2022-06-28 12:19:01 +02:00
## opciones de las páginas de artistas
2021-02-18 14:13:09 +01:00
2022-06-28 12:23:44 +02:00
editar el docuemnto `seccions.php` para controlar la visualización de las páginas
```
if ($pare == 2) : //artistes residents
$tipus = 'art';
elseif ($pare == 46565) : //artistes residents estada curta
$tipus = 'art';
elseif ($pare == 136) : //desc+arregues
$tipus = 'desc';
elseif ($pare == 74) : //equip
$tipus = 'equip';
elseif ($pare == 40378) : //patronat
$tipus = 'equip';
else:
$tipus = 'pag';
endif;
```