Hi
Thank you for waiting. You can override the templates to achieve this. Please go through this documentation and learn more about template overriding –
Template Override (directorist.com)
You need to override the following template to show the description on a taxonomy archive page –
/directorist/templates/archive/grid-view.php
Please use the following code to override this template using a child theme –
<?php
/**
* @author wpWax
* @since 6.6
* @version 7.3.0
*/
use \Directorist\Helper;
if (!defined('ABSPATH')) exit;
?>
<div class="directorist-archive-items directorist-archive-grid-view">
<?php do_action('directorist_before_grid_listings_loop'); ?>
<div class="<?php Helper::directorist_container_fluid(); ?>">
<?php if ($listings->have_posts()) : ?>
<div class="<?php echo $listings->has_masonry() ? 'directorist-masonry' : ''; ?> <?php Helper::directorist_row(); ?>">
<?php foreach ($listings->post_ids() as $listing_id) : ?>
<div class="<?php Helper::directorist_column($listings->columns); ?> directorist-all-listing-col"><!-- directorist-all-listing-col -->
<?php $listings->loop_template('grid', $listing_id); ?>
</div>
<?php endforeach; ?>
</div>
<?php do_action('directorist_before_listings_pagination'); ?>
<?php
if ($listings->show_pagination) {
$listings->pagination();
}
?>
<?php do_action('directorist_after_grid_listings_loop'); ?>
<?php else : ?>
<div class="directorist-archive-notfound"><?php esc_html_e('No listings found.', 'directorist'); ?></div>
<?php endif; ?>
</div>
<?php
$description = '';
$atbdp_location = get_query_var('atbdp_location');
$atbdp_category = get_query_var('atbdp_category');
if ($atbdp_location) {
$location = get_term_by('slug', $atbdp_location, ATBDP_LOCATION);
if ($location) $description = $location->description;
}
if ($atbdp_category) {
$category = get_term_by('slug', $atbdp_category, ATBDP_CATEGORY);
if ($category) $description = $category->description;
}
?>
<p><?php echo $description; ?></p>
</div>
I believe this will work fine on your website and shows the description below the taxonomy archive page as you want it.
Please inform us if you need further assistance with this.
Kind Regards