Title: problem with apparence shortcode wordpress
Last modified: February 1, 2018

---

# problem with apparence shortcode wordpress

 *  [nicowebmaster](https://wordpress.org/support/users/nicowebmaster/)
 * (@nicowebmaster)
 * [8 years, 3 months ago](https://wordpress.org/support/topic/problem-with-apparence-shortcode-wordpress/)
 * Hello
    I have a problem on one of my sites. In front-end, I have codes of shortcodes
   that are visible and do not display the content. They appear like this, in front-
   end [my-shortcode-for-example]. How to make it display the content, simply? I
   did a migration with a previous version on another server, and the problem is
   still there. Is this a problem in the database? because I imported the database
   on this test server and it’s the same … Help me ;-)? My version WordPress is 
   not update ( my version is 4.8.x ) Thank you

Viewing 8 replies - 1 through 8 (of 8 total)

 *  [paulwpxp](https://wordpress.org/support/users/paulwp/)
 * (@paulwp)
 * [8 years, 3 months ago](https://wordpress.org/support/topic/problem-with-apparence-shortcode-wordpress/#post-9927505)
 * We have to find out which plugin or custom function that the shortcode belongs
   to and then re-install/activate it.
 * If that plugin or custom function is already in place, try disabling all other
   plugins and re-enable one by one to figure out the one that conflicts with it.
 *  [RossMitchell](https://wordpress.org/support/users/rossmitchell/)
 * (@rossmitchell)
 * [8 years, 3 months ago](https://wordpress.org/support/topic/problem-with-apparence-shortcode-wordpress/#post-9927511)
 * Are the plugins and code that register the shortcodes active and working ?
 * Using version 4.8.x rather than 4.9 will not be relevant.
 *  [stephencottontail](https://wordpress.org/support/users/stephencottontail/)
 * (@stephencottontail)
 * [8 years, 3 months ago](https://wordpress.org/support/topic/problem-with-apparence-shortcode-wordpress/#post-9927514)
 * Shortcodes usually come from plugins or in rare cases, from your theme. Did any
   of the plugins get disabled or deleted? Has the theme been changed?
 *  Thread Starter [nicowebmaster](https://wordpress.org/support/users/nicowebmaster/)
 * (@nicowebmaster)
 * [8 years, 3 months ago](https://wordpress.org/support/topic/problem-with-apparence-shortcode-wordpress/#post-9927576)
 * so this is a theme that has been created on my behalf for my client. I am the
   webmaster ai I intervene since November on small missions.
    It’s a portal for
   insurance. I installed plugins for SSL certificate, Login Lockdown, Really Simple
   SSL, SSL, TAC, WP Manager, WP Hide Login. Another developer has created a quote
   simulator plugin.
 * Best regards
 *  Moderator [bcworkz](https://wordpress.org/support/users/bcworkz/)
 * (@bcworkz)
 * [8 years, 3 months ago](https://wordpress.org/support/topic/problem-with-apparence-shortcode-wordpress/#post-9928515)
 * Thanks for the additional information, but what you need is missing code which
   defines what the shortcodes do, and registers said shortcodes. Unfortunately,
   that can be anywhere, and possibly even missing from your installation. Where
   the missing code isn’t is your active theme or active plugins, unless there is
   some grievous error somewhere.
 * You could try to locate the missing code in your installation by using a full
   text search command like `grep`. If you do not have terminal access, download
   the plugins and themes folders to your local computer and use a similar search
   function. Search for the name of the shortcode, without the square brackets. 
   If you are seeing [my-shortcode-for-example] in post content, search for “my-
   shortcode-for-example”. The line that registers that shortcode would look something
   like:
    `add_shortcode('my-shortcode-for-example', 'callback-function-name');`‘
   callback-function-name’ could be anything. The module where this is found needs
   to be an active part of your installation.
 *  Thread Starter [nicowebmaster](https://wordpress.org/support/users/nicowebmaster/)
 * (@nicowebmaster)
 * [8 years, 3 months ago](https://wordpress.org/support/topic/problem-with-apparence-shortcode-wordpress/#post-9929878)
 * My shortcode is this one [eppage form-folder-listing]
    I looked in the files 
   I have calls add_shortcode (“eppage”, “” eppage “); for example. And other shortcodes
   coming from contact-form-7, metaslider …. But this “file-folder-listing”, is 
   not found. How to do. It is not me who is the theme and my client is not on good
   terms with the developers. A deleted plugin? A problem with the database?
 *  Thread Starter [nicowebmaster](https://wordpress.org/support/users/nicowebmaster/)
 * (@nicowebmaster)
 * [8 years, 3 months ago](https://wordpress.org/support/topic/problem-with-apparence-shortcode-wordpress/#post-9929941)
 * this my search with add_shortcode terms epp :
 *     ```
       add_shortcode('epconnect','epconnect'); add_shortcode('epgallery','epgallery'); add_shortcode('eppage','eppage'); add_shortcode('epparam','epparam');
         300  
         301:  add_shortcode('epsearch','epsearch'); add_shortcode('epslider','epslider'); add_shortcode('epusers_list','epusers_list');
         302  
         303   $T=$_POST['post_type']; if(!$T) $T=get_post_type($_GET['post']);
       /*if(current_user_can('edit_post') || current_user_can('save_post')){*/
         131  
         132:  add_shortcode('epconnect','epconnect'); add_shortcode('epgallery','epgallery'); add_shortcode('eppage','eppage'); add_shortcode('epparam','epparam');
         133:  add_shortcode('epsearch','epsearch'); add_shortcode('epslider','epslider'); add_shortcode('epusers_list','epusers_list');
         134   $T=$_POST['post_type']; if(!$T) $T=get_post_type($_GET['post']);
         135   if(!$T && strpos($epuri,'post-new.php?post_type=page')!==false) $T='page'; elseif(!$T && strpos($epuri,'post-new.php')!==false)
       ```
   
    -  This reply was modified 8 years, 3 months ago by [nicowebmaster](https://wordpress.org/support/users/nicowebmaster/).
 *  Moderator [bcworkz](https://wordpress.org/support/users/bcworkz/)
 * (@bcworkz)
 * [8 years, 3 months ago](https://wordpress.org/support/topic/problem-with-apparence-shortcode-wordpress/#post-9931857)
 * The plugin or theme that adds the “eppage” shortcode is the proper module you
   need active. It is active, right? The “form-folder-listing” argument that’s used
   is of an unusual form. Data after the first space are seen as attributes. Shortcode
   attributes should always be assigned values. I can think of a scenario where 
   the mere existence of an attribute is adequate information, but I’m not sure 
   the WP parser would correctly handle such a situation.
 * In other words, [eppage form-folder-listing] is an incorrect form. I’m not saying
   it wouldn’t work, just that it’s improper. The proper form passes a value, for
   example, [eppage form-folder-listing=”foobar”]
 * I can imagine you don’t care much about what’s proper, you just need it to work.
   Completely understandable. What module is adding “eppage” as a shortcode? That
   will help us determine what’s needed to get the shortcodes working.

Viewing 8 replies - 1 through 8 (of 8 total)

The topic ‘problem with apparence shortcode wordpress’ is closed to new replies.

## Tags

 * [front-end](https://wordpress.org/support/topic-tag/front-end/)
 * [shortcode](https://wordpress.org/support/topic-tag/shortcode/)
 * [update](https://wordpress.org/support/topic-tag/update/)

 * In: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
 * 8 replies
 * 5 participants
 * Last reply from: [bcworkz](https://wordpress.org/support/users/bcworkz/)
 * Last activity: [8 years, 3 months ago](https://wordpress.org/support/topic/problem-with-apparence-shortcode-wordpress/#post-9931857)
 * Status: not resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
