mauzilla
Forum Replies Created
-
Hi Adam, thank you so much for helping with this, I really love forminator so would prefer to use your builder ??
Link as discussed:
https://drive.google.com/file/d/1R7akYIezjxEhUXDEJ1En7J0TIvFRotx1/view?usp=sharingForum: Plugins
In reply to: [SupportCandy - Helpdesk & Customer Support Ticket System] Escalation Rulesthanks just purchased it
Forum: Plugins
In reply to: [VS Event List] Link title to the event page – Where to generate event page?You are correct, I tested the post feature now and as expected it’s not functional, also returns a blank page.
Please send me an email to [email protected] and we can discuss there!
Thank you
Forum: Plugins
In reply to: [VS Event List] Link title to the event page – Where to generate event page?Hi Guido,
I believe the issue here might be that the original theme developed as a custom theme and made a number of years ago. I’ve read your documentation and saw that you look for a file single.php or single-event.php in the theme folder. None of these 2 files actually existed. I have in the interim created those files and was able to select them as a template in the associated page (in this particular case the page for all events are https://www.ashtangayogajhb.co.za/test/) – It’s simply the “single event” page not showing anything. The contents for both the theme files (single.php and single-event.php) are:
<?php
/**
* Template Name: single
*/
get_header(); ?>
<?php $content = apply_filters(‘the_content’, $post->post_content); ?>
<?php if(!empty($content)): ?>
<div class=”col-md-12″>
<?php echo $content; ?>
</div>
<?php endif; ?>
<?php get_footer(); ?>And:
<?php
/**
* Template Name: single-event
*/
get_header(); ?>
<?php $content = apply_filters(‘the_content’, $post->post_content); ?>
<?php if(!empty($content)): ?>
<div class=”col-md-12″>
<?php echo $content; ?>
</div>
<?php endif; ?>
<?php get_footer(); ?>