Title: Short code
Last modified: August 20, 2016

---

# Short code

 *  Resolved [cherry2000](https://wordpress.org/support/users/cherry2000/)
 * (@cherry2000)
 * [13 years, 6 months ago](https://wordpress.org/support/topic/short-code-3/)
 * Is there a short code to display the box on a specific site on a specific place?
 * I would like to display several boxes of different authors below each other on
   one specific age, kind of like a team page…
 * [http://wordpress.org/extend/plugins/fancier-author-box/](http://wordpress.org/extend/plugins/fancier-author-box/)

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

 *  Plugin Author [Dragan Nikolic](https://wordpress.org/support/users/nikolicdragan/)
 * (@nikolicdragan)
 * [13 years, 6 months ago](https://wordpress.org/support/topic/short-code-3/#post-3218350)
 * Not in this free version.
 * The option of showing author box using shortcode, template tag or widget is reserved
   for the premium version, Fanciest Author Box.
 *  [@Raj](https://wordpress.org/support/users/rajeshtandonrocketmailcom/)
 * (@rajeshtandonrocketmailcom)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/short-code-3/#post-3218385)
 * I came across a problem with this plugin. Actually i have two single.php one 
   for showing blog posts and second for displaying normal product posts. When i
   activate this plugin it comes on both of the post pages while i want this “fancier
   author box” to show only on blog post page and not on product post page. Is there
   any way to activate this plugin with specific category?? or any other better 
   way to handle it???… please help
 *  Plugin Author [Slobodan Manić](https://wordpress.org/support/users/slobodanmanic/)
 * (@slobodanmanic)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/short-code-3/#post-3218386)
 * You mean you have two files named single.php in your theme? How does that work?
 * Plugin is set to add author box only to standard posts and pages, not to custom
   post types (if product is a custom post type). If ‘product’ is simply a category,
   try looking for this line in ts-fab.php:
 * `if( is_singular( 'post' ) ) {`
 * and replacing it with this:
 * `if( is_singular( 'post' ) && !in_category( 'category-not-to-have-author-box')){`
 *  [@Raj](https://wordpress.org/support/users/rajeshtandonrocketmailcom/)
 * (@rajeshtandonrocketmailcom)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/short-code-3/#post-3218387)
 * Thanks for your consideration…
    My single.php working well with the code: <?php
   $post = $wp_query->post; if (in_category(’13’)) { include(TEMPLATEPATH . ‘/blog-
   single.php’); } else { include(TEMPLATEPATH . ‘/normal-single.php’); } ?> But
   problum is that this plugin is also showing on both the file while i whant it
   to display only on blog-single.php
 *  Plugin Author [Slobodan Manić](https://wordpress.org/support/users/slobodanmanic/)
 * (@slobodanmanic)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/short-code-3/#post-3218388)
 * Have you tried editing plugin’s ts-fab.php file (my previous message)?
 *  [@Raj](https://wordpress.org/support/users/rajeshtandonrocketmailcom/)
 * (@rajeshtandonrocketmailcom)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/short-code-3/#post-3218389)
 * yes i tried that and replace the code but it’s still showing the same result.
   Please check my code in previous message. I want to show this plugin with(in_category(’
   13’)), which is for blog post….
 *  Plugin Author [Slobodan Manić](https://wordpress.org/support/users/slobodanmanic/)
 * (@slobodanmanic)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/short-code-3/#post-3218390)
 * I presume you have replaced ‘category-not-to-have-author-box’ with your category,
   right?
 * Try this:
 * `if( is_singular( 'post' ) && in_category( 13 ) ) {`
 *  [@Raj](https://wordpress.org/support/users/rajeshtandonrocketmailcom/)
 * (@rajeshtandonrocketmailcom)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/short-code-3/#post-3218391)
 * Thanks u save me from trouble

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

The topic ‘Short code’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/fancier-author-box_303030.svg)
 * [Fancier Author Box by ThematoSoup](https://wordpress.org/plugins/fancier-author-box/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/fancier-author-box/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/fancier-author-box/)
 * [Active Topics](https://wordpress.org/support/plugin/fancier-author-box/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/fancier-author-box/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/fancier-author-box/reviews/)

 * 8 replies
 * 4 participants
 * Last reply from: [@Raj](https://wordpress.org/support/users/rajeshtandonrocketmailcom/)
 * Last activity: [13 years, 5 months ago](https://wordpress.org/support/topic/short-code-3/#post-3218391)
 * Status: resolved