Hello guys,
PROBLEM 01:
I’m trying to change my single-mec-events.php, inside my pro-child
directory.
I’d like to put a content from single event, using a template-blank-1 template from PRO, i.e.
Unfortunately, we do not have a shortcode to single page. What the best way?
https://webnus.ticksy.com/article/8603
https://webnus.ticksy.com/article/10488/
Below, default single-mec-events.php
from Webnus:
<?php /** no direct access **/ defined('_MECEXEC_') or die(); /** * The Template for displaying all single events * * @author Webnus <info@webnus.biz> * @package MEC/Templates * @version 1.0.0 */ get_header('mec'); ?> <?php do_action('mec_before_main_content'); ?> <section id="<?php echo apply_filters('mec_single_page_html_id', 'main-content'); ?>" class="<?php echo apply_filters('mec_single_page_html_class', 'mec-container'); ?>"> <?php while(have_posts()): the_post(); ?> <?php $MEC = MEC::instance(); echo $MEC->single(); ?> <?php endwhile; // end of the loop. ?> <?php comments_template(); ?> </section> <?php do_action('mec_after_main_content'); ?> <?php get_footer('mec');
The template-black-1.php from PRO:
<?php x_get_view( x_get_stack(), 'template', 'blank-1' ); ?>
PROBLEM 02:
I have tried to import my custom.css
to MEC, but default fonts won’t load Typekit entirely.
Thank you very much.