mkampitsch
Forum Replies Created
-
Forum: Reviews
In reply to: [WooCommerce Sold Individually for Variations] jQuery ErrorYes the error goes away when changing it to jQuery ??
Thanks!
Forum: Plugins
In reply to: [WooCommerce Multilingual & Multicurrency with WPML] admin.css on frontendHi George,
thanks. Looks like you fixed it in version 4.1 as described in another support thread.
Sorry!
Forum: Plugins
In reply to: [WooCommerce] Price including tax doesn’t play nice with EU VAT Number PluginOk, I think we got it:
The problem lies within
abstract-wc-product.php
row 869get_price_including_tax()
.WooCommerce checks if
is_vat_exempt()
but doesn’t check ifwoocommerce_adjust_non_base_location_prices
is set to false.Therefore it calculates the price of the product the wrong way.
We added this code
if ( $tax_rates !== $base_tax_rates && ! apply_filters( 'woocommerce_adjust_non_base_location_prices', true ) ) { $base_tax_amount = array_sum( WC_Tax::calc_tax( $price * $qty, $tax_rates, true ) ); }
and now it works as expected.
Forum: Plugins
In reply to: [WP Editor] Can’t modify subfolders of theme's assets folderEverything works as expected! Thanks
Btw I tried setting the
Label to show to the user
, but this changes nothing.Forum: Plugins
In reply to: [Custom Product Tabs for WooCommerce] Order/Customer CSV Export not workingHi,
thanks for the fast answer. Is there any way I can provide you the plugin and you can check the compability?
Thanks,
MatthiasForum: Fixing WordPress
In reply to: Custom Mega MenuYeah makes sense. What I’m doing now comes with less code. I don’t use another column div. I just take `.sub-menu > li’ to float it.
Forum: Fixing WordPress
In reply to: Custom Mega MenuBasically you can just add one submenu to each navigation item. What I mean with “equal submenus” is to group items of those submenus to get multiple parallel submenus for one navigation item.
I want the final output to look like in my first post.
What I achieved right now is this, which is the most final it’ll get I assume
<nav id="nav" role="navigation"> <ul id="nav" class="nav"> <li><a href="#">level one</a></li> <li><a href="#">level one</a> <div class="drop-down"> <ul class="sub-menu"> <li><a>level two</a> <ul> <li><a href="#">level three</a></li> <li><a href="#">level three</a></li> </ul> </li> <li><a href="#">level two</a> <ul class="sub-menu-level-2"> <li><a href="#">level three</a></li> </ul> </li> <li><a href="#">level two</a> <ul class="sub-menu-level-2"> <li><a href="#">level three</a></li> </ul> </li> </ul> </div> </li> <li><a href="#">level one</a></li> </ul> </nav>
My menu structur looks like this
because I assume without any plugins it would not be possible to group the submenus to look like thisForum: Plugins
In reply to: More Types errorAs well I get this error in my console when opening the custom post type:
Uncaught TypeError: Cannot read property ‘advanced’ of undefined
(anonymous function)post-new.php:581
f.Callbacks.nload-scripts.php:2
f.Callbacks.o.fireWithload-scripts.php:2
e.extend.readyload-scripts.php:2
c.addEventListener.Bload-scripts.php:2So this looks like an error with the built in TinyMCE… Hmm can I disable this?
Forum: Plugins
In reply to: Upload Insert with More Fields PluginMore Fields: 2.1
Wordpress: 3.3.1Forum: Fixing WordPress
In reply to: Generate custom menu dropdown with wp_nav_menuOk cool. I’ll will try that!
But look: three of my menu items are category-archives. So when I’m on an article page, how do I assign
selected="selected"
to the category item of my select list?Thank you!
Forum: Fixing WordPress
In reply to: Permalink category not default oneI now added a new category and leave the first, default one untouched. So I save my new posts to the desired category and the default one never comes in the game ??
Now it works, there was something wrong with the scripts loading ??
Thank you!
Hey Jerry,
CW doesn’t work with 3.3 apparently. Do you know when you’ll have the fix?
Thank you!!