tahafarooqui
Forum Replies Created
-
Hi @lorro ,
I already found the solution.
Added this code in Functions.php file :
add_filter( 'display_woo_cart_notice', 'woo_cart_notice' ); function woo_cart_notice() { foreach ( WC()->cart->get_cart() as $cart_item_key => $cart_item ) { $product_id = apply_filters( 'woocommerce_cart_item_product_id', $cart_item['product_id'], $cart_item, $cart_item_key ); wc_add_to_cart_message( $product_id ); } }Put this code ,Where you want to display notice.
do_action( 'display_woo_cart_notice' );- This reply was modified 9 years, 2 months ago by tahafarooqui.
- This reply was modified 9 years, 2 months ago by tahafarooqui.
Hi Coreybruyere,
Please let me know,How you solve this issue .I have same problem .
Thanks,
TahaForum: Plugins
In reply to: [Easy Modal] Remove nav arrows in pop up window@helle[email protected] – Hi ,you can remove navigation arrows by add this in your style.css file .
.ms-skin-default .ms-nav-next, .ms-skin-default .ms-nav-prev {
display: none !important;
}Forum: Plugins
In reply to: [Easy Modal] loading icon before modal opens?Is there any example or any hint?
Forum: Plugins
In reply to: [Easy Modal] How to insert thumbnails in pop up window@danieliser-Thanks for your reply .I already fixed my issue .Let me explain you ,What I want and How i solved my issue.
First I tell you what I want?
When user click on read more link .The pop window will open .In your plugin only text and content show .I also want post thumbnail like this.How I fixed it ?
I just add the_post_thumbnail in modal.php .My problem is fixed now.I’m very glad .Thanks