midihead
Forum Replies Created
-
Forum: Plugins
In reply to: [Simple Membership] Redirect to Specific URL After Logout?Disregard. I just found the answer on your site here: https://simple-membership-plugin.com/simple-membership-miscellaneous-php-tweaks/ under the section called “Create an After Logout Redirection”.
Thanks!
Forum: Plugins
In reply to: [WooCommerce POS - Point of Sale] Tax CalculationI am looking at the demo now. I think I am seeing where it may be calculating tax (although I don’t see the word Tax anywhere in the totals). I see two lines, one that says US with a cost beside it and another that says US AL with a cost next to it. Is this supposed to be the tax calculations? If so, I’m confused by the US and US AL lines.
I also have installed the free version and have a customer selected that should pay sales tax. Even with the products added for this customer, tax is not being added to the total order amount even though I have the product set as Taxable (Standard). Note that I am using the WooTax plugin which pulls the tax rates from TaxCloud.
Forum: Plugins
In reply to: [WooCommerce] /* $18.50 /*]]>*/Great. Thanks!
Forum: Plugins
In reply to: [WooCommerce] /* $18.50 /*]]>*/Is this fix going to be part of the next WooCommerce update? Thank you.
Understood. Thank you for the fast reply. ??
Forum: Plugins
In reply to: [W3 Total Cache] Page cache not cleared on HTTPS urls on editingAlrighty then. So here’s the simple answer. I just did this and now my cache is cleared when changes are saved in the WP admin dashboard:
1. Open
wp-content/plugins/w3-total-cache/lib/W3/PgCache.php
2. Find this code:
function _get_page_key($mobile_group = '', $referrer_group = '',<br /> $encryption = '', $compression = '', $content_type = '', $request_uri = '') {</p> <p> if ($request_uri)<br /> $key = substr($request_uri, strtolower(substr($request_uri, 0, 8)) == 'https://' ? 8: 7);<br /> else<br /> $key = $this->_request_host . $this->_request_uri;
3. Change this line:
$key = substr($request_uri, strtolower(substr($request_uri, 0, 8)) == 'https' ? 8: 7);
to:
$key = substr($request_uri, strtolower(substr($request_uri, 0, 8)) == 'https://' ? 8: 7);
and save.
4. In W3 Total Cache Page Cache settings, make sure that Cache SSL (https) requests is checked.
Thanks to kevcampb and Gravitate for leading me to this fix. I’m hoping that the developer will correct this is the next version.
Forum: Plugins
In reply to: [W3 Total Cache] Page cache not cleared on HTTPS urls on editingI am experiencing the same problem with W3 Total Cache and HTTPS URLs. My whole site is HTPS.
Gravitate, please forgive my lack of knowledge in asking this but does the above patch code just get added to the PgCache.php file or is there specific code in the file that needs to be updated with this?
Also, where do i find the “settings” you mentioned to set page.cache.ssl = true?
Thank you very much.
That technically works, thanks. One thing that may cause some customers confusion is that the normal shipping rates still show in the shipping calculator (but aren’t calculated) if the item with the discount is the only item in the cart. Maybe it’s not a huge deal though.
Forum: Plugins
In reply to: [footnotes] Plugin Conflicts with PizazzWP Slider PlusThe developer of PizazzWP Slider Plus has corrected the issue as of version 1.3.14. The issue was due to the author using a newer Google CDN version of jQuery to make SliderPlus run a little faster. He said that doing this caused issues for other plugins that weren’t up to that version. I just updated the SliderPlus plugin and all is well now.
Also, I think the above mentioned Firefox issue was recently resolved with a Footnotes update.
Thanks!
Forum: Plugins
In reply to: [footnotes] Plugin Conflicts with PizazzWP Slider PlusThe PizazzWP Slider Plus plugin is only available as a paid plugin.
I have reached out to the developer of the plugin and have explained the conflict to them so hopefully they should be able to either resolve the conflict from their end or at least explain how to correct the issue within the Footnotes code. I will keep you posted. Thank you.
For those who are using the Headway theme as I am, I’m told by Headway Support that the issue is an incompatibility between Headway and the WooCommerce Product Categories Widget when using drop downs to display the categories. The drop down worked perfectly under Headway 3.7.8 and WooCommerce 2.1 but stopped working after upgrading to Headway 3.7.10 and WooCommerce 2.2.
I was provided this code which resolves the issue. The code should be placed in the Footer Scripts section under Options>Scripts/Analytics in Headway:
<script type="text/javascript"> jQuery(function($) { jQuery('.dropdown_product_cat').change(function(){ if(jQuery(this).val() != '') { location.href = '?product_cat=' + jQuery(this).val(); } }); }); </script>
The support team is looking into why the issue is happening so that this code possibly doesn’t have to be manually entered for the drop down to work in the future.
Forum: Plugins
In reply to: [footnotes] Issue with Footnotes that Wrap to Multiple LinesYou’re welcome. I just left a rating for your awesome plugin. ??
Forum: Plugins
In reply to: [footnotes] Space After Footnote Reference NumberI’m marking this as resolved since it wasn’t actually a problem with the plugin but was just a misunderstanding on where the footnote numbers should appear in relation to the end of a sentence.
Forum: Plugins
In reply to: [footnotes] Issue with Footnotes that Wrap to Multiple LinesYes, it is fixed and looks great now. Thanks!!
It appears that this javascript is missing from the page on the WC 2.2.4 install of my site:
<script type="text/javascript">/* <![CDATA[ */ var product_cat_dropdown = document.getElementById("dropdown_product_cat"); function onProductCatChange() { if ( product_cat_dropdown.options[product_cat_dropdown.selectedIndex].value !=='' ) { location.href = "https://www.examplesite.com/?product_cat="+product_cat_dropdown.options[product_cat_dropdown.selectedIndex].value; } } product_cat_dropdown.onchange = onProductCatChange; /* ]]> */</script>
This code is present on the WC 2.1 install though. Any ideas as to why this is missing? I’m guessing that this has everything to do with the issue I’m having.