hotplugin
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Support Plus Responsive Ticket System] Doesn't worki’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
support page: http://www.mumber.com/supportForum: Plugins
In reply to: [Best WordPress FAQ] Order of category in faq pagei 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 .
inside functions.php
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
In reply to: [Facebook] What's new in version 1.2i added the appid , secret id on page=facebook-application-settings
and saved it. but nothing happens,Forum: Plugins
In reply to: [eShop] [Plugin: eShop] Need to add extra form to specific categorieshi 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
In reply to: jquery – not working & where to place the js codein 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
In reply to: How do I make menu links open in new window?on menu links target=”_blank”
Forum: Themes and Templates
In reply to: Video on front page postyou could embed your video as a custom field and call it where you want,
else just move your embedding to top of postForum: Themes and Templates
In reply to: Edit PHP remove Page Titles, Keep Post Titlesjust add if(is_page()) next to is_home()
Forum: Themes and Templates
In reply to: custom homepage and link to recent articlesrun another loop
Forum: Themes and Templates
In reply to: excluding menu/navbar from specific pageu can use if(!is_page(your_page_number)):wp_nav_menus;
on your header.
Forum: Themes and Templates
In reply to: Tagline remove in other sideuse css rule:
float:right;
on your taglinedid you change your theme?
Forum: Fixing WordPress
In reply to: Show content from parent page on childrenyou could use this:
echo current($arr);
or
echo reset($arr);