Sitesao Support
  • Home
  • Themes
  • Plugins
  • Support

Support Forums

Home/Forums/
  • Profile
  • Topics Started
  • Replies Created
  • Favorites

Forum Replies Created

  • 9 years ago rememberhim
    Participant
    Post count: 364

    Did you get the email?


    in reply to: Titles in emails dropping down
    9 years ago rememberhim
    Participant
    Post count: 364

    Thank you. I used the third option as it as the easiet. However, it had to be changed in the child theme.


    in reply to: Change button text on Mailchimp form
    9 years ago rememberhim
    Participant
    Post count: 364

    I just sent the email to your email address.


    in reply to: Titles in emails dropping down
    9 years ago rememberhim
    Participant
    Post count: 364
    This reply has been marked as private.

    in reply to: Change button text on Mailchimp form
    9 years ago rememberhim
    Participant
    Post count: 364

    just updating for future reference

    function wc_ninja_custom_variable_price( $price, $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 = ” . $saleprice . ‘ ‘ . $price . ”;
    }

    return $price;
    }
    add_filter( ‘woocommerce_variable_sale_price_html’, ‘wc_ninja_custom_variable_price’, 10, 2 );
    add_filter( ‘woocommerce_variable_price_html’, ‘wc_ninja_custom_variable_price’, 10, 2 );

    —————————————–
    Just want to show the base price without the “From:”? Simply remove both instances of “From:” in the above snippet.

    Have something else in mind? Maybe “Starting at $x.xx”, or perhaps “From $x.xx to $x.xx”? Play around with the first snippet and see what you can come up with.

    Coding taken from

    Modify Variable Product Prices in WooCommerce


    in reply to: Change order of variation pricing
    9 years ago rememberhim
    Participant
    Post count: 364
    This reply has been marked as private.

    in reply to: Heading Background pops up before Page header background
    9 years ago rememberhim
    Participant
    Post count: 364
    This reply has been marked as private.

    in reply to: Change button text on Mailchimp form
    9 years ago rememberhim
    Participant
    Post count: 364
    This reply has been marked as private.

    in reply to: Titles in emails dropping down
    9 years ago rememberhim
    Participant
    Post count: 364
    This reply has been marked as private.

    in reply to: Titles in emails dropping down
    9 years ago rememberhim
    Participant
    Post count: 364
    This reply has been marked as private.

    in reply to: Titles in emails dropping down
    9 years ago rememberhim
    Participant
    Post count: 364
    This reply has been marked as private.

    in reply to: Links in Additional Information
    9 years ago rememberhim
    Participant
    Post count: 364
    This reply has been marked as private.

    in reply to: Woocommerce updated again
    9 years ago rememberhim
    Participant
    Post count: 364

    Thank you!


    in reply to: Shipping address on cart is distorted
    9 years ago rememberhim
    Participant
    Post count: 364

    Thanks for responding. I don’t know what is going on but it’s not doing it anymore. It looks fine on IE/Edge.


    in reply to: Image is huge on Internet Explorer/Edge
    9 years, 1 month ago rememberhim
    Participant
    Post count: 364
    This reply has been marked as private.

    in reply to: Shipping address on cart is distorted
Viewing 15 posts - 76 through 90 (of 364 total)
← 1 2 3 … 5 6 7 … 23 24 25 →
© Copyright Sitesao.com - Support Policy