mmtomm
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] customer logout while havin wp-login protectedThank you for the snippet (apache)
I don’t get the basic auth screen anymore, which is good, but now I get a 404 at
mydomain.com/wp-login.php?action=logout&redirect_to….
still not logged outI tried both, having the protection of wp-login.php before and after your script, in both cases I get the 404
Forum: Plugins
In reply to: [Contact Form 7] File upload not working on mobileHello again,
I can report, that this issue does not appear on an iphone (11pro) which I had the chance to test yesterday.
I tested it on safari and firefox and the upload form worked there.
So the CF7 upload form does not work on Android only (chrome, firefox)If any further testing reports are required feel free to ask.
Thank you
Forum: Plugins
In reply to: [Contact Form 7] File upload not working on mobileHello from Vienna,
I experience the exact same issue as @bumerangas does.
I tested on my site and on the site @bumerangas provided.Settings
Browser Firefox and desktop Win10, language setting is german on both. Mobile is a Pixel 3XL with Firefox app. Language setting of my website is german.
Desktop:
File upload button and text beside (keine Datei ausgew?hlt.) appears in german and it works.
Mobile:
File upload button and text beside (no file selected.) appears in english and it does not do anything when tapped.Forum: Plugins
In reply to: [Germanized for WooCommerce] Shortcode shipment date for invoiceThanks for the quick response!
Nearby: I’ve seen, that the shortcode
[document data="total"]
returns the price with the wrong decimal separator 10.00 instead of 10,00 like on the other positions!Forum: Plugins
In reply to: [Germanized for WooCommerce] EU-Tax regulations change July 2021Hi,
starting with 1st of July this will also apply to physical products when the anual turnover is above €10K to all EU countries other then the shop is based in!
MOSS will become EU-OSSGreat thank you!
But: I’m not a developer so I wood be happy if you could also get in more detail how this part would look like in code:
// Get the product from order item and output attributes after the // invoice item name
Thank you
TomForum: Plugins
In reply to: [Germanized for WooCommerce] woocommerce_shipping_zones table missingOk, thank you.
Just wondered, because in the woo admin the shipping zones are there and working….Forum: Plugins
In reply to: [WooCommerce] Adding HS Tariff Commodity Codes to ProductsHi,
you can create a global attribute in products > attributes add new one ‘hscode’ add one dummy code or all you have.
then edit the product > attributes select hscode from dropdown select one or more codes or select ‘add’ to add a new one which the also becomes global.Forum: Plugins
In reply to: [WooCommerce] Removing Sort by on WooCommerce Shop Pagerefinings from @yitwail for to remove from after loop as well:
add_action( 'before_woocommerce_init', function() { remove_action( 'woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 30 ); // when using storefront replace 30 with 10 remove_action( 'woocommerce_after_shop_loop', 'woocommerce_catalog_ordering', 30 ); // when using storefront replace 30 with 10 } );
Hi,
may I add some more little issues:
– the mouse over on the content-filter-tag button is a text cursor, this should become a pointer
– the block is not editable anymore when it is transformed into a reusable blockThanks for investigating
TomHi Imtiaz,
thank you!
I found out, that I have to use another clearfix to the element which is following right after the content filter block. I used a full width
<hr>
which also aligned itself to the right of the image of the last content filter entry. After I added the clearfix to the separator it is correctly placed in full width below the content filter block as expected.Thanks for your efforts
TomForum: Fixing WordPress
In reply to: Links no longer visible in Visual Editor since GutenbergI had the same issues and found this workaround:
Add this function to your child theme functions.php
function customAdminCSS() { $url = get_settings('siteurl'); $url = $url . '/wp-content/themes/YOUR-CHILD-THEME/wp-admin.css'; echo '<!-- custom admin css --> <link rel="stylesheet" type="text/css" href="' . $url . '" /> <!-- /end custom adming css -->'; } add_action('admin_head', 'customAdminCSS');
create the wp-admin.css in the path above and insert this css:
div[class^="block-editor"] .editor-styles-wrapper a { text-decoration: underline; }
This worked for me whithin my child theme of the storefront theme
Forum: Themes and Templates
In reply to: [Storefront] storefront handheld footer bar not showingI had some similar issue (dark grey buttons on dark background) which I solved with this css in my child theme style.css
.site-footer .storefront-handheld-footer-bar a:not(.button) { color: #777777; }
may be it helps as a workaround
Forum: Plugins
In reply to: [Reusable Content & Text Blocks by Loomisoft] Support for Gutenberg blocksTalking about Gutenberg: I would like to see the content blocks using the Gutenberg editor as well
Thank you, now it is filtering correctly.
Nearby: I did use the drag and drop interface which did build up the XPath I sent in my first post.