Support » Fixing WordPress » No WordPress Shortcodes are working

  • Resolved edwilksm

    (@edwilksm)


    I am trying to create a form that allows users to upload images to a certain directory. The plugins I am using are Contact Form 7 and Drag and Drop Multiple File Upload – Contact Form 7.

    Every time I use the shortcode the form gives me, it only displays the shortcode and not the form. I have tried multiple plugins shortcodes as well and none of them seem to work either.

    The theme I am using is one I developed, is there a something in my theme that is missing that I need to add? Maybe like an enable shortcodes function?

    Any and all help is appreciated.

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Moderator James Huff

    (@macmanx)

    Volunteer Moderator

    This may be a plugin or theme conflict. Please attempt to disable all plugins, and switch to the default Twenty Twenty theme. If the problem goes away, enable them one by one to identify the source of the problem.

    If you can install plugins, install Health Check. On the troubleshooting tab, you can click the button to disable all plugins and change the theme for you, while you’re still logged in, without affecting normal visitors to your site.

    Thread Starter edwilksm

    (@edwilksm)

    @macmanx Thanks for the quick reply, but it was an error with my page template. I was doing this

    <div class="col" id="">
                        <p class="content"><?php $content=get_the_content();
    
                        echo $content; ?></p>
                        
                    </div>

    But I fixed it by changing it to this

    <div class="col" id="">
                        <p class="content"><?php $content=the_content();
    
                        echo $content; ?></p>
                        
                    </div>
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘No WordPress Shortcodes are working’ is closed to new replies.