gotmedia
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Payment method for smoking businessYou can try Stripe.
From what I recall, PayPal doesn’t like when retailers have a lot of returns.
Forum: Plugins
In reply to: [WooCommerce] Post Check-Out EmailHi Togobox,
Most of the information should be already included right out of the box. Have you tested it?
In regards to the image you designed, that’s actually pretty simple. If you look in your woocommerce folder in Emails, it should say customer-processing-order.php. Make sure you copy that into your own theme folder in /your-theme/woocommerce/emails/customer-processing-order.php and edit it.
You can add an image, logo, etc. in there.
Forum: Plugins
In reply to: [WooCommerce] Minimum number of products before customer can check outHi Vissers,
I think this plugin will do what you’re after:
https://woocommerce.com/products/minmax-quantities/It’s great, I’ve used it before! A lot of people sell items in sets of 2, but in your case, you want 8. And I think it’ll do all that you’re asking for.
Try it!
Forum: Plugins
In reply to: [WooCommerce] Hiding “apply the coupon field” from cartIn any case, you could probably do this. I would have to see how your site is set up, but if you know the selector, you’d do:
.selector-name { position: absolute; top: -9999px; left: -9999px; }
I try not to do display:none; as I read it has conflicts with SEO. I always try to do that above technique ^.
Forum: Plugins
In reply to: [WooCommerce] Hiding “apply the coupon field” from cartI looked into this and it appears this was resolved. Is that correct?
Forum: Plugins
In reply to: [WooCommerce] full width products page and single product pageHi there,
Your site currently shows an error on the database connection. Try checking to see if your username and password is correct in your config.
Or, you can always try deactivating your plugins via your FTP, it might be a plugin that got corrupted.
Forum: Plugins
In reply to: [WooCommerce] How to move “added to cart” messageHi Piotr,
You could probably make this happen via jQuery by moving the message in the DOM to after your products, but otherwise, I’m not quite sure. I found jQuery helps with a lot of these situations!
Forum: Plugins
In reply to: [WooCommerce] More Products Per Page Not WorkingHi Erik,
Not sure if this will work, but try this:
add_filter( 'loop_shop_per_page', create_function( '$cols', 'return 24;' ), 20 );
Forum: Fixing WordPress
In reply to: bootstrap with contact form 7Hi Mindiapolis — It appears you don’t have a text field for Name. You’ll need something like this:
<label class="sr-only" for="inputName"> Name [text your-name]</label> <label> Your Email (required) [email* your-email] </label> [submit "Send"]
Or did that not answer your question? If so, would you elaborate?
You are an awesome human. Thank you for your response (quick too!). I’m definitely going to try this plugin out on my site ??
Forum: Plugins
In reply to: [Autoptimize] Autoptimize Cache Files (over 9,000!)Hi there,
Thank you for your reply! I did uncheck the aggregate inline JS, but I still do have over 9000 files. Can I delete them?
Thank you,
StephanieForum: Plugins
In reply to: [Relevanssi - A Better Search] How to pages to show up in the search?Hi Mikko,
Ahh, that worked. Thanks!
Forum: Plugins
In reply to: [Relevanssi - A Better Search] How to pages to show up in the search?Ahh right. This is what I have in the search form:
<input type="hidden" name="post_type" value="product" />
It does say product. Now, if I say page, then it won’t show up the products. Is that correct? If so, how do I get it to show the products and the pages?
Thank you for your time,
StephanieForum: Plugins
In reply to: [Relevanssi - A Better Search] How to pages to show up in the search?Hi Mikko,
Yes, I have checked pages in the list of post types and I did rebuild the index.
My site is here:
https://barstoolcomforts.com/If I type in Warranty or Warranties, I get 0 results. Hm.
Thoughts?
Forum: Plugins
In reply to: [WooCommerce] WooCommerce: Where to edit blog category.php?Ooh big DUH to me lol! I totally forgot, but yes archive.php is here. Thank you!