Compare commits
No commits in common. "1dd1cd99ea808be4cb0f02113a2344b18a40de07" and "2e3cf194fe1a59d09805cd8ad667a369c498d4a6" have entirely different histories.
1dd1cd99ea
...
2e3cf194fe
3577
adminstyles.css
3577
adminstyles.css
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
43
archive.php
43
archive.php
|
@ -31,6 +31,8 @@ get_header();
|
||||||
<?php endif; //end in_category agenda activitats ?>
|
<?php endif; //end in_category agenda activitats ?>
|
||||||
</aside>
|
</aside>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<?php if ( have_posts() ) : ?>
|
<?php if ( have_posts() ) : ?>
|
||||||
|
|
||||||
<content class="archive-posts <?php xarxaprod_class_posttype(); ?>">
|
<content class="archive-posts <?php xarxaprod_class_posttype(); ?>">
|
||||||
|
@ -51,15 +53,15 @@ get_header();
|
||||||
|
|
||||||
$the_query_archive_activitats = new WP_Query(
|
$the_query_archive_activitats = new WP_Query(
|
||||||
array(
|
array(
|
||||||
//'post_type' => 'post',
|
'post_type' => 'post',
|
||||||
//'posts_per_page' => '-1', //show all => -1
|
'posts_per_page' => '-1', //show all => -1
|
||||||
//'tax_query' => array(
|
'tax_query' => array(
|
||||||
// array(
|
array(
|
||||||
// 'taxonomy' => 'category',
|
'taxonomy' => 'category',
|
||||||
// 'field' => 'slug',
|
'field' => 'slug',
|
||||||
// 'terms' => 'activitats'
|
'terms' => 'activitats'
|
||||||
// )
|
)
|
||||||
//),
|
),
|
||||||
'meta_query' => array(
|
'meta_query' => array(
|
||||||
array( //filter results show only older than today
|
array( //filter results show only older than today
|
||||||
'key' => 'xxp_agenda_date_end',
|
'key' => 'xxp_agenda_date_end',
|
||||||
|
@ -85,29 +87,6 @@ get_header();
|
||||||
wp_reset_postdata(); //reset custom query
|
wp_reset_postdata(); //reset custom query
|
||||||
|
|
||||||
//end in_category agenda activitats
|
//end in_category agenda activitats
|
||||||
} elseif (in_category( array( 'convocatories') ) ) {
|
|
||||||
|
|
||||||
$the_query_archive_convocatories = new WP_Query(
|
|
||||||
array(
|
|
||||||
'post_type' => 'post',
|
|
||||||
'posts_per_page' => '-1', //show all => -1
|
|
||||||
'tax_query' => array(
|
|
||||||
array(
|
|
||||||
'taxonomy' => 'category',
|
|
||||||
'field' => 'slug',
|
|
||||||
'terms' => 'convocatories'
|
|
||||||
)
|
|
||||||
),
|
|
||||||
)
|
|
||||||
);
|
|
||||||
if ( $the_query_archive_convocatories->have_posts() ) :
|
|
||||||
while ( $the_query_archive_convocatories->have_posts() ) : $the_query_archive_convocatories->the_post();
|
|
||||||
get_template_part( 'template-parts/section', 'eachconvo' );
|
|
||||||
|
|
||||||
endwhile;//end of the loop
|
|
||||||
endif; //end if the_query_archive_activitats
|
|
||||||
wp_reset_postdata(); //reset custom query
|
|
||||||
//end in_category convocatories
|
|
||||||
}else{
|
}else{
|
||||||
//the rest of archives
|
//the rest of archives
|
||||||
while ( have_posts() ) :
|
while ( have_posts() ) :
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -35,11 +35,57 @@ get_header();
|
||||||
|
|
||||||
endif;
|
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">
|
<section id="filteredagenda" class="xarxaprod-filtered-content xarxaprod-filtered-agenda xarxaprod-activitats-filtrats category-agenda xarxaprod-activitats">
|
||||||
<header>
|
|
||||||
<h2 class="section-title"><a href="#">Activitats pasades</a></h2>
|
|
||||||
</header>
|
|
||||||
|
|
||||||
<aside id="agendafilter" class="xarxaprod-filter-agenda xarxaprod-fitre-agenda">
|
<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 include_once( ABSPATH . 'wp-admin/includes/plugin.php' ); if ( is_plugin_active( 'xarxaprod-wp-plugin/xarxaprod-wp-plugin.php' ) ) { // if plugin active do?>
|
||||||
|
@ -97,56 +143,6 @@ get_header();
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section id="filteredcalls" class="xarxaprod-filtered-content xarxaprod-filtered-content xarxaprod-filtered-calls xarxaprod-convos-filtrats">
|
|
||||||
<header>
|
|
||||||
<h2 class="section-title"><a href="#">Convocatories</a></h2>
|
|
||||||
</header>
|
|
||||||
<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>
|
|
||||||
|
|
||||||
</main><!-- #main -->
|
</main><!-- #main -->
|
||||||
|
|
||||||
|
|
|
@ -27,13 +27,13 @@ input[type="submit"],
|
||||||
color: $color__white;
|
color: $color__white;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
//.category-faq {
|
.category-faq {
|
||||||
// .button-more {
|
.button-more {
|
||||||
// &::before {
|
&::before {
|
||||||
// content: "accedir";
|
content: "accedir";
|
||||||
// }
|
}
|
||||||
// }
|
}
|
||||||
//}
|
}
|
||||||
|
|
||||||
.xarxaprod-search-form {
|
.xarxaprod-search-form {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|
|
@ -392,19 +392,7 @@
|
||||||
* REC
|
* REC
|
||||||
*
|
*
|
||||||
* * * * * * * * * * * * * * * */
|
* * * * * * * * * * * * * * * */
|
||||||
.archive.category-convocatories {
|
.xarxaprod-cards,.category-convocatories, .category-rec {
|
||||||
main {
|
|
||||||
> aside {
|
|
||||||
grid-column: -1 / 1;
|
|
||||||
}
|
|
||||||
> .archive-posts.category-convocatories {
|
|
||||||
grid-column: -1 / 1;
|
|
||||||
grid-template-columns: repeat(3, 1fr);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
//.xarxaprod-cards,.category-convocatories, .category-rec {
|
|
||||||
.xarxaprod-cards,.category-rec {
|
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-flow: column;
|
flex-flow: column;
|
||||||
justify-content: flex-end;
|
justify-content: flex-end;
|
||||||
|
|
|
@ -91,9 +91,6 @@
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: 1fr;
|
grid-template-columns: 1fr;
|
||||||
gap: $grid__gap;
|
gap: $grid__gap;
|
||||||
> header {
|
|
||||||
grid-column: -1 / 1;
|
|
||||||
}
|
|
||||||
.archive-posts {
|
.archive-posts {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -5,7 +5,7 @@ Theme URI: https://git.hangar.org/xarxaprod/
|
||||||
Author: Hangar Tech Lab
|
Author: Hangar Tech Lab
|
||||||
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.7.7
|
Version: 1.7.5
|
||||||
Tested up to: 6.5.2
|
Tested up to: 6.5.2
|
||||||
Requires PHP: 7.4
|
Requires PHP: 7.4
|
||||||
License: GNU General Public License v3 or later
|
License: GNU General Public License v3 or later
|
||||||
|
|
24
style.css
24
style.css
|
@ -5,7 +5,7 @@ Theme URI: https://git.hangar.org/xarxaprod/
|
||||||
Author: Hangar Tech Lab
|
Author: Hangar Tech Lab
|
||||||
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.7.7
|
Version: 1.7.5
|
||||||
Tested up to: 6.5.2
|
Tested up to: 6.5.2
|
||||||
Requires PHP: 7.4
|
Requires PHP: 7.4
|
||||||
License: GNU General Public License v3 or later
|
License: GNU General Public License v3 or later
|
||||||
|
@ -1442,6 +1442,10 @@ input[type="submit"]:focus,
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.category-faq .button-more::before {
|
||||||
|
content: "accedir";
|
||||||
|
}
|
||||||
|
|
||||||
.xarxaprod-search-form {
|
.xarxaprod-search-form {
|
||||||
display: flex;
|
display: flex;
|
||||||
margin: 0.5rem 0;
|
margin: 0.5rem 0;
|
||||||
|
@ -1664,10 +1668,6 @@ textarea {
|
||||||
gap: 1rem;
|
gap: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.xarxaprod-filtered-content > header {
|
|
||||||
grid-column: -1 / 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
.site-footer {
|
.site-footer {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-flow: row;
|
flex-flow: row;
|
||||||
|
@ -2633,16 +2633,8 @@ textarea {
|
||||||
* REC
|
* REC
|
||||||
*
|
*
|
||||||
* * * * * * * * * * * * * * * */
|
* * * * * * * * * * * * * * * */
|
||||||
.archive.category-convocatories main > aside {
|
|
||||||
grid-column: -1 / 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
.archive.category-convocatories main > .archive-posts.category-convocatories {
|
|
||||||
grid-column: -1 / 1;
|
|
||||||
grid-template-columns: repeat(3, 1fr);
|
|
||||||
}
|
|
||||||
|
|
||||||
.xarxaprod-cards,
|
.xarxaprod-cards,
|
||||||
|
.category-convocatories,
|
||||||
.category-rec {
|
.category-rec {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-flow: column;
|
flex-flow: column;
|
||||||
|
@ -2651,6 +2643,7 @@ textarea {
|
||||||
}
|
}
|
||||||
|
|
||||||
.xarxaprod-cards .wp-block-post-title,
|
.xarxaprod-cards .wp-block-post-title,
|
||||||
|
.category-convocatories .wp-block-post-title,
|
||||||
.category-rec .wp-block-post-title {
|
.category-rec .wp-block-post-title {
|
||||||
font-size: 1.5rem;
|
font-size: 1.5rem;
|
||||||
margin-bottom: 0.5em;
|
margin-bottom: 0.5em;
|
||||||
|
@ -2660,6 +2653,8 @@ textarea {
|
||||||
|
|
||||||
.xarxaprod-cards .post-excerpt,
|
.xarxaprod-cards .post-excerpt,
|
||||||
.xarxaprod-cards .wp-block-post-excerpt,
|
.xarxaprod-cards .wp-block-post-excerpt,
|
||||||
|
.category-convocatories .post-excerpt,
|
||||||
|
.category-convocatories .wp-block-post-excerpt,
|
||||||
.category-rec .post-excerpt,
|
.category-rec .post-excerpt,
|
||||||
.category-rec .wp-block-post-excerpt {
|
.category-rec .wp-block-post-excerpt {
|
||||||
min-height: 7rem;
|
min-height: 7rem;
|
||||||
|
@ -2669,6 +2664,7 @@ textarea {
|
||||||
}
|
}
|
||||||
|
|
||||||
.xarxaprod-cards .wp-block-read-more,
|
.xarxaprod-cards .wp-block-read-more,
|
||||||
|
.category-convocatories .wp-block-read-more,
|
||||||
.category-rec .wp-block-read-more {
|
.category-rec .wp-block-read-more {
|
||||||
margin: 1em 0;
|
margin: 1em 0;
|
||||||
}
|
}
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -29,13 +29,6 @@
|
||||||
);
|
);
|
||||||
?>
|
?>
|
||||||
</div><!-- .entry-content -->
|
</div><!-- .entry-content -->
|
||||||
<?php if( get_field('xxp_moreinfo_url') ): ?>
|
|
||||||
<div class="xarxaprod-moreinfo-url">
|
|
||||||
<a href="<?php echo get_field('xxp_moreinfo_url'); ?>" class="button button-more button-letsgo">
|
|
||||||
<?php echo __( '+ Info', 'xarxaprod' ); ?>
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
<?php endif; ?>
|
|
||||||
|
|
||||||
<?php if ( get_edit_post_link() ) : ?>
|
<?php if ( get_edit_post_link() ) : ?>
|
||||||
<footer class="entry-footer">
|
<footer class="entry-footer">
|
||||||
|
|
|
@ -74,15 +74,6 @@
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
?>
|
?>
|
||||||
<?php if( get_field('xxp_moreinfo_url') ): ?>
|
|
||||||
<div class="xarxaprod-moreinfo-url">
|
|
||||||
<a href="<?php echo get_field('xxp_moreinfo_url'); ?>" class="button button-more button-letsgo">
|
|
||||||
<?php echo __( '+ Info', 'xarxaprod' ); ?>
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
<?php endif; ?>
|
|
||||||
|
|
||||||
|
|
||||||
</main><!-- .entry-content -->
|
</main><!-- .entry-content -->
|
||||||
|
|
||||||
<footer class="entry-footer">
|
<footer class="entry-footer">
|
||||||
|
|
|
@ -20,11 +20,10 @@
|
||||||
</h3>
|
</h3>
|
||||||
|
|
||||||
|
|
||||||
<?php if( get_field('xxp_convo_apply_begin') || get_field('xxp_convo_apply_end') || get_field('xxp_convo_espai_associat') || get_field('xxp_convoer_name')): ?>
|
|
||||||
<section class="xarxaprod-convo-info-fields">
|
<section class="xarxaprod-convo-info-fields">
|
||||||
<ul>
|
<ul>
|
||||||
<li class="xarxaprod-convo-info-date">
|
<li class="xarxaprod-convo-info-date">
|
||||||
<?php if( get_field('xxp_convo_apply_begin') || get_field('xxp_convo_apply_end') ): ?>
|
<?php if( get_field('xxp_convo_apply_begin') || get_field('xxp_convo_apply_end') ): ?>
|
||||||
<dt>Termini</dt>
|
<dt>Termini</dt>
|
||||||
<dd class="xarxaprod-label item-xxp_convo_dates">
|
<dd class="xarxaprod-label item-xxp_convo_dates">
|
||||||
<?php if( get_field('xxp_convo_apply_begin') ): ?>
|
<?php if( get_field('xxp_convo_apply_begin') ): ?>
|
||||||
|
@ -38,9 +37,9 @@
|
||||||
<span class="item-xxp_convo_apply_text"><?php the_field('xxp_convo_apply_text'); ?></span>
|
<span class="item-xxp_convo_apply_text"><?php the_field('xxp_convo_apply_text'); ?></span>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
</dd>
|
</dd>
|
||||||
<?php endif;//end xxp_convo_apply_begin or xxp_convo_apply_end ?>
|
<?php endif; ?>
|
||||||
</li>
|
</li>
|
||||||
<?php if( ! get_field('xxp_convo_espai_associat') ): ?>
|
<?php if( ! get_field('xxp_convo_espai_associat') ): ?>
|
||||||
<?php // read here howto ?>
|
<?php // read here howto ?>
|
||||||
<?php // https://www.advancedcustomfields.com/resources/relationship/#display-list-of-posts-with-setuppostdata ?>
|
<?php // https://www.advancedcustomfields.com/resources/relationship/#display-list-of-posts-with-setuppostdata ?>
|
||||||
<?php if( get_field('xxp_convoer_name') ): ?>
|
<?php if( get_field('xxp_convoer_name') ): ?>
|
||||||
|
@ -59,10 +58,9 @@
|
||||||
</li>
|
</li>
|
||||||
<?php endforeach; ?>
|
<?php endforeach; ?>
|
||||||
<?php // Reset the global post object so that the rest of the page works correctly.?>
|
<?php // Reset the global post object so that the rest of the page works correctly.?>
|
||||||
<?php endif; //end get_field('xxp_convo_espai_associat') ?>
|
<?php endif; //end get_field('xxp_convo_espai_associat') ?>
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<?php endif;//end xxp_convo_apply_begin or xxp_convo_apply_end ?>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue