Forum Replies Created

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • in reply to: Shortcodes? #698560

    One final question…

    Why does my Magic Wand have so few shortcodes? Take a look…

    shortcodes

    in reply to: Shortcodes? #698542

    So sorry if the confusion was on my end (likely). :-)

    I was using a button on my toolbar that allowed me to insert column shortcodes, and I think I assumed it was from Enfold. I see the code you wrote. Is there a simple way to insert that code in the future? Or is it a manual coding job?

    Thanks for your help!

    in reply to: Shortcodes? #698510

    Just tested both WP and FTP and both worked. Details in private:

    in reply to: Shortcodes? #698480

    :-)

    I’d like the column short codes to work. Simple as that.

    When I place the short code into a page, it doesn’t build a column, it just shows the code. Here, I’ll upload a photo; not at the bottom of the picture:

    Example of column short codes not working

    in reply to: Shortcodes? #698009

    Still not working: http://csl.killianstrategic.com/#local

    I’m only going to leave the code there for a few hours since I need to get this designed and out. Take a look if you can.

    Tim

    in reply to: Shortcodes? #697530

    Here you go…

    in reply to: Shortcodes? #696774

    OK…I’m certain I did what you said, and no difference… Here’s my functions.php code:

    <?php 
    
    add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles' );
    function theme_enqueue_styles() {
        wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' );
    
    }
    
    add_filter('avia_load_shortcodes', 'avia_include_shortcode_template', 15, 1);
    function avia_include_shortcode_template($paths)
    {
    	$template_url = get_stylesheet_directory();
        	array_unshift($paths, $template_url.'/shortcodes/');
    
    	return $paths;
    }
    
    ?>

    And still, when I load the page, I see the short codes on the page and no columns.
    I’ve created a username and pw for you…

Viewing 7 posts - 1 through 7 (of 7 total)