screamingredeagle
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] contact form 7 wont send emailThank you for checking!
Sorry I didn’t clarify. I dont receive the emails to my inbox at zoho account [email protected] I was just curious if there is a setting I’m missing?
I set this up on another site for a friend and I don’t remember it giving me the same difficulty but it was a while ago
Any suggestions?
Thanks again
Hello @tarekht
Thanks for your reply. I was actually talking about the word “from” that appears in front of variable products on your woolentor product grid. Here is a screen shot
- https://snipboard.io/GUejMp.jpg
Is there a way to customize that font maybe with css? I also would like to remove the magnifying glass that appears next to the “add to cart” button.
Thank you
Forum: Plugins
In reply to: [WooCommerce] Remove “from”Well I’m using elementor pro and woocommerce. So I’ve already added a snippet to remove the price range on variable products…
//Hide Price Range for WooCommerce Variable Products
add_filter( ‘woocommerce_variable_sale_price_html’,
‘lw_variable_product_price’, 10, 2 );
add_filter( ‘woocommerce_variable_price_html’,
‘lw_variable_product_price’, 10, 2 );function lw_variable_product_price( $v_price, $v_product ) {
// Product Price
$prod_prices = array( $v_product->get_variation_price( ‘min’, true ),
$v_product->get_variation_price( ‘max’, true ) );
$prod_price = $prod_prices[0]!==$prod_prices[1] ? sprintf(__(‘From: %1$s’, ‘woocommerce’),
wc_price( $prod_prices[0] ) ) : wc_price( $prod_prices[0] );// Regular Price
$regular_prices = array( $v_product->get_variation_regular_price( ‘min’, true ),
$v_product->get_variation_regular_price( ‘max’, true ) );
sort( $regular_prices );
$regular_price = $regular_prices[0]!==$regular_prices[1] ? sprintf(__(‘From: %1$s’,’woocommerce’)
, wc_price( $regular_prices[0] ) ) : wc_price( $regular_prices[0] );if ( $prod_price !== $regular_price ) {
$prod_price = ‘‘.$regular_price.$v_product->get_price_suffix() . ‘‘ .
$prod_price . $v_product->get_price_suffix() . ‘‘;
}
return $prod_price;
}This worked to eliminate the price range but then I was stuck with the prefix “from”. I added the snippet you shared but then the price was eliminated from everywhere on the site. So I’m assuming there’s a conflict somewhere?
Sorry I’m a newb.
Thanks for your help
Hello @grigaswp
I was finally able to get to the library to test from their machines (BIG snow storm hit) and it seems the modal is working from their pc’s on google chrome.
(SIDE NOTE*** IE looks awful and almost nothing is rendering but I guess thats whats you get for IE and it has nothing to do with this thread lol)
So I’m assuming maybe since paypal recognizes my devices, it is acting differently for me? I will have the opportunity to test from a few more devices tomorrow and keep you posted. Thanks again for your help thus far.
If you know of a way to send a screen record or something if that would make it easier, i could perhaps upload a small video clip to google drive if you would like to see what’s going on from my end.
Thanks again for your help
Hi @grigaswp
Yes I’m clicking the big yellow paypal button that sits directly above the “debit or credit card” button on both the individual product pages and on the checkout page. Maybe it’s only doing it for my devices? We are trapped in a pretty big snowstorm right now or I would try to get to the library and test from one of their computers.
Is there a reason it would only redirect to paypal site for me and not for others?
Hello @laceyrod
Thank you for your reply. I am not seeing the same thing on my end just the redirect to paypal. I’ve tried on my laptop and on my phone but with my phone I land on a venmo option for some reason.
I’ve also tried through private browser and purging my cache through cloudflare but still getting the redirect.
Thank you for your help!
..or I would also be happy with removing the “paylater” option altogether.
Thanks again!
Forum: Plugins
In reply to: [WooCommerce] changing color of “paylater” smart buttonOh wow I thought thats where I was lol guess I should’ve paid attention to the breadcrumbs
Thank you
Forum: Plugins
In reply to: [WooCommerce] changing color of “paylater” smart buttonThank you for the help. Here is the link for the screen shot.
screen shot of checkoutIt’s on the checkout page. Im not sure if the same buttons would appear globally perhaps on other pages (I haven’t built out the whole site yet) but if there would be a way to change the color of the button across the entire site that would be ideal.
Thanks again!
Forum: Plugins
In reply to: [WooCommerce] changing color of “paylater” smart buttonRight on thank you for the help!