petesalerno
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] coupons do not recalculate when cart is updatedThanks @maykato, I never got the email that you posted to this. I will try to identify the conflict. I’ll post if I find anything.
Forum: Plugins
In reply to: [WooCommerce] coupons do not recalculate when cart is updatedThe are standard coupons. https://snipboard.io/7li0pJ.jpg
I do modify their application with this snippet to verify minimum quantity and adjust the discount based on product:
add_action( 'woocommerce_applied_coupon', 'add_promotion_to_cart' ); function add_promotion_to_cart( $coupon_code ) { global $woocommerce; $minimumorder = 19; if ($woocommerce->cart->cart_contents_count > $minimumorder){ if ($coupon_code == "together") { $woocommerce->cart->remove_coupon( $coupon_code ); $new_code1 = "together1"; $new_code2 = "together2"; $woocommerce->cart->add_discount( $new_code1 ); $woocommerce->cart->add_discount( $new_code2 ); wc_print_notice('Promo Code Applied'); } wc_clear_notices(); } else { $woocommerce->cart->remove_coupon( $coupon_code ); wc_print_notice('Minimum quantity for Promo Code is 20 Checks'); wc_clear_notices(); } }
Forum: Developing with WordPress
In reply to: setcookie fails inside shortcodeThanks
Forum: Developing with WordPress
In reply to: setcookie fails inside shortcodeI ended using posts_selection.
Thanks everyone for the help.Forum: Developing with WordPress
In reply to: setcookie fails inside shortcodeI tried this without luck:
add_action( 'init', "sc_set_timer_cookie", 1); function sc_set_timer_cookie() { if (is_page(434)) { if(!isset($_COOKIE["myCookie"])) { setcookie( "myCookie", "1234", $expire,"/",$_SERVER['HTTP_HOST'] ); } } } return ; }
Note: the test page is ‘https://lostfornever.com/?p=434’
- This reply was modified 4 years, 11 months ago by petesalerno.
Forum: Developing with WordPress
In reply to: setcookie fails inside shortcodeThis got me thinking.
If is_page will identify the page in an action for wp_headers I could do it there.
Forum: Developing with WordPress
In reply to: setcookie fails inside shortcode@joyously Thanks, that was my fear.
@bcworkz My problem is I need to set the cookie only for the specific page. There will be a set of 4 or 5 cookies unique to different pages. So I can’t have it fire before init. But won’t JavaScript have the same problem? The page will be loaded before the script fires.
@sterndata Yes, the code is just for illustrating the problem. In the plugin, output will be in the returned variable.
Forum: Plugins
In reply to: [WooCommerce] incomplete rendering of upsell popups after upgradeOK, I just upgraded to 3.0.7. The problem still exists
Forum: Plugins
In reply to: [WooCommerce] SSL & WooCommerceHi Myles,
That script looks great.
Yes, mostly. Some themes and page-builders keep items like logos & slider images in serialized format, for those the safest way is to replace the images 1 by one in theme customization or with the page-builder.
Pete
Forum: Plugins
In reply to: [WooCommerce] SSL & WooCommerceI put this together to discuss converting to HTTPS. If you are comfortable wth SQL there is a page with the commands you will need to run. (note depending on how you build your site you may need to do the commands for both yourdomain.com and https://www.yourdomain.com If you are not comfortable a plugin is listed, but it may impact performance a bit.
wpsupport2248 there are 2 places where you configure Sticky Lists.
1st in the Form, for each Field you can select if that filed appears as a column in the list
2nd in Settings for each Form, you can set who can access the Entries for that Form plus many other Stick List options.
@wpsupport2248 You don’t need to include all the fields, only include the fields that you need to distinguish the different entries.
Forum: Reviews
In reply to: [Gravity PDF] Does what it saysHi Jake,
You are correct. I tested this again and the filed IDs do remain the same.
I will modify my review.
Pete
Forum: Plugins
In reply to: [WooCommerce Fixed Quantity] Using with 'Variable' productsAdd me to the list for supporting Variable Products
Plugin:
https://www.ads-software.com/plugins/woocommerce-fixed-quantity/Forum: Plugins
In reply to: [WooCommerce Fixed Quantity] cannot add to cartI am having the same issue.
I start with an empty cart and add a fixed quantity (1000 in the example), but it still fails with “Product Business Cards 2 can be ordered using this listed quantity : 250, 500, 1000.”.
See attached video https://dl.dropboxusercontent.com/u/1920735/FixedQuant.mov
Plugin:
https://www.ads-software.com/plugins/woocommerce-fixed-quantity/