iadzemovic
Forum Replies Created
-
same issue for me as well!!!
Forum: Plugins
In reply to: [WooCommerce] Woocommerce Jetbpack taxes not workingThank you for a very extensive response. I do see things clearer now.
I had to recache everything and try once again, and it appears to be working, for the USA part. Can you advise me how I could include Europe in proper sales tax etc?
Forum: Plugins
In reply to: [WooCommerce] Woocommerce Jetbpack taxes not workingSee cart: https://www.imagebam.com/view/MEJLO66
Settings: https://www.imagebam.com/view/MEJLO6E
Currently only selling within USA.
Forum: Fixing WordPress
In reply to: comment replies duplicates original commentIt comes back fine when I run that plugin. It seems to be theme-related. When I switch theme, the replies appear.
Can I post theme code for comments.php or else?
Forum: Fixing WordPress
In reply to: comment replies duplicates original commentWhere do I change this path? Which database table needs to get adjusted? Even when I try to make a new grid, no content comes up.
I copied the files over via FTP and exported/imported the full database over.
URL is: celebstyle.org
It seems that that above demonstrates all steps in the same interface – I’m looking for a more separate interface experience. Each color for me has its own product page.
Ok, sure – here is what my current product page looks like. Has very little related info:
https://www.imagebam.com/view/ME59KYP
What I’m looking to implement is: Same exact item – but in different colors, such as:
https://www.imagebam.com/view/ME59KYN
The item name and URL is the exact same except for what’s in the () because that stands for color. For example the color Nero for this shoe is the all black heel.
Forum: Plugins
In reply to: [WooCommerce] Collapse menu (with javascript) is not working. Why?Thank you. It’s a pain in the &&. I had to switch over to
<details><summary>
to get the functionality up.For some reason all the JS gets messed up and where I’m supposed to see changes, there is nothing – then something else bounces off. So… But thank you for the help!
By the way, this comes up at the top in admin mode when I go to my widgets.
Forum: Plugins
In reply to: [WooCommerce] Collapse menu (with javascript) is not working. Why?I don’t think it did anything. Link: https://kristindaily.org/2011/11/20/instagram-story-151/
So the collapsable menu i have the same divs and all across my website. Is this the correct way to do it?
Forum: Plugins
In reply to: [WooCommerce] Collapse menu (with javascript) is not working. Why?Ah. So then, inside my header.php – it looks like:
<script>jQuery( document ).ready(function() { var coll = document.getElementsByClassName("collapsible"); var i; for (i = 0; i < coll.length; i++) { coll[i].addEventListener("click", function() { this.classList.toggle("active"); var content = this.nextElementSibling; if (content.style.maxHeight){ content.style.maxHeight = null; } else { content.style.maxHeight = content.scrollHeight + "px"; } }); } }); </script>
Forum: Plugins
In reply to: [WooCommerce] Collapse menu (with javascript) is not working. Why?I need more instructions where this is!