kimsf
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] New order emailYou could go in and edit \wp-content\plugins\woocommerce\includes\class-wc-email-new-order.php and start removing stuff (after backing up your website of course). I don’t know how to remove the tables and such from the emails which use a lot of space.
Forum: Plugins
In reply to: [WooCommerce] Woocommerce Admin end incredibly slow almost unusableDid it happen right after you did something such as installing or updating a plugin? Did you want to post the URL of the website?
Forum: Plugins
In reply to: [WooCommerce] Dynamically to cartThe best solution I think would be getting the plugin https://www.woothemes.com/products/cart-add-ons/. According to the documentation you can add an “AJAX” add-to-cart button to the products.
Forum: Plugins
In reply to: [WooCommerce] Not able to edit any woocommerce pagesI’m not sure if this would work but it’s worth a try.
First backup everything and then go into \wp-content\plugins and delete the Yith “yith-woocommerce-ajax-navigation” plugin. You can do so through SSH or FTP. After that see if you can get in.
Forum: Plugins
In reply to: [WooCommerce] Sort dropdown option is blocking my submenuAdd this to the end of your styles.css
.woocommerce-ordering { z-index: 1 !important; }
Forum: Plugins
In reply to: [WooCommerce] Remove tooltips on product imageI forgot to mention that window.onload can only be used once so if you want to remove BOTH title and alt tags you need to combine the code into one or just move the code to footer and insert this:
<script type="text/javascript"> var titled = document.querySelectorAll('[alt]'); var numTitled = titled.length; var i = 0; for (i=0; i<numTitled; i++){ titled[i].removeAttribute('alt'); } </script>
<script type="text/javascript"> var titled = document.querySelectorAll('[title]'); var numTitled = titled.length; var i = 0; for (i=0; i<numTitled; i++){ titled[i].removeAttribute('title'); } </script>
Forum: Plugins
In reply to: [WooCommerce] Fatal error message when woocommerce plugin activatedThis webpage is helpful: https://docs.woothemes.com/document/increasing-the-wordpress-memory-limit/
Forum: Plugins
In reply to: [WooCommerce] Remove tooltips on product imageYou can probably just use javascript to remove titles. (Add to header.php below “<body <?php body_class(); ?>>” to remove all titles from website). You could put a conditional if for titles you don’t want removed.
A PHP solution would be better obviously.To remove titles:
<script type="text/javascript"> window.onload = function(){ var titled = document.querySelectorAll('[title]'); var numTitled = titled.length; var i = 0; for (i=0; i<numTitled; i++){ titled[i].removeAttribute('title'); } }; </script>
To remove alt:
<script type="text/javascript"> window.onload = function(){ var titled = document.querySelectorAll('[alt]'); var numTitled = titled.length; var i = 0; for (i=0; i<numTitled; i++){ titled[i].removeAttribute('alt'); } }; </script>
Forum: Plugins
In reply to: [WooCommerce] No Cart Icon in mobile menuI just went on the website through an Iphone and Ipad and it appears that the cart icon does show if something is added on the cart (regardless of device used). There’s usually some sort of settings causing it to disappear when there is nothing in the cart.
Forum: Plugins
In reply to: [WooCommerce] Version 2.5.1 and User Registration password strength meterYou might be able to change this by going into /assets/js/frontend/password-strength-meter.js and changing this line of code.
EDIT again: Actually you’d change this one line of code.
from
if ( 3 === strength || 4 === strength ) { submit.removeAttr( 'disabled' ); } else if ( ! wrapper.hasClass( 'checkout' ) ) { submit.attr( 'disabled', 'disabled' ); }
to
if ( 3 === strength || 4 === strength || 2 === strength ) { submit.removeAttr( 'disabled' ); } else if ( ! wrapper.hasClass( 'checkout' ) ) { submit.attr( 'disabled', 'disabled' ); }
You should make a backup of your website and be able to get into your website through SSH or FTP incase something goes wrong. Since its a JS file I think you should be fine modifying it. Test it out and see if it fixes it. I’m not sure if this would work. I haven’t reviewed WC 2.5.1 files yet. Also I’m not sure how long a password needs to be in order to not be classified as “short”. If you want short and maybe nullstring and mismatched passwords you’d add “|| 5 === strength” to that code.
As for WC not telling people the passwords are too weak it could be bad javascript code or just something that needs to be fixed in WC.
Forum: Plugins
In reply to: [WooCommerce] Woocommerce language – Stays on English -> Need DanishI think it can be changed through WordPress itself. WooCommerce doesn’t handle it.
Try doing this:
1. Go to “Settings” (not the WooCommerce settings but WP settings)
2. Go to “General”
3. At the bottom of the page there should be an option for site language. Select the language you want.Forum: Plugins
In reply to: [WooCommerce] home page designI’m not too sure of what exactly you’re looking for. What do you mean by sliding product option? Did you want to replace the dropbox box with a box having pictures and has a horizontal or vertical scroll bar?
Forum: Plugins
In reply to: [WooCommerce] Unknown theme conflict breaking checkout functionThe “shop” page is down. It would probably help if it wasn’t.
Since it seems that there’s a problem with the template. Couldn’t a comparison be done between the Storefront template and the template being used for the files that have the “add to cart” button?
Also PHP should be looked at for the modified files such as content-single-product.php to see if that could have any impact. Why were they changed? Was it just for rearranging things or a lot more?
Forum: Plugins
In reply to: [WooCommerce] No Cart Icon in mobile menuIt’s likely that the CSS for a specific resolution having a setting that causes the cart to disappear. Which theme are you using and are you using the cart widget that came with WooCommerce? Also any website?
Forum: Plugins
In reply to: [Striper - Stripe Integration for WooCommerce] Use of deprecated PHPThe plugin currently works fine for WP 4.4.1 and WC 2.5.1. I think that you’re using an older version of Striper which I’ve read had this problem.