1839lab
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Template out of date.Okay, thanks.
Yes, my theme is up to date. I’ll ask the theme developers for clarification then.Forum: Plugins
In reply to: [WooCommerce] Strange writingOk, thanks…
Forum: Plugins
In reply to: [WooCommerce] Strange writingHi @beachhouse10 ,
This is really helpful.My cart isn’t set up for multiple-package shipments, so I guess I don’t need it, right? I simply changed the translation to: Shipping method.
Forum: Plugins
In reply to: [WooCommerce] Strange writingI did it!
The string was in the WooCommerce Plugin woocommerce-it_IT.po (system)
Thanks everyone for the support, guys!
Forum: Plugins
In reply to: [WooCommerce] Strange writingI’ve used “Poedit” in the past to edit translation .mo files, but I just can’t find this string.
Forum: Plugins
In reply to: [WooCommerce] Strange writingMy theme is Woodmart.
I have Loco Translate installed, but don’t know how search “Spedizione”.Can you tell me where to search for the string “spedizione” with Loco Translate? I can’t figure it out.
- This reply was modified 3 months, 3 weeks ago by 1839lab.
Forum: Plugins
In reply to: [WooCommerce] Strange writingI reinstalled WooCommerce cleanly, but nothing has changed. I was wondering, instead of deleting that text, is it possible to at least modify the translations? I’ve tried this solution in the past, but I can’t seem to find the file it’s in this time.
Forum: Plugins
In reply to: [WooCommerce] Strange writingI’ve always wanted to update those outdated templates, but I’ve never figured out exactly how to do it, even after reading the guide. I’m afraid I’ll cause further damage. Could you please explain more clearly how to do it?
In the meantime I’ll check if the problem depends on the other 3 pugins.Edit: I deactivated the 3 plugins, but the “Spedizione 1” writing is still there, so I don’t think it depends on that.
- This reply was modified 3 months, 3 weeks ago by 1839lab.
Forum: Plugins
In reply to: [WooCommerce] Strange writingThis is the report:
https://pastebin.com/Q9EzakM6This is the error message:
But as I was saying, everything is working normally now. The only thing is that “Spedizione 1” message appeared and I was wondering if it could be deleted or changed.
Forum: Plugins
In reply to: [New User Approve] New user approve bubbleYes, for me it’s solved, as my goal was to hide the notification.
Forum: Plugins
In reply to: [New User Approve] New user approve bubbleNow the bubble with the notification is no longer shown. Obviously it is never shown again, not even when there is a user to approve. But the number was wrong anyway. Let’s say it’s more of a hiding the problem than solving it, but for me it’s fine, since the notifications arrive via email.
See, no bubble next “USERS”.
Forum: Plugins
In reply to: [New User Approve] New user approve bubbleIf it helps, the problem occurs when you delete a user directly before approving or blocking them via the plugin. Then the notification counter goes crazy.
Forum: Plugins
In reply to: [New User Approve] New user approve bubbleGreat, that annoying notification is gone. Thanks for the support.
Forum: Plugins
In reply to: [WP Activity Log] Activity Log Not WorkingIt works! Thanks.
Forum: Plugins
In reply to: [New User Approve] New user approve bubbleMaybe the problem is something else, and it is caused by the Plugin.
I wrote this code and basically what it does is make the circle with (0) written next to “USERS” appear.
add_action( 'admin_menu', function() {
global $menu;
$count = 0;
$menu_item = wp_list_filter(
$menu,
array( 2 => 'users.php' )
);
if ( ! empty( $menu_item ) ) {
$menu_item_position = key( $menu_item );
$menu[ $menu_item_position ][0] .= ' <span class="awaiting-mod">' . $count . '</span>';
}
});In addition to this bubble, there is now another one that disappears only if I deactivate your plugin. This is the one I want to delete, because the counter is wrong.
There is a screenshot here, so you understand what i mean. It also has a different theme. The one generated by me is blue, the one generated by the plugin is white.
- This reply was modified 1 year, 2 months ago by 1839lab.