wordpress theme for hangar website
Go to file
jorge-vitrubio cccbad54aa increase opacity to gallery arrow 2022-11-08 13:06:47 +01:00
_not_used footer not approved for 2022 restyle, had more space around 2022-10-19 09:45:14 +02:00
css modified arrow in gallery, image size in news-thumb pfc pft 2022-11-07 18:04:40 +01:00
custom-login styled when focused, active and visited. 2022-07-19 11:09:19 +02:00
images scaled svg and positiones logo 2022-06-30 16:40:32 +02:00
languages translation for footer credits 2022-07-12 22:27:49 +02:00
library commented all code to prevent erasing the file 2022-07-05 07:50:50 +02:00
page-templates added post 59095 projectes-residents to page-template loop 2022-11-03 17:09:44 +01:00
.gitignore corregida visualización plugin 2022-02-01 10:17:29 +01:00
404.php first commit for branc test tag v3.0 to start devlopment for 2022 sept web milestone" 2022-06-28 11:55:38 +02:00
LICENSE Initial commit 2021-02-18 14:02:08 +01:00
README.md updated the readme instructions 2022-07-19 15:15:26 +02:00
caixes.php removed wrong coment 2022-11-03 17:05:23 +01:00
category-news.php first commit for branc test tag v3.0 to start devlopment for 2022 sept web milestone" 2022-06-28 11:55:38 +02:00
category.php changed category preview to be small boxes 2022-09-02 14:33:14 +02:00
comments.php block comments from template 2022-09-05 11:12:23 +02:00
footer.php styled footer more compact 2022-09-23 11:17:33 +02:00
functions.php cleaned up code and unified the calls for short content and excerpt 2022-09-23 19:09:38 +02:00
header.php changed logo from gif to svg 2022-06-30 16:29:22 +02:00
home.php added cases for tipus artistes, equip in homepage, wasn't up to date 2022-09-27 10:18:26 +02:00
index.php cleaned up index template 2022-09-27 10:19:21 +02:00
loop.php removed comments from the loop code 2022-09-27 10:23:17 +02:00
page.php cleaned up code, removed comments and pagin code 2022-09-27 10:29:26 +02:00
related-post.php first commit for branc test tag v3.0 to start devlopment for 2022 sept web milestone" 2022-06-28 11:55:38 +02:00
screenshot.png first commit for branc test tag v3.0 to start devlopment for 2022 sept web milestone" 2022-06-28 11:55:38 +02:00
search.php first commit for branc test tag v3.0 to start devlopment for 2022 sept web milestone" 2022-06-28 11:55:38 +02:00
sidebar-primary.php first commit for branc test tag v3.0 to start devlopment for 2022 sept web milestone" 2022-06-28 11:55:38 +02:00
sidebar-secondary.php first commit for branc test tag v3.0 to start devlopment for 2022 sept web milestone" 2022-06-28 11:55:38 +02:00
single.php first commit for branc test tag v3.0 to start devlopment for 2022 sept web milestone" 2022-06-28 11:55:38 +02:00
style.css increase opacity to gallery arrow 2022-11-08 13:06:47 +01:00
tag.php first commit for branc test tag v3.0 to start devlopment for 2022 sept web milestone" 2022-06-28 11:55:38 +02:00
taxonomy.php first commit for branc test tag v3.0 to start devlopment for 2022 sept web milestone" 2022-06-28 11:55:38 +02:00

README.md

hangar wordpress theme

side menu and logos howto

The side panel is controlled throght menus and widgets.

widgets

The menu shows the content of "Zona de ginys primaria" or "Primary widgets area", inside we have different widgets to control the menus

Each menu widget calls a submenu.

menus

The menus content is changed in the menus control pannel

names now are defined by "order" but names can be changed as well content

logo howto

To change logo change content of images/logo.gif to desired logo to be displayed wich is called in file header.php line #94

opciones de las páginas de artistas

editar el docuemnto seccions.php para controlar la visualización de las páginas

if ($pare == 2 | 58856) : //artistes residents post=2 post=58856 page change on 2022 07 19th
  $tipus = 'art';
elseif ($pare == 46565) : //artistes residents estada curta post=46565
    $tipus = 'art';
elseif ($pare == 46572) : //artistes amb beca post=46572
    $tipus = 'art';
elseif ($pare == 136) :  //desc+arregues post=136
  $tipus = 'desc';
elseif ($pare == 74) :  //equip post=74
  $tipus = 'equip';
elseif ($pare == 40378) :  //patronat post=40378
  $tipus = 'equip';
else:
  $tipus = 'pag';
endif;