Jeremiah
Forum Replies Created
-
Forum: Plugins
In reply to: [404 Silent Salesman] Broken with Woocommerce 2.0.13Hi bonacipher. Can you create a separate forum topic for this? I’d be happy to help get this figured out. 🙂
Forum: Plugins
In reply to: [Menu Cart for WooCommerce] Menu timing out?Looks like you got this fixed, so I’m marking as resolved. Enjoy the plugin!
Forum: Plugins
In reply to: [Schedulicity - Easy Online Scheduling] Pop from buttonsHi Eric,
Thanks for the feedback, and I apologize for the late response on this! I’m planning on updating this plugin, so we’ll see what can be done. Let me know if you have any other feedback!
Forum: Plugins
In reply to: [Menu Cart for WooCommerce] Thumbnails category productsNo problem, it happens! It’s a little confusing because WooCommerce is in the name of this plugin as well. Hope you find what you need!
Jeremiah
Forum: Plugins
In reply to: [Menu Cart for WooCommerce] Thumbnails category productsHi Jidy,
We ARE NOT WooCommerce. You can find their support team at the links I listed above. We’re an unaffiliated 3rd party that has created an extension for WooCommerce. WooCommerce is run by WooThemes and you’ll need to reach out to their support team directly if you want the best assistance. As well, you may be able to find some of your answers in their documentation: http://docs.woothemes.com/documentation/plugins/woocommerce/
Forum: Plugins
In reply to: [WP Menu Cart] cart displays differently in Safari and FF/ChromeYou’re welcome! Let me know if you have any other questions. 🙂
Forum: Plugins
In reply to: [Menu Cart for WooCommerce] Thumbnails category productsHi there!
Looks like this question was intended for the WooCommerce team. This plugin is not affiliated with WooCommerce, and you’ll want to reach out to their support directly by either visiting their wordpress.org listing here: http://wordpress.org/support/plugin/woocommerce or going to their website and submitting a support request here: http://www.woothemes.com/support/
Hope that helps!
Forum: Plugins
In reply to: [Menu Cart for WooCommerce] Menu timing out?Hi Nick,
Looks like your site isn’t https, but you’re directing users to https. Just change the link in the function above to be http://shop.jameslegal.co.uk/cart/
Forum: Plugins
In reply to: [Menu Cart for WooCommerce] Menu Cart Link ProblemHi Nick,
Looks like your site isn’t https, but you’re directing users to https. Just change the link in the function above to be http://shop.jameslegal.co.uk/cart/
Forum: Plugins
In reply to: [WP Menu Cart] cart displays differently in Safari and FF/ChromeHey there!
You just need some simple css adjustments as your theme’s styles are overriding the menu cart styles. Ex:
a.wpmenucart-contents span.cartcontents {
display: inline-block !important;
}
a.wpmenucart-contents span.amount {
display: inline-block !important;
}As far as the width goes, that depends on your theme, not the menu cart plugin. What’s happening is your theme is designed to implement the responsive settings at a specific page width. If you want to insure everything stays on the same line, you’ll need to reduce the size of the menu items, remove a menu item, or modify your theme’s css to make it implement the responsive css a wider width.
Hope that helps!
Jeremiah
Forum: Plugins
In reply to: [WP Menu Cart] Start Shopping link re-directGlad to hear it! Sorry for the confusion on that. Enjoy. 🙂
Forum: Reviews
In reply to: [Menu Cart for WooCommerce] Wonderfull!We have Swedish! Visit our latest version here and let me know if you have any issues: http://wordpress.org/plugins/wp-menu-cart/
Forum: Plugins
In reply to: [WP Menu Cart] Start Shopping link re-directHey there!
EDD doesn’t have a specific products page designated, so we’ve made it really easy to set your own via a filter. Add the following code to your theme’s function.php and modify the url to be the url you want to send users to:
/** * 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; }Forum: Plugins
In reply to: [Menu Cart for WooCommerce] Error after update – Woocommerce 2.0.17No problem! Is all working well for you?
Forum: Plugins
In reply to: [Menu Cart for WooCommerce] Error after update – Woocommerce 2.0.17It’s not actually an error, it’s just not detecting that WooCommerce is activated. There are two possible reasons. Either way the plugin will work fine (assuming WooCommerce is active). Just navigate to settings -> WP Menu Cart Setup and set it up on the options page.
Here are the reasons you might get that message:
1. It’s part of a multisite install.
2. You don’t actually have WooCommerce enabled
3. Your WooCommerce install doesn’t look like the following: woocommerce/woocommerce.php.Again, it’ll work fine if you have everything enabled properly. It’s just a message we setup because WordPress doesn’t detect that you have WooCommerce installed.