Title: hotplugin's Replies | WordPress.org

---

# hotplugin

  [  ](https://wordpress.org/support/users/hotplugin/)

 *   [Profile](https://wordpress.org/support/users/hotplugin/)
 *   [Topics Started](https://wordpress.org/support/users/hotplugin/topics/)
 *   [Replies Created](https://wordpress.org/support/users/hotplugin/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/hotplugin/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/hotplugin/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/hotplugin/engagements/)
 *   [Favorites](https://wordpress.org/support/users/hotplugin/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 46 total)

1 [2](https://wordpress.org/support/users/hotplugin/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/hotplugin/replies/page/3/?output_format=md)
[4](https://wordpress.org/support/users/hotplugin/replies/page/4/?output_format=md)
[→](https://wordpress.org/support/users/hotplugin/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Support Plus Responsive Ticket System] Doesn't work](https://wordpress.org/support/topic/doesnt-work-1192/)
 *  [hotplugin](https://wordpress.org/support/users/hotplugin/)
 * (@hotplugin)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/doesnt-work-1192/#post-6939519)
 * i’ve added the shortcode on a page and selected it.
 * how do i show the support button on the website?
 * not working here: [http://www.muber.com](http://www.muber.com)
    support page:
   [http://www.mumber.com/support](http://www.mumber.com/support)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Best WordPress FAQ] Order of category in faq page](https://wordpress.org/support/topic/order-of-category-in-faq-page/)
 *  Thread Starter [hotplugin](https://wordpress.org/support/users/hotplugin/)
 * (@hotplugin)
 * [11 years, 1 month ago](https://wordpress.org/support/topic/order-of-category-in-faq-page/#post-5953208)
 * i found a way to achieve it. Use shortcode [duo_faq category=”5,4,3,2,1″] instead
   of just [duo_faq], so this will order the categories as you place it in the tag
   with comma separation.
 * So if you can include this in the readme or installation somewhere, then that
   should be enough i guess.
 * thanks .
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] [Plugin: WooCommerce – excelling eCommerce] Woocommerce pricing not working?](https://wordpress.org/support/topic/plugin-woocommerce-excelling-ecommerce-woocommerce-pricing-not-working/)
 *  [hotplugin](https://wordpress.org/support/users/hotplugin/)
 * (@hotplugin)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/plugin-woocommerce-excelling-ecommerce-woocommerce-pricing-not-working/#post-2831264)
 * inside functions.php
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] [Plugin: WooCommerce – excelling eCommerce] Woocommerce pricing not working?](https://wordpress.org/support/topic/plugin-woocommerce-excelling-ecommerce-woocommerce-pricing-not-working/)
 *  [hotplugin](https://wordpress.org/support/users/hotplugin/)
 * (@hotplugin)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/plugin-woocommerce-excelling-ecommerce-woocommerce-pricing-not-working/#post-2831262)
 * here’s a quick solution:
 *     ```
       add_filter( 'woocommerce_variable_free_price_html', 'hide_free_price_notice', 10, 2 );
       add_filter( 'woocommerce_free_price_html',          'hide_free_price_notice', 10, 2 );
   
       /**
        * Hides the 'Free!' price notice
        */
       function hide_free_price_notice( $price, $product ) {
         return '';
       }
       ```
   
 * TRY IT !
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Facebook] What's new in version 1.2](https://wordpress.org/support/topic/whats-new-in-version-12/)
 *  [hotplugin](https://wordpress.org/support/users/hotplugin/)
 * (@hotplugin)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/whats-new-in-version-12/#post-3444475)
 * i added the appid , secret id on page=facebook-application-settings
    and saved
   it. but nothing happens,
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[eShop] [Plugin: eShop] Need to add extra form to specific categories](https://wordpress.org/support/topic/plugin-eshop-need-to-add-extra-form-to-specific-categories/)
 *  [hotplugin](https://wordpress.org/support/users/hotplugin/)
 * (@hotplugin)
 * [13 years, 8 months ago](https://wordpress.org/support/topic/plugin-eshop-need-to-add-extra-form-to-specific-categories/#post-2978153)
 * hi this may be off topic. but i am trying to send credit card number stored in
   user profile to the authorize.net checkout page. is this possible? any hints?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [jquery – not working & where to place the js code](https://wordpress.org/support/topic/jquery-not-working-where-to-place-the-js-code/)
 *  [hotplugin](https://wordpress.org/support/users/hotplugin/)
 * (@hotplugin)
 * [14 years, 2 months ago](https://wordpress.org/support/topic/jquery-not-working-where-to-place-the-js-code/#post-2575087)
 * in your functions.php
 *     ```
       aadd_action('init', 'hide');
   
       function hide() {
       	if (!is_admin()) {
   
       		// register your script location, dependencies and version
       		wp_register_script('hide',
       			get_stylesheet_directory_uri() . '/js/hide.js',
       			array('jquery') );
          // enqueue the script
          wp_enqueue_script('hide');
       	}
       }
       ```
   
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [How do I make menu links open in new window?](https://wordpress.org/support/topic/how-do-i-make-menu-links-open-in-new-window/)
 *  [hotplugin](https://wordpress.org/support/users/hotplugin/)
 * (@hotplugin)
 * [14 years, 2 months ago](https://wordpress.org/support/topic/how-do-i-make-menu-links-open-in-new-window/#post-2575086)
 * 
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Video on front page post](https://wordpress.org/support/topic/video-on-front-page-post/)
 *  [hotplugin](https://wordpress.org/support/users/hotplugin/)
 * (@hotplugin)
 * [14 years, 2 months ago](https://wordpress.org/support/topic/video-on-front-page-post/#post-2571941)
 * you could embed your video as a custom field and call it where you want,
    else
   just move your embedding to top of post
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Edit PHP remove Page Titles, Keep Post Titles](https://wordpress.org/support/topic/edit-php-remove-page-titles-keep-post-titles/)
 *  [hotplugin](https://wordpress.org/support/users/hotplugin/)
 * (@hotplugin)
 * [14 years, 2 months ago](https://wordpress.org/support/topic/edit-php-remove-page-titles-keep-post-titles/#post-2571940)
 * just add if(is_page()) next to is_home()
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [custom homepage and link to recent articles](https://wordpress.org/support/topic/custom-homepage-and-link-to-recent-articles/)
 *  [hotplugin](https://wordpress.org/support/users/hotplugin/)
 * (@hotplugin)
 * [14 years, 2 months ago](https://wordpress.org/support/topic/custom-homepage-and-link-to-recent-articles/#post-2571938)
 * run another loop
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [excluding menu/navbar from specific page](https://wordpress.org/support/topic/excluding-menunavbar-from-specific-page/)
 *  [hotplugin](https://wordpress.org/support/users/hotplugin/)
 * (@hotplugin)
 * [14 years, 2 months ago](https://wordpress.org/support/topic/excluding-menunavbar-from-specific-page/#post-2571937)
 * u can use if(!is_page(your_page_number)):wp_nav_menus;
 * on your header.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Tagline remove in other side](https://wordpress.org/support/topic/tagline-remove-in-other-side/)
 *  [hotplugin](https://wordpress.org/support/users/hotplugin/)
 * (@hotplugin)
 * [14 years, 2 months ago](https://wordpress.org/support/topic/tagline-remove-in-other-side/#post-2572439)
 * use css rule:
    float:right; on your tagline
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [My site has disappeared and reverted back to a brand new log please help!](https://wordpress.org/support/topic/my-site-has-disappeared-and-reverted-back-to-a-brand-new-log-please-help-1/)
 *  [hotplugin](https://wordpress.org/support/users/hotplugin/)
 * (@hotplugin)
 * [14 years, 2 months ago](https://wordpress.org/support/topic/my-site-has-disappeared-and-reverted-back-to-a-brand-new-log-please-help-1/#post-2572437)
 * did you change your theme?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Show content from parent page on children](https://wordpress.org/support/topic/show-content-from-parent-page-on-children/)
 *  [hotplugin](https://wordpress.org/support/users/hotplugin/)
 * (@hotplugin)
 * [14 years, 2 months ago](https://wordpress.org/support/topic/show-content-from-parent-page-on-children/#post-2463240)
 * you could use this:
    echo current($arr); or echo reset($arr);

Viewing 15 replies - 1 through 15 (of 46 total)

1 [2](https://wordpress.org/support/users/hotplugin/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/hotplugin/replies/page/3/?output_format=md)
[4](https://wordpress.org/support/users/hotplugin/replies/page/4/?output_format=md)
[→](https://wordpress.org/support/users/hotplugin/replies/page/2/?output_format=md)