- ๐น 1. Check That the Core Plugin Is Activated
- ๐น 2. Verify You Placed the Correct Shortcode
- ๐น 3. Ensure You Are Editing the Correct Page Builder Area
- ๐น 4. Your Theme or Builder May Disable Shortcodes
- ๐น 5. Make Sure JavaScript Is Loading
- ๐น 6. Check if Your Theme Removed jQuery or Footer Scripts
- ๐น 7. Check for Security Plugins Blocking the Terminal Script
- ๐น 8. Shortcode Ignores Inside Some Block Themes (FSE)
- ๐น 9. Check For Plugin Conflicts
- ๐น 10. Confirm No PHP Errors Are Occurring
- ๐น 11. The Terminal Works but Is Hidden by CSS
- ๐ฏ Summary
If the Cointacted Social Terminal does not show up where you placed it, this guide helps you identify and fix the issue quickly.
The terminal should appear anywhere you add the shortcode:
[cointacted_social_terminal]
If nothing appears โ or the space is blank โ follow the steps below.
๐น 1. Check That the Core Plugin Is Activated #
Go to:
WP Admin โ Plugins
Make sure:
- Cointacted Social Terminal is installed
- It is Activated
If the plugin is inactive, the shortcode will produce nothing.
๐น 2. Verify You Placed the Correct Shortcode #
The only correct shortcode is:
[cointacted_social_terminal]
Common mistakes:
โ [cointacted-terminal]
โ [cointacted_social]
โ [terminal]
โ [cointacted_social_terminal ] (extra space)
If unsure, copy it from:
WP Admin โ Cointacted โ General Settings
๐น 3. Ensure You Are Editing the Correct Page Builder Area #
Depending on your theme:
- Gutenberg: add a Shortcode block
- Elementor: add โShortcodeโ widget
- Divi: add Shortcode module
- Bricks/Oxygen/Beaver: Shortcode block
Make sure youโre not placing the shortcode into:
- Theme header
- Theme footer
- A global template where shortcodes are disabled
๐น 4. Your Theme or Builder May Disable Shortcodes #
Some FSE themes or custom templates block shortcodes inside:
- HTML blocks
- Template parts
- Custom code widgets
Try placing the shortcode temporarily in a normal WordPress page editor.
If it appears there, the theme builder was blocking shortcode rendering.
๐น 5. Make Sure JavaScript Is Loading #
The terminal requires its JS file to run.
In your browser:
- Right-click โ Inspect
- Open Console
- Reload the page
If you see errors like:
cointacted-social-terminal.js failed to load
or:
Uncaught ReferenceError: CointactedSocialTerminalTerminal is not defined
This means:
- Script optimization plugin blocked it
- Theme deregistered scripts
- CDN blocked loading
- Wrong file permissions on server
Try disabling plugins like:
- WP Rocket
- Autoptimize
- LiteSpeed Cache
- NitroPack
- Elementor โOptimized DOMโ
- Any โDefer All JSโ setting
Then reload the page.
๐น 6. Check if Your Theme Removed jQuery or Footer Scripts #
While the terminal itself does not require jQuery,
some themes block all footer scripts.
Make sure:
- Footer scripts are enabled
wp_footer()is present in your themeโs footer.php- You are not using a โminimal JSโ experimental mode
Without footer scripts, no terminal will appear.
๐น 7. Check for Security Plugins Blocking the Terminal Script #
Some security plugins mistakenly block terminal scripts because they include words like:
- command
- execute
- terminal
Check:
- Wordfence
- Defender
- Sucuri
- iThemes Security
- Ninja Firewall
Whitelist:
cointacted-social-terminal.js
cointacted-social-terminal-public.css
๐น 8. Shortcode Ignores Inside Some Block Themes (FSE) #
Some block themes do not run shortcodes inside:
- Template Parts
- Reusable Blocks
- Query Loops
- Site Editor blocks
Try placing the shortcode in:
Pages โ Sample Page โ Shortcode Block
If it appears there, the theme is blocking shortcode execution in other areas.
๐น 9. Check For Plugin Conflicts #
Disable all plugins except:
- Cointacted Social Terminal
Reload the page.
If the terminal appears:
- Re-enable plugins one-by-one
- Identify the one breaking shortcode rendering or script loading
Common offenders:
- Page speed optimizers
- Builders that modify frontend scripts
- Scripts-in-header plugins
๐น 10. Confirm No PHP Errors Are Occurring #
If the shortcode silently fails, PHP might have thrown an error.
Go to:
wp-content/debug.log (if WP_DEBUG is enabled)
Look for:
PHP Fatal error
or errors related to cointacted-social-terminal.
If the plugin hit a fatal error, shortcode output may stop.
๐น 11. The Terminal Works but Is Hidden by CSS #
Inspect the shortcode area.
If you see the terminal in the DOM but itโs invisible, the theme may have added:
display: none- zero height
- overflow hidden
- z-index issues
- absolute positioning issues
Fix by adding:
.cointacted-social-terminal {
display: block !important;
position: relative !important;
visibility: visible !important;
}
๐ฏ Summary #
If the terminal does not appear:
โ Check plugin activation #
โ Confirm the shortcode #
โ Ensure JS is loading #
โ Disable aggressive caching/optimization #
โ Try on a clean page #
โ Check theme shortcode support #
โ Inspect for CSS hiding the terminal #
โ Look for plugin conflicts #
โ Check debug.log for PHP errors #
These steps fix 99% of cases.