pra5hant
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Want to Display Woocommerce product price on sidebarHey I just manage to write function in functions.php
add_filter(‘woocommerce_get_price_html’,’wpa_price_html’, 10, 2);
function wpa_price_html($price, $product){
global $pro_price;
$pro_price = $price;
echo $pro_price; //Here I echo and It Display
return $pro_price;
}When I echo the value It display on that page, please see the Image
Img Link : https://s32.postimg.org/skv4bb2px/img2.jpgBut I dont know how to use this function on another file. I used apply filter but it giving error.
<div class=”individual-price”>
Normal Price:<?php echo apply_filters(‘woocommerce_get_price_html’,”); ?>
</div>Forum: Plugins
In reply to: [WooCommerce] Want to Display Woocommerce product price on sidebarI don’t want to move the price, I want to place the similar price to desired localtion, is there any shortcode which do this for me?
Forum: Plugins
In reply to: [WooCommerce] Want to Display Woocommerce product price on sidebarHello Mike, Thank you for Reply, I want to Display product price related to that product.
I am using WPLMS theme, and I want to show the product price at my desired location please refer following image
Img link : Click HereForum: Themes and Templates
In reply to: [Mk] Set .navbar-default to collaps on mobile deviceIt’s work perfect for me, Thank you so much…
Forum: Themes and Templates
In reply to: [Mk] Set .navbar-default to collaps on mobile deviceMy problem is When Web site view on mobile devices, the navbar is in collapsed state. it shouldn’t be collapsed till user click on Icon to see the menu right?
Forum: Themes and Templates
In reply to: [Mk] Set .navbar-default to collaps on mobile deviceHey, I think you have found the answer, can you please help me, I am also facing the similar problem, Thank you…
Forum: Plugins
In reply to: Polylang switches automatically to default..I am facing the same issue, do you find the solution? if yes then please let me know.