Hi @drtyrell
At the moment there is no setting to hide those links. However you can do that in 2 different ways.
Option 1 – Hide it with CSS:
.gigpress-calendar-add {
display: none;
}
Option 2 – Remove from code:
Take this file:
wp-content/plugins/gigpress/templates/shows-list.php
Make a copy of it here:
wp-content/gigpress-templates/shows-list.php
From this new file remove lines 41-51 which look like this:
if($scope != 'past') : ?>
<div class="gigpress-calendar-add">xxx
<a class="gigpress-links-toggle" href="#calendar-links-<?php echo $showdata['id']; ?>">Add</a>
<div class="gigpress-calendar-links" id="calendar-links-<?php echo $showdata['id']; ?>">
<div class="gigpress-calendar-links-inner">
<span><?php echo $showdata['gcal']; ?></span>
<span><?php echo $showdata['ical']; ?></span>
</div>
</div>
</div>
<?php endif; ?>
Let me know if this helps.
Cheers,
Andras