ballmouse
Forum Replies Created
-
Forum: Developing with WordPress
In reply to: Menu dropdown widthThank you @vladytimy !
What is the difference between writing CSS in Additional CSS and the Theme Editor? I see all my previous custom CSS is in the Theme Editor and when I wrote your code there nothing happened. But writing it in the Additional CSS area made the change.
Also, is there any chance the width could be dynamic to be just large enough so the text per dropdown item fits on 1 line? 216 is exactly enough, but if I were ever to add an item with more text, it would be nice if it could automatically increase the length.
Forum: Plugins
In reply to: [WooCommerce] Shipping Details Missing from CheckoutI figured it out: you have to created shipping zones in WooCommerce>Settings>Shipping.
Forum: Plugins
In reply to: [WooCommerce] Price and Add to cart in the same lineJust an update – I think I’ve been able to shift the ‘Add to Cart’ button and the text box of the quantity object, but the plus and minus buttons for the quantity object disappear. Any idea on what I’m doing wrong?
The code I’m using right now is:
div.single_variation_wrap { width: 120%; display: -webkit-inline-box; } div.woocommerce-variation-add-to-cart.variations_button.woocommerce-variation-add-to-cart-enabled { float: right; padding-left: 15px; }
Forum: Plugins
In reply to: [WooCommerce] Price and Add to cart in the same lineHi Caleb,
I attempted to use your code into my site (https://www.parfournir.com/shop/trousers/athletic-fit/plain-front/), but it didn’t appear to work.
The price, stock message, add to cart button, and quantity were all shifted over to the right instead of the add to cart button and quantity buttons moving onto the same line and to the right of the price and stock message.
Would you be able to assist?
Forum: Plugins
In reply to: [WooCommerce] Logo Font IssueNot sure how, but the issue appeared to resolve itself after a few refreshes on the website.
Forum: Plugins
In reply to: [Easy Table] Bold font for individual rowsI think
[attr style="font-weight:bold"]
works, but you need to write it for each cell.
Forum: Plugins
In reply to: [WooCommerce] Adding Used Coupon Code into Customer EmailsThanks.
I was able to made some change to that linked code and came up with:
add_action( 'woocommerce_email_after_order_table', 'add_payment_method_to_admin_new_order', 15, 2 ); /** * Add used coupons to the order confirmation email * */ function add_payment_method_to_admin_new_order( $order, $is_admin_email ) { if( $order->get_used_coupons() ) { $coupons_count = count( $order->get_used_coupons() ); $i = 1; $coupons_list = ''; foreach( $order->get_used_coupons() as $coupon) { $coupons_list .= $coupon; if( $i < $coupons_count ) $coupons_list .= ', '; $i++; } echo '<p></p>'; echo '<p><strong>Credit(s) used (' . $coupons_count . ') :</strong> ' . $coupons_list . '</p>'; } // endif get_used_coupons }
Forum: Plugins
In reply to: [WooCommerce] Shipping Details Missing from CheckoutCould it be that I only have Paypal enabled at the moment, and not PayPal Powered by Braintree or Stripe?
Forum: Plugins
In reply to: [WooCommerce] Shipping Details Missing from CheckoutI think all my settings are correct, but I took some screenshots.
https://i1074.photobucket.com/albums/w417/ballmouse/shipping%20general_zpstapvagdj.png
https://i1074.photobucket.com/albums/w417/ballmouse/shipping%20options_zpsnpjzuggo.png
Thank you! Just added an ‘s’ to the image url and it went away.
Forum: Plugins
In reply to: [WooCommerce] Decrease Product Short Description MarginsHi Caleb. I actually asked the theme developer after your initial response and put in the following code
/*widen div for description*/ div.short-description { width: 120%; } /*Center button*/ div.woocommerce-variation-add-to-cart.variations_button.woocommerce-variation-add-to-cart-disabled { text-align: center; width: 120%; } /*center underline*/ .tx-div.small { width: 90%; }
Thank you for your help!
Forum: Plugins
In reply to: [WooCommerce] Decrease Product Short Description MarginsThank you – if you get a chance, the product page link is: https://www.parfournir.com/shop/trousers/athletic-fit/flat-front/.
Forum: Fixing WordPress
In reply to: Increasing space between bullet point and following textThank you!
For anyone else interested, I added
li { padding-left: 20px; }
to the style.css
Forum: Plugins
In reply to: [WooCommerce] White Space on Homepage that is not the background colorYep. URL is https://www.parfournir.com/. There is this white space (background is a sort of faint peach at the moment) at the bottom.
It was because the position was set to Middle Center. Setting it to Top Center fixed the problem.
Thank you!