Compare commits
No commits in common. "83a4c787d13f59690aa9b48339f8cd9f37c93ccd" and "d738a8b7b1ee99b00d0b3dea6de141203d7c025b" have entirely different histories.
83a4c787d1
...
d738a8b7b1
|
@ -17,7 +17,7 @@ Theme URI: https://git.hangar.org/xarxaprod/
|
||||||
Author: Hangar.org Tech Lab - hangar.org
|
Author: Hangar.org Tech Lab - hangar.org
|
||||||
Author URI: https://hangar.org
|
Author URI: https://hangar.org
|
||||||
Description: theme for the <a href="https://xarxaprod.cat">XarxaProd</a>. Inclou la possibilitat de publicar, catalogar i cercar ajuts, resoldre dubtes amb FAQs i altres. Design by Eudald Van der Pla <a href="https://vanderpla.com">vanderpla.com</a>. Coding template and theme by <a href="https://vitrubio.net">Jorge - vitrubio.net</a>
|
Description: theme for the <a href="https://xarxaprod.cat">XarxaProd</a>. Inclou la possibilitat de publicar, catalogar i cercar ajuts, resoldre dubtes amb FAQs i altres. Design by Eudald Van der Pla <a href="https://vanderpla.com">vanderpla.com</a>. Coding template and theme by <a href="https://vitrubio.net">Jorge - vitrubio.net</a>
|
||||||
Version: 1.6.5
|
Version: 1.6.1
|
||||||
Tested up to: 6.4
|
Tested up to: 6.4
|
||||||
Requires PHP: 7.4
|
Requires PHP: 7.4
|
||||||
License: GNU General Public License v3 or later
|
License: GNU General Public License v3 or later
|
||||||
|
@ -1742,9 +1742,7 @@ Add your custom styles in this file so it is easier to update the theme.
|
||||||
min-height: 40vh;
|
min-height: 40vh;
|
||||||
}
|
}
|
||||||
|
|
||||||
.edit-post-visual-editor__content-area .editor-styles-wrapper .archive-posts.archive-posts-map,
|
.edit-post-visual-editor__content-area .editor-styles-wrapper .post-type-archive-xarxaprod-associat .archive-posts {
|
||||||
.edit-post-visual-editor__content-area .editor-styles-wrapper .archive-posts.archive-xarxaprod-members,
|
|
||||||
.edit-post-visual-editor__content-area .editor-styles-wrapper .archive-postsarchive-xarxaprod-associats {
|
|
||||||
grid-template-columns: 1fr;
|
grid-template-columns: 1fr;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -32,61 +32,32 @@ get_header();
|
||||||
<?php xarxaprod_show_leaflet_map(); // function defined in the plugin ?>
|
<?php xarxaprod_show_leaflet_map(); // function defined in the plugin ?>
|
||||||
</figure>
|
</figure>
|
||||||
|
|
||||||
<?php
|
<?php if ( have_posts() ) : ?>
|
||||||
//if ( have_posts() ) :
|
<?php while ( have_posts() ) : the_post();
|
||||||
// while ( have_posts() ) : the_post();
|
xarxaprod_show_leaflet_associat_blob(); // function defined in the plugin
|
||||||
// xarxaprod_show_leaflet_associat_blob(); // function defined in the plugin
|
//get_template_part( 'template-parts/section', 'eachmember' );
|
||||||
// endwhile;
|
endwhile; ?>
|
||||||
//else :
|
|
||||||
// get_template_part( 'template-parts/content', 'none' );
|
|
||||||
//endif;
|
|
||||||
?>
|
|
||||||
|
|
||||||
<content class="archive-posts archive-posts-map archive-xarxaprod-members archive-xarxaprod-associats <?php xarxaprod_class_posttype(); ?>">
|
|
||||||
<?php
|
|
||||||
// https://support.advancedcustomfields.com/forums/topic/wp_query-using-meta_query-for-an-acf-checkbox-field/#post-145830
|
|
||||||
// https://www.advancedcustomfields.com/resources/checkbox/#query-posts
|
|
||||||
// https://barn2.com/blog/querying-posts-by-custom-field-acfi/
|
|
||||||
|
|
||||||
$the_query_associat = new WP_Query(
|
|
||||||
array(
|
|
||||||
'post_type' => 'xarxaprod-associat',
|
|
||||||
'order' => 'ASC', //order a b c d ...
|
|
||||||
'order_by' => 'name', // by name slug
|
|
||||||
'posts_per_page' => '-1' //all of them
|
|
||||||
)
|
|
||||||
);
|
|
||||||
?>
|
|
||||||
|
|
||||||
<?php if ( $the_query_associat->have_posts() ) : ?>
|
|
||||||
<?php while ( $the_query_associat->have_posts() ) : $the_query_associat->the_post(); ?>
|
|
||||||
|
|
||||||
<?php xarxaprod_show_leaflet_associat_blob(); ?>
|
|
||||||
|
|
||||||
<?php endwhile;//end of the loop ?>
|
|
||||||
<?php wp_reset_postdata(); ?>
|
|
||||||
<?php endif; //end query associat ?>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<ul class="xarxaprod-label">
|
||||||
|
<?php while ( have_posts() ) : the_post(); ?>
|
||||||
|
<li>
|
||||||
|
<a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>" rel="bookmark">
|
||||||
|
<?php the_title(); ?>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<?php endwhile; ?>
|
||||||
|
</ul>
|
||||||
|
|
||||||
<?php
|
<?php
|
||||||
// nuvol de nomb sde fabriques
|
//the_posts_navigation();
|
||||||
echo '<ul class="xarxaprod-label">';
|
|
||||||
while ( have_posts() ) : the_post();
|
else :
|
||||||
echo '<li>';
|
|
||||||
echo '<a href="';
|
get_template_part( 'template-parts/content', 'none' );
|
||||||
the_permalink();
|
|
||||||
echo '" title="';
|
endif;
|
||||||
the_title();
|
?>
|
||||||
echo '" rel="bookmark">';
|
|
||||||
the_title();
|
|
||||||
echo '</a>';
|
|
||||||
echo '</li>';
|
|
||||||
endwhile;
|
|
||||||
echo '</ul>';
|
|
||||||
?>
|
|
||||||
|
|
||||||
</content>
|
</content>
|
||||||
<section id="filteredassociats" class="xarxaprod-filtered-content xarxaprod-filtered-associats xarxaprod-associats-filtrats">
|
<section id="filteredassociats" class="xarxaprod-filtered-content xarxaprod-filtered-associats xarxaprod-associats-filtrats">
|
||||||
</section>
|
</section>
|
||||||
|
|
|
@ -31,48 +31,21 @@ get_header();
|
||||||
|
|
||||||
<content class="archive-posts <?php xarxaprod_class_posttype(); ?>">
|
<content class="archive-posts <?php xarxaprod_class_posttype(); ?>">
|
||||||
|
|
||||||
<?php
|
<?php if ( have_posts() ) : ?>
|
||||||
// loop by default in archive.php
|
<?php while ( have_posts() ) : the_post();
|
||||||
//if ( have_posts() ) :
|
|
||||||
// while ( have_posts() ) : the_post();
|
get_template_part( 'template-parts/section', 'eachconvo' );
|
||||||
// get_template_part( 'template-parts/section', 'eachconvo' );
|
|
||||||
// endwhile;
|
endwhile;
|
||||||
// the_posts_navigation();
|
|
||||||
//else :
|
|
||||||
// get_template_part( 'template-parts/content', 'none' );
|
|
||||||
//endif;
|
|
||||||
?>
|
|
||||||
|
|
||||||
<?php
|
the_posts_navigation();
|
||||||
// https://support.advancedcustomfields.com/forums/topic/wp_query-using-meta_query-for-an-acf-checkbox-field/#post-145830
|
|
||||||
// https://www.advancedcustomfields.com/resources/checkbox/#query-posts
|
|
||||||
// https://barn2.com/blog/querying-posts-by-custom-field-acfi/
|
|
||||||
$the_query_convo = new WP_Query(
|
|
||||||
array(
|
|
||||||
'post_type' => 'xarxaprod-convo',
|
|
||||||
'order_by' => 'meta_value', //order by meta value
|
|
||||||
'meta_key' => 'xxp_convo_apply_end', // order by meta key convo apply end
|
|
||||||
'order' => 'ASC', //order ascendent
|
|
||||||
'posts_per_page' => '-1', //show all
|
|
||||||
'meta_query' => array(
|
|
||||||
array( //filter results show only older than today
|
|
||||||
'key' => 'xxp_convo_apply_end',
|
|
||||||
'value' => date("Y-m-d"), // consider using date_i18n() https://developer.wordpress.org/reference/functions/date_i18n/
|
|
||||||
'compare' => '>=', //show events from today and later
|
|
||||||
'type' => 'DATE',
|
|
||||||
)
|
|
||||||
)
|
|
||||||
)
|
|
||||||
);
|
|
||||||
?>
|
|
||||||
<?php if ( $the_query_convo->have_posts() ) : ?>
|
|
||||||
<?php while ( $the_query_convo->have_posts() ) : $the_query_convo->the_post(); ?>
|
|
||||||
|
|
||||||
<?php get_template_part( 'template-parts/section', 'eachconvo' , $the_query_convo); ?>
|
else :
|
||||||
|
|
||||||
<?php endwhile;//end of the loop ?>
|
get_template_part( 'template-parts/content', 'none' );
|
||||||
<?php wp_reset_postdata(); ?>
|
|
||||||
<?php endif; ?>
|
endif;
|
||||||
|
?>
|
||||||
|
|
||||||
</content>
|
</content>
|
||||||
<section id="filteredcall" class="xarxaprod-filtered-content xarxaprod-filtered-convos xarxaprod-convos-filtrats">
|
<section id="filteredcall" class="xarxaprod-filtered-content xarxaprod-filtered-convos xarxaprod-convos-filtrats">
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -2,7 +2,7 @@
|
||||||
/**
|
/**
|
||||||
* The template for displaying the "agenda" activities with search capabilities
|
* The template for displaying the "agenda" activities with search capabilities
|
||||||
*
|
*
|
||||||
* Template Name: Agenda Arxiu
|
* Template Name: Pagina Agenda
|
||||||
*
|
*
|
||||||
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/
|
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/
|
||||||
* @link https://developer.wordpress.org/themes/template-files-section/page-template-files/
|
* @link https://developer.wordpress.org/themes/template-files-section/page-template-files/
|
||||||
|
|
|
@ -1,96 +0,0 @@
|
||||||
<?php
|
|
||||||
/**
|
|
||||||
* The template for displaying the "agenda" activities with search capabilities
|
|
||||||
*
|
|
||||||
* Template Name: Agenda actual cercador
|
|
||||||
*
|
|
||||||
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/
|
|
||||||
* @link https://developer.wordpress.org/themes/template-files-section/page-template-files/
|
|
||||||
*
|
|
||||||
* @package Xarxaprod_theme
|
|
||||||
* @since 1.0
|
|
||||||
*/
|
|
||||||
|
|
||||||
get_header();
|
|
||||||
?>
|
|
||||||
<!-- page-templates convos-search-php -->
|
|
||||||
<main id="primary" class="site-main">
|
|
||||||
|
|
||||||
<?php if ( have_posts() ) : ?>
|
|
||||||
|
|
||||||
<?php
|
|
||||||
while ( have_posts() ) :
|
|
||||||
the_post();
|
|
||||||
|
|
||||||
get_template_part( 'template-parts/content', 'page' );
|
|
||||||
|
|
||||||
endwhile;
|
|
||||||
|
|
||||||
the_posts_navigation();
|
|
||||||
|
|
||||||
else :
|
|
||||||
//get_template_part( 'template-parts/content', 'none' );
|
|
||||||
|
|
||||||
endif;
|
|
||||||
?>
|
|
||||||
<section id="filteredagenda" class="xarxaprod-filtered-content xarxaprod-filtered-agenda xarxaprod-activitats-filtrats category-agenda xarxaprod-activitats">
|
|
||||||
|
|
||||||
<aside id="agendafilter" class="xarxaprod-filter-agenda xarxaprod-fitre-agenda">
|
|
||||||
<?php include_once( ABSPATH . 'wp-admin/includes/plugin.php' ); if ( is_plugin_active( 'xarxaprod-wp-plugin/xarxaprod-wp-plugin.php' ) ) { // if plugin active do?>
|
|
||||||
<?php } //end if is_plugin_active ?>
|
|
||||||
<?php wp_nav_menu(
|
|
||||||
array(
|
|
||||||
'theme_location' => 'menu-3',
|
|
||||||
'menu_id' => 'agenda-menu',
|
|
||||||
)
|
|
||||||
); ?>
|
|
||||||
</aside>
|
|
||||||
|
|
||||||
<content class="archive-posts <?php //xarxaprod_class_posttype(); ?>">
|
|
||||||
<?php
|
|
||||||
$the_query_archive_agenda = new WP_Query(
|
|
||||||
array(
|
|
||||||
'post_type' => 'post',
|
|
||||||
'posts_per_page' => '40', //show all => -1
|
|
||||||
'tax_query' => array(
|
|
||||||
array(
|
|
||||||
'taxonomy' => 'category',
|
|
||||||
'field' => 'slug',
|
|
||||||
'terms' => 'activitats'
|
|
||||||
)
|
|
||||||
),
|
|
||||||
//'order_by' => 'meta_value', //order by meta value
|
|
||||||
//'meta_key' => 'xxp_convo_apply_end', // order by meta key convo apply end
|
|
||||||
'order' => 'ASC', //order ascendent
|
|
||||||
'meta_query' => array(
|
|
||||||
array( //filter results show only older than today
|
|
||||||
'key' => 'xxp_agenda_date_end',
|
|
||||||
'value' => date("Y-m-d"), // consider using date_i18n() https://developer.wordpress.org/reference/functions/date_i18n/
|
|
||||||
'compare' => '>=', //show events before today
|
|
||||||
'type' => 'DATE',
|
|
||||||
)
|
|
||||||
)
|
|
||||||
)
|
|
||||||
);
|
|
||||||
?>
|
|
||||||
<?php if ( $the_query_archive_agenda->have_posts() ) : ?>
|
|
||||||
<?php while ( $the_query_archive_agenda->have_posts() ) : $the_query_archive_agenda->the_post(); ?>
|
|
||||||
|
|
||||||
<?php get_template_part( 'template-parts/section', 'each-agenda-entry' ); ?>
|
|
||||||
|
|
||||||
<?php endwhile;//end of the loop ?>
|
|
||||||
<?php
|
|
||||||
// pagination will not work for custom_query
|
|
||||||
// https://wordpress.stackexchange.com/a/120408
|
|
||||||
// how to fix it
|
|
||||||
the_posts_navigation();
|
|
||||||
?>
|
|
||||||
<?php wp_reset_postdata(); ?>
|
|
||||||
<?php endif; //end query convo ?>
|
|
||||||
</content>
|
|
||||||
|
|
||||||
</section>
|
|
||||||
</main><!-- #main -->
|
|
||||||
|
|
||||||
<?php
|
|
||||||
get_footer();
|
|
|
@ -1,150 +0,0 @@
|
||||||
<?php
|
|
||||||
/**
|
|
||||||
* The template for displaying the "convos" calls with search capabilities
|
|
||||||
*
|
|
||||||
* Template Name: Arxiu general
|
|
||||||
*
|
|
||||||
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/
|
|
||||||
* @link https://developer.wordpress.org/themes/template-files-section/page-template-files/
|
|
||||||
*
|
|
||||||
* @package Xarxaprod_theme
|
|
||||||
* @since 1.0
|
|
||||||
*/
|
|
||||||
|
|
||||||
get_header();
|
|
||||||
?>
|
|
||||||
<!-- page-templates convos-search-php -->
|
|
||||||
<main id="primary" class="site-main">
|
|
||||||
|
|
||||||
<?php if ( have_posts() ) : ?>
|
|
||||||
|
|
||||||
<header class="page-header">
|
|
||||||
</header><!-- .page-header -->
|
|
||||||
<?php
|
|
||||||
while ( have_posts() ) :
|
|
||||||
the_post();
|
|
||||||
|
|
||||||
get_template_part( 'template-parts/content', 'page' );
|
|
||||||
|
|
||||||
endwhile;
|
|
||||||
|
|
||||||
the_posts_navigation();
|
|
||||||
|
|
||||||
else :
|
|
||||||
get_template_part( 'template-parts/content', 'none' );
|
|
||||||
|
|
||||||
endif;
|
|
||||||
?>
|
|
||||||
<section id="filteredcalls" class="xarxaprod-filtered-content xarxaprod-filtered-content xarxaprod-filtered-calls xarxaprod-convos-filtrats">
|
|
||||||
|
|
||||||
<aside id="callsfilter" class="xarxaprod-filter-calls xarxaprod-fitre-convos">
|
|
||||||
<?php include_once( ABSPATH . 'wp-admin/includes/plugin.php' ); if ( is_plugin_active( 'xarxaprod-wp-plugin/xarxaprod-wp-plugin.php' ) ) { // if plugin active do?>
|
|
||||||
<?php xarxaprod_convos_filters_form(); // function defined in the plugin ?>
|
|
||||||
<?php } //end if is_plugin_active ?>
|
|
||||||
</aside>
|
|
||||||
|
|
||||||
<?php
|
|
||||||
// comparing dates
|
|
||||||
// https://wordpress.stackexchange.com/a/12305
|
|
||||||
$the_query_archive_convo = new WP_Query(
|
|
||||||
array(
|
|
||||||
'post_type' => 'xarxaprod-convo',
|
|
||||||
'order_by' => 'meta_value', //order by meta value
|
|
||||||
'meta_key' => 'xxp_convo_apply_end', // order by meta key convo apply end
|
|
||||||
'order' => 'ASC', //order ascendent
|
|
||||||
//'posts_per_page' => '-1', //show all
|
|
||||||
'posts_per_page' => '4',
|
|
||||||
'meta_query' => array(
|
|
||||||
array( //filter results show only older than today
|
|
||||||
'key' => 'xxp_convo_apply_end',
|
|
||||||
'value' => date("Y-m-d"), // consider using date_i18n() https://developer.wordpress.org/reference/functions/date_i18n/
|
|
||||||
'compare' => '<', //show events before today
|
|
||||||
'type' => 'DATE',
|
|
||||||
)
|
|
||||||
)
|
|
||||||
)
|
|
||||||
);
|
|
||||||
?>
|
|
||||||
<?php if ( $the_query_archive_convo->have_posts() ) : ?>
|
|
||||||
<content class="archive-posts archive-xarxaprod-convo <?php //xarxaprod_class_posttype(); ?>">
|
|
||||||
<?php while ( $the_query_archive_convo->have_posts() ) : $the_query_archive_convo->the_post(); ?>
|
|
||||||
|
|
||||||
<?php get_template_part( 'template-parts/section', 'eachconvo' ); ?>
|
|
||||||
|
|
||||||
<?php endwhile;//end of the loop ?>
|
|
||||||
<?php
|
|
||||||
// pagination will not work for custom_query
|
|
||||||
// https://wordpress.stackexchange.com/a/120408
|
|
||||||
// how to fix it
|
|
||||||
the_posts_navigation();
|
|
||||||
?>
|
|
||||||
<?php wp_reset_postdata(); ?>
|
|
||||||
</content>
|
|
||||||
<?php endif; //end query convo ?>
|
|
||||||
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
<section id="filteredagenda" class="xarxaprod-filtered-content xarxaprod-filtered-agenda xarxaprod-activitats-filtrats category-agenda xarxaprod-activitats">
|
|
||||||
|
|
||||||
<aside id="agendafilter" class="xarxaprod-filter-agenda xarxaprod-fitre-agenda">
|
|
||||||
<?php include_once( ABSPATH . 'wp-admin/includes/plugin.php' ); if ( is_plugin_active( 'xarxaprod-wp-plugin/xarxaprod-wp-plugin.php' ) ) { // if plugin active do?>
|
|
||||||
<?php } //end if is_plugin_active ?>
|
|
||||||
<?php wp_nav_menu(
|
|
||||||
array(
|
|
||||||
'theme_location' => 'menu-3',
|
|
||||||
'menu_id' => 'agenda-menu',
|
|
||||||
)
|
|
||||||
); ?>
|
|
||||||
</aside>
|
|
||||||
|
|
||||||
<?php
|
|
||||||
$the_query_archive_agenda = new WP_Query(
|
|
||||||
array(
|
|
||||||
'post_type' => 'post',
|
|
||||||
'posts_per_page' => '4', //show all => -1
|
|
||||||
'tax_query' => array(
|
|
||||||
array(
|
|
||||||
'taxonomy' => 'category',
|
|
||||||
'field' => 'slug',
|
|
||||||
'terms' => 'activitats'
|
|
||||||
)
|
|
||||||
),
|
|
||||||
//'order_by' => 'meta_value', //order by meta value
|
|
||||||
//'meta_key' => 'xxp_convo_apply_end', // order by meta key convo apply end
|
|
||||||
'order' => 'ASC', //order ascendent
|
|
||||||
'meta_query' => array(
|
|
||||||
array( //filter results show only older than today
|
|
||||||
'key' => 'xxp_agenda_date_end',
|
|
||||||
'value' => date("Y-m-d"), // consider using date_i18n() https://developer.wordpress.org/reference/functions/date_i18n/
|
|
||||||
'compare' => '<', //show events before today
|
|
||||||
'type' => 'DATE',
|
|
||||||
)
|
|
||||||
)
|
|
||||||
)
|
|
||||||
);
|
|
||||||
?>
|
|
||||||
<?php if ( $the_query_archive_agenda->have_posts() ) : ?>
|
|
||||||
<content class="archive-posts <?php //xarxaprod_class_posttype(); ?>">
|
|
||||||
<?php while ( $the_query_archive_agenda->have_posts() ) : $the_query_archive_agenda->the_post(); ?>
|
|
||||||
|
|
||||||
<?php get_template_part( 'template-parts/section', 'each-agenda-entry' ); ?>
|
|
||||||
|
|
||||||
<?php endwhile;//end of the loop ?>
|
|
||||||
<?php
|
|
||||||
// pagination will not work for custom_query
|
|
||||||
// https://wordpress.stackexchange.com/a/120408
|
|
||||||
// how to fix it
|
|
||||||
the_posts_navigation();
|
|
||||||
?>
|
|
||||||
<?php wp_reset_postdata(); ?>
|
|
||||||
</content>
|
|
||||||
<?php endif; //end query convo ?>
|
|
||||||
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
</main><!-- #main -->
|
|
||||||
|
|
||||||
<?php
|
|
||||||
get_footer();
|
|
|
@ -2,7 +2,7 @@
|
||||||
/**
|
/**
|
||||||
* The template for displaying the "associats" associats with search capabilities
|
* The template for displaying the "associats" associats with search capabilities
|
||||||
*
|
*
|
||||||
* Template Name: Associats Cercador
|
* Template Name: Cercador associats
|
||||||
*
|
*
|
||||||
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/
|
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/
|
||||||
* @link https://developer.wordpress.org/themes/template-files-section/page-template-files/
|
* @link https://developer.wordpress.org/themes/template-files-section/page-template-files/
|
||||||
|
@ -45,7 +45,6 @@ get_header();
|
||||||
</aside>
|
</aside>
|
||||||
|
|
||||||
|
|
||||||
<content class="archive-posts archive-posts-map archive-xarxaprod-members archive-xarxaprod-associats <?php xarxaprod_class_posttype(); ?>">
|
|
||||||
<?php
|
<?php
|
||||||
// https://support.advancedcustomfields.com/forums/topic/wp_query-using-meta_query-for-an-acf-checkbox-field/#post-145830
|
// https://support.advancedcustomfields.com/forums/topic/wp_query-using-meta_query-for-an-acf-checkbox-field/#post-145830
|
||||||
// https://www.advancedcustomfields.com/resources/checkbox/#query-posts
|
// https://www.advancedcustomfields.com/resources/checkbox/#query-posts
|
||||||
|
@ -62,38 +61,30 @@ get_header();
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<?php if ( $the_query_associat->have_posts() ) : ?>
|
<?php if ( $the_query_associat->have_posts() ) : ?>
|
||||||
<figure id="espais-associats-map" class="xarxaprod-associats-map xarxaprod-espais-map">
|
<content class="archive-posts archive-posts-map archive-xarxaprod-members archive-xarxaprod-associats <?php xarxaprod_class_posttype(); ?>">
|
||||||
|
<figure id="espais-associats-map" class="xarxaprod-associats-map xarxaprod-espais-map">
|
||||||
|
|
||||||
<?php xarxaprod_show_leaflet_map(); // function defined in the plugin ?>
|
<?php xarxaprod_show_leaflet_map(); // function defined in the plugin ?>
|
||||||
|
|
||||||
<?php while ( $the_query_associat->have_posts() ) : $the_query_associat->the_post(); ?>
|
<?php while ( $the_query_associat->have_posts() ) : $the_query_associat->the_post(); ?>
|
||||||
|
|
||||||
<?php xarxaprod_show_leaflet_associat_blob(); ?>
|
<?php xarxaprod_show_leaflet_associat_blob(); ?>
|
||||||
|
|
||||||
<?php endwhile;//end of the loop ?>
|
<?php endwhile;//end of the loop ?>
|
||||||
|
|
||||||
</figure>
|
</figure>
|
||||||
|
<?php wp_reset_postdata(); ?>
|
||||||
<?php
|
</content>
|
||||||
// nuvol de nomb sde fabriques
|
<?php
|
||||||
echo '<ul class="xarxaprod-label">';
|
//the loop for text output
|
||||||
while ( $the_query_associat->have_posts() ) : $the_query_associat->the_post();
|
//echo '<content class="archive-posts archive-xarxaprod-members archive-xarxaprod-associats' . xarxaprod_class_posttype() . '">';
|
||||||
echo '<li>';
|
//while ( $the_query_associat->have_posts() ) : $the_query_associat->the_post();
|
||||||
echo '<a href="';
|
//get_template_part( 'template-parts/section', 'eachmember' );
|
||||||
the_permalink();
|
//endwhile;//end of the loop
|
||||||
echo '" title="';
|
//echo '</content>';
|
||||||
the_title();
|
?>
|
||||||
echo '" rel="bookmark">';
|
<?php endif; //end query associat ?>
|
||||||
the_title();
|
|
||||||
echo '</a>';
|
|
||||||
echo '</li>';
|
|
||||||
endwhile;
|
|
||||||
echo '</ul>';
|
|
||||||
?>
|
|
||||||
|
|
||||||
<?php wp_reset_postdata(); ?>
|
|
||||||
<?php endif; //end query associat ?>
|
|
||||||
</content>
|
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
</main><!-- #main -->
|
</main><!-- #main -->
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
/**
|
/**
|
||||||
* The template for displaying the "convos" calls with search capabilities
|
* The template for displaying the "convos" calls with search capabilities
|
||||||
*
|
*
|
||||||
* Template Name: Convos antigues arxiu
|
* Template Name: Arxiu convos antigues
|
||||||
*
|
*
|
||||||
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/
|
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/
|
||||||
* @link https://developer.wordpress.org/themes/template-files-section/page-template-files/
|
* @link https://developer.wordpress.org/themes/template-files-section/page-template-files/
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
/**
|
/**
|
||||||
* The template for displaying the "convos" calls with search capabilities
|
* The template for displaying the "convos" calls with search capabilities
|
||||||
*
|
*
|
||||||
* Template Name: Convos actuals cercador
|
* Template Name: Cercador convos
|
||||||
*
|
*
|
||||||
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/
|
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/
|
||||||
* @link https://developer.wordpress.org/themes/template-files-section/page-template-files/
|
* @link https://developer.wordpress.org/themes/template-files-section/page-template-files/
|
||||||
|
@ -43,7 +43,6 @@ get_header();
|
||||||
<?php } //end if is_plugin_active ?>
|
<?php } //end if is_plugin_active ?>
|
||||||
</aside>
|
</aside>
|
||||||
|
|
||||||
<content class="archive-posts archive-xarxaprod-convo <?php //xarxaprod_class_posttype(); ?>">
|
|
||||||
<?php
|
<?php
|
||||||
// https://support.advancedcustomfields.com/forums/topic/wp_query-using-meta_query-for-an-acf-checkbox-field/#post-145830
|
// https://support.advancedcustomfields.com/forums/topic/wp_query-using-meta_query-for-an-acf-checkbox-field/#post-145830
|
||||||
// https://www.advancedcustomfields.com/resources/checkbox/#query-posts
|
// https://www.advancedcustomfields.com/resources/checkbox/#query-posts
|
||||||
|
@ -67,14 +66,15 @@ get_header();
|
||||||
);
|
);
|
||||||
?>
|
?>
|
||||||
<?php if ( $the_query_convo->have_posts() ) : ?>
|
<?php if ( $the_query_convo->have_posts() ) : ?>
|
||||||
|
<content class="archive-posts archive-xarxaprod-convo <?php //xarxaprod_class_posttype(); ?>">
|
||||||
<?php while ( $the_query_convo->have_posts() ) : $the_query_convo->the_post(); ?>
|
<?php while ( $the_query_convo->have_posts() ) : $the_query_convo->the_post(); ?>
|
||||||
|
|
||||||
<?php get_template_part( 'template-parts/section', 'eachconvo' , $the_query_convo); ?>
|
<?php get_template_part( 'template-parts/section', 'eachconvo' , $the_query_convo); ?>
|
||||||
|
|
||||||
<?php endwhile;//end of the loop ?>
|
<?php endwhile;//end of the loop ?>
|
||||||
<?php wp_reset_postdata(); ?>
|
<?php wp_reset_postdata(); ?>
|
||||||
<?php endif; //end query convo ?>
|
|
||||||
</content>
|
</content>
|
||||||
|
<?php endif; //end query convo ?>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
</main><!-- #main -->
|
</main><!-- #main -->
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
/**
|
/**
|
||||||
* The template for displaying the "ajuts" funds with search capabilities
|
* The template for displaying the "ajuts" funds with search capabilities
|
||||||
*
|
*
|
||||||
* Template Name: PAFs, FAQs, consells, tutorials...
|
* Template Name: PAFs, consells, tutorials...
|
||||||
*
|
*
|
||||||
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/
|
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/
|
||||||
* @link https://developer.wordpress.org/themes/template-files-section/page-template-files/
|
* @link https://developer.wordpress.org/themes/template-files-section/page-template-files/
|
||||||
|
|
|
@ -0,0 +1,53 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* The template for page declared as front-page
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* @link https://developer.wordpress.org/themes/template-files-section/page-template-files/
|
||||||
|
*
|
||||||
|
* @package Xarxaprod_theme
|
||||||
|
*/
|
||||||
|
|
||||||
|
get_header();
|
||||||
|
?>
|
||||||
|
|
||||||
|
<main id="primary" class="site-main">
|
||||||
|
|
||||||
|
<?php
|
||||||
|
if ( have_posts() ) :
|
||||||
|
|
||||||
|
if ( is_home() && ! is_front_page() ) :
|
||||||
|
?>
|
||||||
|
<header>
|
||||||
|
<h1 class="page-title screen-reader-text"><?php single_post_title(); ?></h1>
|
||||||
|
</header>
|
||||||
|
<?php
|
||||||
|
endif;
|
||||||
|
|
||||||
|
/* Start the Loop */
|
||||||
|
while ( have_posts() ) :
|
||||||
|
the_post();
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Include the Post-Type-specific template for the content.
|
||||||
|
* If you want to override this in a child theme, then include a file
|
||||||
|
* called content-___.php (where ___ is the Post Type name) and that will be used instead.
|
||||||
|
*/
|
||||||
|
get_template_part( 'template-parts/content', get_post_type() );
|
||||||
|
|
||||||
|
endwhile;
|
||||||
|
|
||||||
|
the_posts_navigation();
|
||||||
|
|
||||||
|
else :
|
||||||
|
|
||||||
|
get_template_part( 'template-parts/content', 'none' );
|
||||||
|
|
||||||
|
endif;
|
||||||
|
?>
|
||||||
|
|
||||||
|
</main><!-- #main -->
|
||||||
|
|
||||||
|
<?php
|
||||||
|
get_sidebar();
|
||||||
|
get_footer();
|
|
@ -2,7 +2,7 @@
|
||||||
/**
|
/**
|
||||||
* The template for displaying the "ajuts" funds with search capabilities
|
* The template for displaying the "ajuts" funds with search capabilities
|
||||||
*
|
*
|
||||||
* Template Name: Ajuts actuals cercador
|
* Template Name: Cercador ajuts
|
||||||
*
|
*
|
||||||
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/
|
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/
|
||||||
* @link https://developer.wordpress.org/themes/template-files-section/page-template-files/
|
* @link https://developer.wordpress.org/themes/template-files-section/page-template-files/
|
||||||
|
@ -45,7 +45,6 @@ get_header();
|
||||||
</aside>
|
</aside>
|
||||||
|
|
||||||
|
|
||||||
<content class="archive-posts archive-xarxaprod-fund archive-xarxapdor-ajut <?php //xarxaprod_class_posttype(); ?>">
|
|
||||||
<?php
|
<?php
|
||||||
// https://support.advancedcustomfields.com/forums/topic/wp_query-using-meta_query-for-an-acf-checkbox-field/#post-145830
|
// https://support.advancedcustomfields.com/forums/topic/wp_query-using-meta_query-for-an-acf-checkbox-field/#post-145830
|
||||||
// https://www.advancedcustomfields.com/resources/checkbox/#query-posts
|
// https://www.advancedcustomfields.com/resources/checkbox/#query-posts
|
||||||
|
@ -59,14 +58,15 @@ get_header();
|
||||||
);
|
);
|
||||||
?>
|
?>
|
||||||
<?php if ( $the_query_ajut->have_posts() ) : ?>
|
<?php if ( $the_query_ajut->have_posts() ) : ?>
|
||||||
|
<content class="archive-posts archive-xarxaprod-fund archive-xarxapdor-ajut <?php //xarxaprod_class_posttype(); ?>">
|
||||||
<?php while ( $the_query_ajut->have_posts() ) : $the_query_ajut->the_post(); ?>
|
<?php while ( $the_query_ajut->have_posts() ) : $the_query_ajut->the_post(); ?>
|
||||||
|
|
||||||
<?php get_template_part( 'template-parts/section', 'eachfund' ); ?>
|
<?php get_template_part( 'template-parts/section', 'eachfund' ); ?>
|
||||||
|
|
||||||
<?php endwhile;//end of the loop ?>
|
<?php endwhile;//end of the loop ?>
|
||||||
<?php wp_reset_postdata(); ?>
|
<?php wp_reset_postdata(); ?>
|
||||||
<?php endif; //end query ajut ?>
|
|
||||||
</content>
|
</content>
|
||||||
|
<?php endif; //end query ajut ?>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
|
|
@ -265,7 +265,9 @@
|
||||||
.archive-posts {
|
.archive-posts {
|
||||||
grid-template-columns: repeat(2 , 1fr);
|
grid-template-columns: repeat(2 , 1fr);
|
||||||
min-height: 40vh;
|
min-height: 40vh;
|
||||||
&.archive-posts-map,&.archive-xarxaprod-members,&archive-xarxaprod-associats {
|
}
|
||||||
|
.post-type-archive-xarxaprod-associat {
|
||||||
|
.archive-posts {
|
||||||
grid-template-columns: 1fr;
|
grid-template-columns: 1fr;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -5,7 +5,7 @@ Theme URI: https://git.hangar.org/xarxaprod/
|
||||||
Author: Hangar.org Tech Lab - hangar.org
|
Author: Hangar.org Tech Lab - hangar.org
|
||||||
Author URI: https://hangar.org
|
Author URI: https://hangar.org
|
||||||
Description: theme for the <a href="https://xarxaprod.cat">XarxaProd</a>. Inclou la possibilitat de publicar, catalogar i cercar ajuts, resoldre dubtes amb FAQs i altres. Design by Eudald Van der Pla <a href="https://vanderpla.com">vanderpla.com</a>. Coding template and theme by <a href="https://vitrubio.net">Jorge - vitrubio.net</a>
|
Description: theme for the <a href="https://xarxaprod.cat">XarxaProd</a>. Inclou la possibilitat de publicar, catalogar i cercar ajuts, resoldre dubtes amb FAQs i altres. Design by Eudald Van der Pla <a href="https://vanderpla.com">vanderpla.com</a>. Coding template and theme by <a href="https://vitrubio.net">Jorge - vitrubio.net</a>
|
||||||
Version: 1.6.5
|
Version: 1.6.1
|
||||||
Tested up to: 6.4
|
Tested up to: 6.4
|
||||||
Requires PHP: 7.4
|
Requires PHP: 7.4
|
||||||
License: GNU General Public License v3 or later
|
License: GNU General Public License v3 or later
|
||||||
|
|
|
@ -5,7 +5,7 @@ Theme URI: https://git.hangar.org/xarxaprod/
|
||||||
Author: Hangar.org Tech Lab - hangar.org
|
Author: Hangar.org Tech Lab - hangar.org
|
||||||
Author URI: https://hangar.org
|
Author URI: https://hangar.org
|
||||||
Description: theme for the <a href="https://xarxaprod.cat">XarxaProd</a>. Inclou la possibilitat de publicar, catalogar i cercar ajuts, resoldre dubtes amb FAQs i altres. Design by Eudald Van der Pla <a href="https://vanderpla.com">vanderpla.com</a>. Coding template and theme by <a href="https://vitrubio.net">Jorge - vitrubio.net</a>
|
Description: theme for the <a href="https://xarxaprod.cat">XarxaProd</a>. Inclou la possibilitat de publicar, catalogar i cercar ajuts, resoldre dubtes amb FAQs i altres. Design by Eudald Van der Pla <a href="https://vanderpla.com">vanderpla.com</a>. Coding template and theme by <a href="https://vitrubio.net">Jorge - vitrubio.net</a>
|
||||||
Version: 1.6.5
|
Version: 1.6.1
|
||||||
Tested up to: 6.4
|
Tested up to: 6.4
|
||||||
Requires PHP: 7.4
|
Requires PHP: 7.4
|
||||||
License: GNU General Public License v3 or later
|
License: GNU General Public License v3 or later
|
||||||
|
@ -1606,9 +1606,7 @@ textarea {
|
||||||
min-height: 40vh;
|
min-height: 40vh;
|
||||||
}
|
}
|
||||||
|
|
||||||
.archive-posts.archive-posts-map,
|
.post-type-archive-xarxaprod-associat .archive-posts {
|
||||||
.archive-posts.archive-xarxaprod-members,
|
|
||||||
.archive-postsarchive-xarxaprod-associats {
|
|
||||||
grid-template-columns: 1fr;
|
grid-template-columns: 1fr;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue