Title: Problem
Last modified: August 21, 2016

---

# Problem

 *  [zOmbiOXx](https://wordpress.org/support/users/zombioxx/)
 * (@zombioxx)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/problem-55/)
 * Our theme (greptem2) does not display the shortcode everywhere.
    The shortcodes
   are not taken into account in such posts “blog”.
 * The link of the theme:
    [http://viriava.com/themeforest/grep/greptem2/](http://viriava.com/themeforest/grep/greptem2/)
 * Link a single item: [http://ifun.besaba.com/my-bugs](http://ifun.besaba.com/my-bugs)
   
   Link template “blog” [http://ifun.besaba.com/news](http://ifun.besaba.com/news)
 * We do not know what to do. Can you help us? Thank you in advance.
 * [http://wordpress.org/plugins/shortcodes-ultimate/](http://wordpress.org/plugins/shortcodes-ultimate/)

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

 *  Plugin Author [Vova](https://wordpress.org/support/users/gn_themes/)
 * (@gn_themes)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/problem-55/#post-4256033)
 * Hi,
 * I can see that the shortcodes is working properly on your pages – [http://clip2net.com/s/62bMye](http://clip2net.com/s/62bMye)
 *  Plugin Author [Vova](https://wordpress.org/support/users/gn_themes/)
 * (@gn_themes)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/problem-55/#post-4256035)
 * Oh sorry, I doesn’t understood you correctly at first time.
 * As I can see, your theme uses AJAX to load page content. So, in this case you
   just need to enqueue assets of my plugin manually on all your pages.
 * Try to put this code to your theme’s functions.php file
 *     ```
       function gndev_force_su_assets() {
          if ( !is_front_page() || !function_exists( 'su_query_asset' ) ) return;
          su_query_asset( 'css', 'su-content-shortcodes' );
          su_query_asset( 'css', 'su-box-shortcodes' );
       }
   
       add_action( 'wp_head', 'gndev_force_su_assets', 99 );
       ```
   
 *  Thread Starter [zOmbiOXx](https://wordpress.org/support/users/zombioxx/)
 * (@zombioxx)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/problem-55/#post-4256046)
 * Know i havent the icons of button, services…
 *  Plugin Author [Vova](https://wordpress.org/support/users/gn_themes/)
 * (@gn_themes)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/problem-55/#post-4256057)
 * You can add `su_query_asset( 'css', 'font-awesome' );` to enable icons.
 *  Thread Starter [zOmbiOXx](https://wordpress.org/support/users/zombioxx/)
 * (@zombioxx)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/problem-55/#post-4256077)
 * If “Compatibility Mode” on the check, nothing works is this:
 * [heading] Hello [/ heading]
    [Service title = “I love this (heart)” icon = “icon:
   exclamation-sign” icon_color = “# d60b1b”] This is the best shortcode [/ services][
   button url = “[http://ifun.besaba.com/my-bugs&#8221](http://ifun.besaba.com/my-bugs&#8221);
   style = “3d” icon = “icon: thumbs-up” icon_color = “# 51f50a”] the good page [/
   button] [button url = “# [http://ifun.besaba.com/](http://ifun.besaba.com/) news”
   style = “3d” icon = “icon: thumbs-down” icon_color = “# f61818”] the bad page[/
   button] [button url = “[http://wpskinslab.com/wp-content/uploads/downloads/2013/10/greptem2.zip&#8221](http://wpskinslab.com/wp-content/uploads/downloads/2013/10/greptem2.zip&#8221);
   target = “blank” background = “# 000000” icon = “icon: download-alt”] download
   my theme [/ button]
 *  Plugin Author [Vova](https://wordpress.org/support/users/gn_themes/)
 * (@gn_themes)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/problem-55/#post-4256079)
 * I know about it =)
    Did you read the article about this option?
 *  Thread Starter [zOmbiOXx](https://wordpress.org/support/users/zombioxx/)
 * (@zombioxx)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/problem-55/#post-4256081)
 * And I forgot to tell you what you gave us did not work:
 * “You can add su_query_asset (‘css’, ‘font-awesome’) to enable icons.”
 *  Plugin Author [Vova](https://wordpress.org/support/users/gn_themes/)
 * (@gn_themes)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/problem-55/#post-4256088)
 * Are you sure that you do this right?
 * There is a complete code
 *     ```
       function gndev_force_su_assets() {
          if ( !function_exists( 'su_query_asset' ) ) return;
          su_query_asset( 'css', 'font-awesome' );
          su_query_asset( 'css', 'su-content-shortcodes' );
          su_query_asset( 'css', 'su-box-shortcodes' );
       }
   
       add_action( 'wp_head', 'gndev_force_su_assets', 99 );
       ```
   
 *  Thread Starter [zOmbiOXx](https://wordpress.org/support/users/zombioxx/)
 * (@zombioxx)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/problem-55/#post-4256134)
 * Waht is this article ?
    Yes i’m sure the icons don’t work.
 *  Thread Starter [zOmbiOXx](https://wordpress.org/support/users/zombioxx/)
 * (@zombioxx)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/problem-55/#post-4256166)
 * For the icons it’s ok in template of classic page but not in the template of 
   blogs except unless the compatibility mode is enabled, in this case everything
   is reversed.
 *  [hhashemiolia](https://wordpress.org/support/users/hhashemiolia/)
 * (@hhashemiolia)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/problem-55/#post-4256463)
 * I use Noname Theme (ajax) and I add
 *     ```
       function gndev_force_su_assets() {
          if ( !function_exists( 'su_query_asset' ) ) return;
          su_query_asset( 'css', 'font-awesome' );
          su_query_asset( 'css', 'su-content-shortcodes' );
          su_query_asset( 'css', 'su-box-shortcodes' );
       }
   
       add_action( 'wp_head', 'gndev_force_su_assets', 99 );
       ```
   
 * icons and spoilers is ok but when I Click on it not work.
    why ? [ ( test in Green
   link )

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

The topic ‘Problem’ is closed to new replies.

 * ![](https://ps.w.org/shortcodes-ultimate/assets/icon-256x256.gif?rev=2547563)
 * [WP Shortcodes Plugin — Shortcodes Ultimate](https://wordpress.org/plugins/shortcodes-ultimate/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/shortcodes-ultimate/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/shortcodes-ultimate/)
 * [Active Topics](https://wordpress.org/support/plugin/shortcodes-ultimate/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/shortcodes-ultimate/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/shortcodes-ultimate/reviews/)

 * 11 replies
 * 3 participants
 * Last reply from: [hhashemiolia](https://wordpress.org/support/users/hhashemiolia/)
 * Last activity: [12 years, 6 months ago](https://wordpress.org/support/topic/problem-55/#post-4256463)
 * Status: not resolved