taylorbennett
Forum Replies Created
-
Not the most elegant solution, but we encountered a similar issue on a project.
Could not find any help relating to the bug, but managed to find a “dirty” solution.
Found that you can add a dummy html form tag, which will be deleted on the first post in your list, but your second form tag should remain 🙂
For all the other posts, it will have both form tags, but it shouldn’t matter as the first one isn’t doing anything.
(see below)
case 'delete_aanmeldingen' : echo ' <!-- Sacrificial form tag --> <form></form> <form method="post"> <input type="submit" name="delete-'. $post_id .'" value="delete"/> </form> '; }Hope it helps if you didn’t solve this already!
- This reply was modified 4 years, 4 months ago by taylorbennett. Reason: typos
A reply for anybody who comes across this in the future.
WP All Import:
When an import runs via cron jobs (or our scheduling service, for that matter), it’s technically run by an anonymous user, whereas manual imports are run by a logged-in administrator. So, most likely they’re (Tiered Price Table for WooCommerce v3.1.1) using code that expects a logged-in user and thus failing on cron imports.
In this case, I’d suggest contacting the developer (https://woocommerce.com/vendor/u2code-kolya-lukin/) as we can’t troubleshoot third-party integrations.
- This reply was modified 4 years, 7 months ago by taylorbennett. Reason: Clarification for who "they're" is
- This reply was modified 4 years, 7 months ago by taylorbennett. Reason: Add in where to go in the hope of solving the issue