micwp123
Forum Replies Created
-
Forum: Plugins
In reply to: [Germanized for WooCommerce] Fehler in der Bestellübersicht – functions.phpHallo,
ich habe das gleiche Problem auf der Kasseseite. Bei mir ist der Haken gesetzt.
Irgendeine andere L?sung?
mic
Forum: Plugins
In reply to: [WooCommerce Products Per Page] Dropdown placement in Virtue themeHi,
I had to clear the WP cache and now it’s gone.
mic
Forum: Plugins
In reply to: [WooCommerce Products Per Page] deactivationHi,
I had forgotten to clear the WordPress cache. Now it has disappeared.
Thanks
micForum: Plugins
In reply to: [WooCommerce Products Per Page] Dropdown placement in Virtue themeHi,
how did you get it to work?
I’m using the virtue theme too, but it doen’t work at all. It only shows “all products” for selecting. I put -1 as standard, but shown are only some of my products, as you can see here: https://bild-im-rahmen.com/.
I deactivated and even uninstalled the plugin, but the dropdown is still on my site.mic
Forum: Themes and Templates
In reply to: [Virtue] category and subcategoryForum: Plugins
In reply to: [Germanized for WooCommerce] Falsche Preisanzeige im ShopIch habe die L?sung gefunden.
Zum Testen hatte ich eine Auslandsadresse eingegeben, im Backend aber nur einen Steuersatz für DE angegeben. Dadurch entfielen die Steuern für das Ausland.Forum: Plugins
In reply to: [WooCommerce] lost password link doesn't workBoth settings didn’t work for me.
Forum: Plugins
In reply to: [WooCommerce] lost password link doesn't workFor me I found a solution.
In WooCommerce –> Settings –> general in the third field don’t use “geolocate”. When I switch to “no adress” the correct link in the e-mail will be created.
Don’t know why, but it works.Forum: Plugins
In reply to: [Germanized for WooCommerce] Falsche Preisanzeige im ShopZUdem ist mir aufgefallen, dass bei den Produkten der Text “inkl. MwSt.” verschwunden ist.
Das ist mir wirklich ein R?tsel.Forum: Plugins
In reply to: [Germanized for WooCommerce] Falsche Preisanzeige im ShopHi,
ich habe die GeoLocation-Funktion jetzt mal deaktiviert, aber am Resultat hat sich leider nicht ge?ndert. Es werden immer noch die Nettopreise angezeigt.
Grü?e
Forum: Plugins
In reply to: [Germanized for WooCommerce] Problem mit E-Mail-AnhangDanke für die schnelle Antwort!
Pl?tzlich funtioniert es auch. Trotzdem noch eine Frage:
Kann ich auch eine PDF-Datei als Anhang einbinden? Ich habe es gerade versucht, aber es wird nur der Link eingebunden.Forum: Themes and Templates
In reply to: [Virtue] mobile viewThat works fine, thank you!
Forum: Themes and Templates
In reply to: [Virtue] Theme Settings Seems BroakenAfter updating a few minutes ago my theme settings have disappeard too.
Forum: Themes and Templates
In reply to: [Virtue] topbar and woocommerce cartFor 1 it works – thank you.
For 2 I used this code:
add_filter('wp_nav_menu_items', 'add_search_form_to_menu', 10, 2); function add_search_form_to_menu($items, $args) { // If this isn't the main navbar menu, do nothing if( !($args->theme_location == 'primary_navigation') ) return $items; // On main menu: put styling around search and append it to the menu items return $items . '<li class="my-nav-menu-search">' . get_search_form(false) . '</li>'; }
Forum: Themes and Templates
In reply to: [Virtue] category countThank you very much!
Your code results in placing the count in front of the category name. I want it the other way round.
To achieve this I did it this way:.sidebar .product-categories li span.count { position: absolute; left: 100px; top: 5px; } .sidebar .product-categories li { position: relative; padding-left: 0px; }