Roop
Forum Replies Created
-
Forum: Plugins
In reply to: [Facebook Comments] Comments is shown at HomepageI am having a same problem there is a small code snippet for it. Just place it somewhere in functions.php file of your current theme.
add_action( 'wp', 'rs_check_home' ); function rs_check_home() { if ( is_home()||is_front_page() ) { remove_filter( 'the_content', 'fbcommentbox', 100 ); } }
Forum: Plugins
In reply to: [WooCommerce Coupon Shortcodes] Not WorkingOn chrome output is generated but Not displaying the output on Firefox.
Here is the link of development site Development Site Url
And here is the code that i am using:
<div style=" margin-bottom: 0.8em;background:#ffffa6;text-align:center;color: #006400; border: 1px dashed #006400;box-shadow: 0 0 45px 1px #FFFFA6"> [coupon_is_not_valid code="TN64AFSTWATY1L0414"] Get Special <strong>FREE SHIPPING</strong> on "<strong>April's Earth Day Celebration</strong>" for Terreplenish? 64oz Concentrate use coupon code: <span style="text-transform: uppercase;color:#55662e;"> [coupon_code] </span> [/coupon_is_not_valid] </div>
Thanks for any help.
Forum: Plugins
In reply to: [WooCommerce] How to set up Paypal to work with Woocommerce?I also have an issue with woocommerce paypal configuration.
I am used to with paypal with lots of other CMS and plugins but facing some problem with wocommerce.
According to woocommercce documentation https://docs.woothemes.com/document/paypal-standard/#section-3 their IPN URL is like https://example.com/?wc-api=WC_Gateway_PaypalI replaced example.com with my site address. The problem is paypal is not accepting it. It is generating a notice
“You must enter a properly formatted URL into the Notification URL field in order to activate Instant Payment Notification.”
I know it is not properly formatted url as it contains “?”.
Is there a method to make it properly formatted, Any hook or any thing which will make it properly formatted.
Or do i need use URL rewrite for it? i am thinking to do it next.
Thanks
Forum: Plugins
In reply to: [WooCommerce] How to set up Paypal to work with Woocommerce?I also have an issue with woocommerce paypal configuration.
I am used to with paypal with lots of other CMS and plugins but facing some problem with wocommerce.
According to woocommercce documentation https://docs.woothemes.com/document/paypal-standard/#section-3 their IPN URL is like https://example.com/?wc-api=WC_Gateway_PaypalI replaced example.com with my site address. The problem is paypal is not accepting it. It is generating a notice
“You must enter a properly formatted URL into the Notification URL field in order to activate Instant Payment Notification.”
I know it is not properly formatted url as it contains “?”.
Is there a method to make it properly formatted, Any hook or any thing which will make it properly formatted.
Or do i need use URL rewrite for it what i am thinking to do next.
Thanks