gmwp1111
Forum Replies Created
-
Could you please tell, how to do it? Thanks!
At least an answer would be nice… Thanks!
Is there any update on a possibility to hide the “DHL Request pickup” menu entry in the bulk actions?
Forum: Plugins
In reply to: [Ultimate FAQ Accordion Plugin] FAQs shown twice after searchSolved by the support: The reason was that I used the search shortcode and the regular faq short code simultaneously on the same page. Instead the show_on_load switch is to be used:
[ultimate-faq-search show_on_load='Yes']
Thanks for the quick help!
Forum: Plugins
In reply to: [Ultimate FAQ Accordion Plugin] FAQs shown twice after searchHi,
I have sent you the needed information via email. Thanks!
Forum: Plugins
In reply to: [Ultimate FAQ Accordion Plugin] Toggle Symbol: Font Size setting is ignoredWas able to figure it out:
.ewd-ufaq-post-margin-symbol{ font-size: 16px !important; }
does the job.
Forum: Plugins
In reply to: [DHL Shipping Germany for WooCommerce] download button not workingIf you rename the downloaded html file to pdf (change the .html extension to .pdf): can you open it? If yes, then I still think it’s a caching problem. Did you try to deactivate your caching plugin completely and to try to generate and download a label then?
Forum: Plugins
In reply to: [DHL Shipping Germany for WooCommerce] download button not workingI had this problem too. The root cause was my caching plugin (WP Rocket).
I have excluded the following folders in the WP Rocket settings to be not cached anymore:/dhl_download_label/(.*)
/woocommerce_dhl_label/(.*)
/bulk/(.*)This solved my problem.
I was able to remove the item by commenting out the line
'pr_dhl_request_pickup' => __( 'DHL Request Pickup', 'dhl-for-woocommerce' )
in the get_bulk_actions() function in class-pr-dhl-wc-order-paket.phpIs there a better possibility via a PHP snippet since my solution will be overwritten by a plugin update?
I have tried the code below but that didn’t work:
add_filter( 'bulk_actions-edit-shop_order', 'remove_a_bulk_order_action', 20, 1 ); function remove_a_bulk_order_action( $actions ) { unset($actions['pr_dhl_request_pickup']); return $actions; }
- This reply was modified 3 years, 5 months ago by gmwp1111.
Forum: Plugins
In reply to: [DHL Shipping Germany for WooCommerce] Compatibility with WooCommerceWhy don’t you update your DHL shipping plugin to the newest version 2.5.10?
I’m running WP 5.7.2 + WC 5.5.2 and DHL 2.5.10 without any problems here.Forum: Plugins
In reply to: [WooCommerce] Mysql load to 100% after update tot 5.5.1Had the same issue from version 4.9 on. Switching my database from MyISAM to InnoDB helped, see here: https://www.ads-software.com/support/topic/editing-products-with-version-4-9-leads-to-server-lock-due-to-high-db-load/
DHL have changed the tracking URL 9 days ago. All that has to be done is to change
'https://nolp.dhl.de/nextt-online-public/report_popup.jsp?idc='
to
'https://www.dhl.de/de/privatkunden/dhl-sendungsverfolgung.html?piececode='
for the German version of the DHL tracking siteor to
'https://www.dhl.de/en/privatkunden/dhl-sendungsverfolgung.html?piececode='
for the English versionin pr-dhl-woocommerce.php
Just did that on my site and it works (only for new generated labels, not in old orders though since the old link is saved there).
It’s a pity it takes so long to get an update here.
- This reply was modified 3 years, 8 months ago by gmwp1111.
Just in case someone has the same or similar issues: I was able to solve the problem by switching my database from my MyISAM to InnoDB.
I got a reply from MailPoet support via mail: they confirmed the bug in version 3.60.6 and are going to release a fix on Tuesday. Until then they suggest to use an older version.
Wow, that was fast and solved the issue. Great! Thanks a lot!