Scheduled emails to include only posts and calendar events for the upcoming week
Ended up going with Mailpoet (https://www.mailpoet.com/). It does exactly what I needed it too.
Ended up going with Mailpoet (https://www.mailpoet.com/). It does exactly what I needed it too.
You can use updraft backup it’s free plugin. It will make backup before updating. Problem is if your auto update didn’t copy all wp-core files (this happen) and you don’t have access to home and ssh you are not able to fix that. Even with backup.
Checkboxes to automatically create pages when I activate a theme
I believe you’re looking for VaultPress from Automattic – here’s their guide to one-click restore (con: it’s not a free plugin).
allow multisite in the installation process
Why not. The API of WordPress has the function wp_delete_post to delete a post. If the trash is active, on default true, then this function moves the post to the trash. You need to add a logic after publishing a new post to delete the old one. To firte your function you should use the … Read more
Try to use this plugin https://wordpress.org/plugins/bulk-edit-categories-tags/ Best regards
Add this code snippet in functions.php and let me know. /* * AST: get UPS Tracking number from order note * */ add_action( ‘woocommerce_rest_insert_order_note’, ‘action_woocommerce_rest_insert_order_note’, 10, 3 ); function action_woocommerce_rest_insert_order_note( $note, $request, $true ) { //check if AST is active if ( !function_exists( ‘ast_insert_tracking_number’ ) ) return; //check if order note is for UPS if( … Read more
I saw your example link. this use scrollspy to detect user is on what a part in single page. You only need to add the URL hash for the part user view on and your problem will be resolve. I send you the same simple libraries in Bootstrap. https://getbootstrap.com/docs/4.0/components/scrollspy/ Hope can help you.
This can be done, however a couple of quick details… you’ll want the 3rd party application to be the one triggering the change, otherwise it can’t be real time. If you make WordPress go and get the values from the 3rd Party application it’ll be scheduled and thus not ‘real-time’. Do all of these apps … Read more