Compare commits

...

2 Commits

Author SHA1 Message Date
5d437581bf removing the poiinter events none on acf old website fields
All checks were successful
continuous-integration/drone/push Build is passing
2024-11-22 09:59:50 +01:00
c081091fac few label translation for post type chantier 2024-11-22 09:59:36 +01:00
2 changed files with 11 additions and 2 deletions

View File

@ -28,7 +28,16 @@ function metiers_patrimoine_create_posttype()
array( array(
'labels' => array( 'labels' => array(
'name' => __('Chantiers', 'metiers-patrimoine-theme'), 'name' => __('Chantiers', 'metiers-patrimoine-theme'),
'singular_name' => __('Chantier', 'metiers-patrimoine-theme') 'singular_name' => __('Chantier', 'metiers-patrimoine-theme'),
'add_new' => __('Ajouter un chantier', 'metiers-patrimoine-theme'),
'add_new_item' => __('Ajouter un chantier', 'metiers-patrimoine-theme'),
'edit_item' => __('Modifier le chantier', 'metiers-patrimoine-theme'),
'new_item' => __('Nouveau chantier', 'metiers-patrimoine-theme'),
'view_item' => __('Voir le chantier', 'metiers-patrimoine-theme'),
'search_items' => __('Rechercher un chantier', 'metiers-patrimoine-theme'),
'not_found' => __('Aucun chantier trouvé', 'metiers-patrimoine-theme'),
'not_found_in_trash' => __('Aucun chantier trouvé dans la corbeille', 'metiers-patrimoine-theme'),
), ),
'public' => true, 'public' => true,
'has_archive' => true, 'has_archive' => true,

View File

@ -38,7 +38,7 @@ body.post-type-artisans {
@apply opacity-60; @apply opacity-60;
* { * {
cursor: not-allowed; cursor: not-allowed;
pointer-events: none; /* pointer-events: none; */
} }
} }