Sheila
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Category ThumbailsThank you!
Forum: Plugins
In reply to: [WooCommerce] WooCommerce Shipping MessageIs there anyone that can help regarding this?
Forum: Themes and Templates
In reply to: User Registration, Permission and AccessSo now, I have created my Registration form. Technically, what I would like to happen after they register, we manually give them access to an order form page. Do you know with the Members plug in, if I create a new role, would it let me turn on a page for them? Meaning the order form page is only visible once we change their role? Or do you know if Gravity form or any other plug in can do that?
Also, after they register, there should be a log in page. Do you know how to create a front end log in page? Even the widget doesn’t seem to work or maybe I am missing a step? But after I register and log in using my credentials, It just keeps saying log in. Shouldn’t it change to Log Out?
Forum: Themes and Templates
In reply to: User Registration, Permission and AccessThanks Ross! I’ll work on it now.
Forum: Themes and Templates
In reply to: Price not coming upYes I am unfortunately ??
Forum: Themes and Templates
In reply to: Line spacingAwesome! Thank you ??
Forum: Themes and Templates
In reply to: Price not coming upForum: Themes and Templates
In reply to: Price not coming upI have one price list for some products i.e., different scent same price. ANd the ones with different size, have different price.
Forum: Themes and Templates
In reply to: Price not coming upum.. but I had that same result before the php. adding the php helped with removing the price range. My question is how to get the pricing to show up for the variations with the same pricing. It seems like there’s gotta be another code there.
or instead of the php, do you know how to get rid of the price range? from the quick view and product page itself?
Forum: Themes and Templates
In reply to: Price not coming upi did change the code to what you sent.
Forum: Themes and Templates
In reply to: Price not coming upSo I had a code similar to what you just sent. You can go ahead and check it too.
And I’ll tell you the reasoning behind the php. I don’t want the price range on the quick view and the product page itself. So when I figured out the php, which hid what I wanted, my problem now was the missing price for the product with variations that has the same price. It only comes up for product variations when the price is different.
Does that make sense?
Forum: Themes and Templates
In reply to: Price not coming upIve removed all code in the css and php. All the prices are back up.
Forum: Themes and Templates
In reply to: Price not coming upYou can check out my other website https://deteroutdoor.com/shop/.
I’m making the changes to this site too eventually. Once I figure out the fix on the Kaiderma site.
Forum: Themes and Templates
In reply to: Price not coming upI should also add that this is what I had set on my functions.php
<?php
/* ADD custom theme functions here *//**
* @snippet Disable Variable Product Price Range
* @how-to Watch tutorial @ https://businessbloomer.com/?p=19055
* @sourcecode https://businessbloomer.com/disable-variable-product-price-range-woocommerce/
* @author Rodolfo Melogli
* @compatible WooCommerce 2.4.7
*/add_filter( ‘woocommerce_variable_sale_price_html’, ‘bbloomer_variation_price_format’, 10, 2 );
add_filter( ‘woocommerce_variable_price_html’, ‘bbloomer_variation_price_format’, 10, 2 );
function bbloomer_variation_price_format( $price, $product ) {
if ( is_product() ) {
// Main Price
$prices = array( $product->get_variation_price( ‘min’, true ), $product->get_variation_price( ‘max’, true ) );
$price = $prices[0] !== $prices[1] ? sprintf( __( ‘From: %1$s’, ‘woocommerce’ ), wc_price( $prices[0] ) ) : wc_price( $prices[0] );// Sale Price
$prices = array( $product->get_variation_regular_price( ‘min’, true ), $product->get_variation_regular_price( ‘max’, true ) );
sort( $prices );
$saleprice = $prices[0] !== $prices[1] ? sprintf( __( ‘From: %1$s’, ‘woocommerce’ ), wc_price( $prices[0] ) ) : wc_price( $prices[0] );if ( $price !== $saleprice ) {
$price = ‘<del>’ . $saleprice . ‘</del> <ins>’ . $price . ‘</ins>’;
}
return $price;
}
}Forum: Themes and Templates
In reply to: Price not coming upI did what you said and it still didn’t work. I got the same result as my other code. Price still didn’t show up . Check it out. I left it with your code.