newshop
Forum Replies Created
-
Ok danke für die Info. Dann werd ichs wohl doch so lösen dass ich die Germanized Validierung für die Hausnr. wieder ausschalte und ein separates Hausnr.-Feld als Pflichtfeld hinzufüge. Verkaufe nur innerhalb der EU und da gibts ja überall eine Hausnr. so weit ich weiß…
Danke für die Info. Heute war plötzlich alles wie gewünscht, obwohl ich auch gestern bestimmt 20 Mal den Cache geleert habe. Merkwürdig, aber hat sich scheinbar doch von selbst geklärt 🙂
Hallo @aweissinpsyde
Also ich habe gerade folgende Tests gemacht:
1. Alle Plugins außer Woocommerce deaktiviert > keine Fehlermeldung
2. PayPal Plus aktiviert > Fehlermeldung
3. PayPal Plus deaktiviert und PayPal Standard aktiviert > keine FehlermeldungUnd jetzt? Es scheint ja definitiv irgendetwas mit dem Plugin zu tun zu haben…
Forum: Plugins
In reply to: [Custom Post Type UI] Use featured image url as post urlYou’re genius!!! Works like a charm! Thank you so much!!
Forum: Plugins
In reply to: [Custom Post Type UI] Use featured image url as post urlThank you very much for your fast reply!
Your code works, but I think my question was a bit confusing: I did not mean the attachment page but the image url itsef. So instead of linking to “mywebsite.com/?attachment_id=10356” it need to have a link like “mywebsite.com/redshirt.jpg” while redshirt.jpg is the featured image. Is this possible?
Thank you in advance,
kind regardsForum: Themes and Templates
In reply to: [Astra] How to Remove / Hide OUT OF STOCK label@bsfherman Thanks, but I switched to another theme in the meantime.
Forum: Plugins
In reply to: [Germanized for WooCommerce] Lieferzeit auf Checkoutseiten verschiebenHi,
vielen Dank für die schnelle Antwort, aber das hatte ich ja bereits ohne Erfolg ausprobiert. Ich habs jetzt so gelöst, dass ich das cart-template ins childtheme kopiert hab und dort die Meta-Ausgabe manuell hinter den Produktnamen geschoben hab. Wollte es gerne eleganter lösen, aber glaube das ist leider nicht möglich…Forum: Themes and Templates
In reply to: [Neve] Change “out of stock” badge textGot it:
add_action( 'init', 'replace_nv_out_of_stock_text'); function replace_nv_out_of_stock_text() { add_filter( 'nv_out_of_stock_text', function ($text) { return __('Test', 'textdomain'); } ); }Thank you so much for your support!
Forum: Themes and Templates
In reply to: [Neve] Change “out of stock” badge textGreat, thank you again!! But how do I have to modify your code in order to make my new text translatable?
Forum: Themes and Templates
In reply to: [Neve] Remove breadcrumbsPerfect, thank you so much!!
Its a pity that such a great theme has such a bad support from the theme authors. But fortunately, there are such people like you 🙂 Thanks again and have a nice day!Forum: Themes and Templates
In reply to: [Neve] Remove woocommerce order by and results countHi @mateithemeisle
thank you for your answer, but no, I dont use that plugin. Even with all plugins deactivated (exept woocommerce) the problem persists.Forum: Themes and Templates
In reply to: [Neve] Remove breadcrumbsHi @plantprogrammer,
that works like a charm, thank you so much!
Do you also know how to remove the order by dropdown and the results count from shop page? The default woocommerce hooks seem to be overwritten by Neve theme too 🙁
Posted this question already here a few days ago but got no helpful response yet:
https://wordpress.org/support/topic/remove-woocommerce-order-by-and-results-count/Thank you and have a great weekend!
Forum: Themes and Templates
In reply to: [Neve] Remove related productsOk, my fault, the code mentioned above works 🙂 Sorry for confusing 🙂
Forum: Themes and Templates
In reply to: [Neve] Remove woocommerce order by and results countHi,
thanks but I asked here because I dont want to hide it using css, but to really remove it. Could you please tell me which filter to use instead?
Thank you and have a nice day too.Forum: Themes and Templates
In reply to: [Astra] How to Remove / Hide OUT OF STOCK labelLooking for the same, but I would like to do it via my child’s functions instead of css. Found this code snippet which works well on Storefront theme, but not on Astra:
function my_wc_hide_in_stock_message( $html, $text, $product ) { $availability = $product->get_availability(); if ( isset( $availability['class'] ) && 'in-stock' === $availability['class'] ) { return ''; } return $html; } add_filter( 'woocommerce_stock_html', 'my_wc_hide_in_stock_message', 10, 3 );Could you please tell me how to modify the code in order to work with Astra?
Thank you.