Jeremiah
Forum Replies Created
-
Forum: Plugins
In reply to: [Bulk Order Form for WooCommerce] Cannot search by SKUHi Daniel!
Thanks for your message. There was a bug I discovered with Sku searching a couple of weeks ago, but I thought it was resolved in the latest version. I’ll check this weekend and get back to you in a couple days!
Jeremiah
Forum: Reviews
In reply to: [Menu Cart for WooCommerce] simple and easyOkay, cool. We’ll look into that and see if there’s a bit better way to do it. I definitely see how that could be bothersome. 🙂 Again, enjoy and feel free to post back here with any support questions. Or, buy the pro version. 😉 Take care!
Forum: Reviews
In reply to: [Menu Cart for WooCommerce] simple and easyThanks for your feedback! Glad you like the plugin, but sorry that you gave us a low rating (presumably for the settings page?). We created our settings page the way we did for two primary reasons:
- It makes it very clear that there are free and there are paid features, and it makes it clear which is which (at least after you click the setting).
- It’s an effective way of informing users that there is a pro version, and we rely on the revenue from the pro version to continue improving and maintaining this plugin. It’s also the reason why we have one of the highest rated, best supported WooCommerce plugins on the WordPress repository.
As I said, we definitely appreciate the feedback, but because of the reasons listed above we won’t likely change the settings page any time soon. Hope that all makes sense, enjoy the plugin, and let us know if you ever need help with it 🙂
Forum: Plugins
In reply to: [404 Silent Salesman] Broken shop layout on 404Try adding something like this to your custom css:
div.info div.details {
display:none !important;
}Were you wanting the sidebar to display as well?
Forum: Plugins
In reply to: [Menu Cart for WooCommerce] proceed to checkout button doesn't workHi there! Just wanted to add to what Ewout said. If you still see the issue without the menu cart plugin installed you can be absolutely sure that the issue is not with this plugin. More than likely you’ll get the best help if you contact WooThemes directly, as they own both the theme and the WooCommerce plugin. Here’s their support page: http://support.woothemes.com/
It may be worth deleting WooCommerce and re-installing it. If you do so you most likely won’t lose your data (you should definitely back up the site, just in case) but you will lose any changes you made to the core WooCommerce plugin. The same is true of your Mystile theme.
Forum: Plugins
In reply to: [Bulk Order Form for WooCommerce] "Warning Empty Needle" & Invalid ArgumentsI don’t know where that location is (i’ve never seen this setup before). It’s whatever generates this: http://wpovernight.com/images/bulkorder.PNG If you want you can send admin login details to support@wpovernight.com and I can take a closer look.
Forum: Plugins
In reply to: [Bulk Order Form for WooCommerce] "Warning Empty Needle" & Invalid ArgumentsOh right, that was silly of me. 🙂 It’s because the [wcbulkorder] shortcode isn’t being properly output on the page. Can you confirm that is placed in the proper location?
Forum: Plugins
In reply to: [Bulk Order Form for WooCommerce] "Warning Empty Needle" & Invalid ArgumentsOkay, got it! So I see errors being thrown by WooCommerce itself, and the WooCommerce Bulk Variation plugin. I also see that there is a button for the bulk order form, but no order form is displayed when I click it. I did an inspect element and I don’t see any traces of the Bulk Order Form plugin being activated. Could you confirm that the plugin is active on the site?
Forum: Plugins
In reply to: [Bulk Order Form for WooCommerce] Read This FirstHi fundamentals!
Could you open this as a new topic? Also, I’m not seeing any errors on that page, or even the bulk order form? Could you link me to the specific page the form is located on? 🙂
Thanks!
Jeremiah
Forum: Plugins
In reply to: [WP Menu Cart] WP Menu Cart not updating when item is removed (EDD)Hi Malcolm!
Whatever the class is that is attached to the remove to cart button should also work for you if you add it to wpmenucart.js. If you’d like I can take a quick look at your site. Shoot an email to support@wpovernight.com and we’ll see what we can do. 🙂
Jeremiah
Welcome! Post back whether that works 🙂
Hey there!
If you create a custom menu widget and add it to that widget area you can assign the menu cart item to display there, no code required. Also, the pro version of the menu cart plugin (http://wordpress.org/plugins/woocommerce-menu-bar-cart/) includes a shortcode that you can add pretty much anywhere on your site.
Jeremiah
Forum: Plugins
In reply to: [WP Menu Cart] Display cart in a Widget areaYeah, it certainly is! You can do so by creating a custom menu widget and assigning the cart to the widget. Or, with the pro version we have a shortcode that you can add to a widget as well.
Check out this post for more info: http://wordpress.org/support/topic/need-to-add-card-shortcut-in-the-header?replies=5
Let me know if that solves your problem!
Jeremiah
Forum: Plugins
In reply to: [Menu Cart for WooCommerce] Chnage empty cart linkNo worries man! You were probably a victim of caching. For anyone else reading this, be sure you close all tabs and reopen. Enjoy the plugin!
Forum: Plugins
In reply to: [Menu Cart for WooCommerce] Chnage empty cart linkHi there! You can change that with a filter. Just add the following to your theme’s functions.php file and change the $empty_url variable to be whatever you need.
/** * Set page url when cart is empty */ add_filter('wpmenucart_emptyurl', 'add_wpmenucart_emptyurl', 1, 1); function add_wpmenucart_emptyurl ($empty_url) { $empty_url = 'https://yoursite.com/empty'; return $empty_url; }Also note that if you’re using this with WooCommerce, you may just need to update your shop page in the WooCommerce settings as our plugin uses the page specified in your settings.