This document lists all the situations where WordPress sends an email, along with how to filter or disable each email.
This documentation has moved here: https://github.com/johnbillion/wp_mail
This document lists all the situations where WordPress sends an email, along with how to filter or disable each email.
This documentation has moved here: https://github.com/johnbillion/wp_mail
| ######################################################################## | |
| # OPTIMAL .htaccess FILE FOR SPEED AND SECURITY @Version 2.0.9 - 03/2024 | |
| # ---------------------------------------------------------------------- | |
| # @Author: Andreas Hecht | |
| # @Author URI: https://seoagentur-hamburg.com | |
| # License: GNU General Public License v2 or later | |
| # License URI: http://www.gnu.org/licenses/gpl-2.0.html | |
| ######################################################################## | |
| <?php | |
| /** | |
| * Block: Map | |
| * Description: Generates a static map image via Google Static Maps API. | |
| * | |
| * @see https://staticmapmaker.com/google/ | |
| * @see https://github.com/getblocklab/block-lab | |
| * ---------------------------------------- | |
| * Block config: | |
| * ---------------------------------------- |
| <!doctype html><html><head><meta charset="UTF-8"><title>Thanks for signing up</title></head><body bgcolor="#ffede3"> | |
| <table width="100%" cellpadding="0" cellspacing="0" border="0" bgcolor="#ffede3"><tr><td> | |
| <table width="600" align="center" cellpadding="0" cellspacing="0" border="0" bgcolor="#ffffff"><tr><td colspan="3"><a href="http://www.mailpoet.com"><img style="display:block;border:0;outline:none;-ms-interpolation-mode:bicubic;" src="https://www.mailpoet.com/wp-content/uploads/2019/01/mailpoet-logo-orange-header.png" width="600" height="118" alt="MailPoet" /></a></td></tr><tr><td width="20"></td> | |
| <td style="color:#071c6d;font-family:arial,sans-serif;font-size:15px;"> | |
| <b>Hello!</b> | |
| Thanks for signing up. |
| <script> | |
| jQuery(document).ready(function($) { | |
| $('.ct-filter').on( 'click', function(event){ | |
| var $type = $(this).data("filter"); | |
| if($type == "all"){ | |
| $('.entry-card').fadeOut(0); | |
| $('.entry-card').fadeIn(500); | |
| } else { | |
| $('.entry-card').hide(); | |
| // For CPTs just change the category class to your CPTs slug for example: '.projects-' |
| add_action( 'wp_head', function () { | |
| ?> | |
| <link rel="preload" href="/wp-content/uploads/blocksy/local-google-fonts/s/opensans/v20/mem8YaGs126MiZpBA-UFVZ0bf8pkAg.woff2" as="font" type="font/woff2" crossorigin> | |
| <link rel="preload" href="/wp-content/uploads/blocksy/local-google-fonts/s/opensans/v20/mem5YaGs126MiZpBA-UNirkOUuhpKKSTjw.woff2" as="font" type="font/woff2" crossorigin> | |
| <link rel="preload" href="/wp-content/uploads/blocksy/local-google-fonts/s/poppins/v15/pxiByp8kv8JHgFVrLCz7Z1xlFd2JQEk.woff2" as="font" type="font/woff2" crossorigin> | |
| <?php } ); |
| function my_leco_cp_logout_url() { | |
| // return the preferred URL. | |
| return home_url(); | |
| } | |
| add_filter( 'leco_cp_logout_url', 'my_leco_cp_logout_url' ); | |
| function my_leco_cp_client_portal_archive() { | |
| return 'Ihre Projekte'; | |
| } | |
| add_filter( 'leco_cp_client_portal_archive', 'my_leco_cp_client_portal_archive' ); |
| function my_leco_cp_client_roles( $roles ) { | |
| $roles = array_merge( $roles, array( 'administrator', 'customer' ) ); | |
| return $roles; | |
| } | |
| add_filter( 'leco_cp_client_roles', 'my_leco_cp_client_roles' ); |
| add_action( 'after_setup_theme', function() { | |
| remove_action( 'woocommerce_single_product_summary', array( 'WGM_Template', 'woocommerce_de_price_with_tax_hint_single' ), 7 ); | |
| }); |
| add_action( 'after_setup_theme', function() { | |
| remove_action( 'woocommerce_after_shop_loop_item_title', array( 'WGM_Template', 'woocommerce_de_price_with_tax_hint_loop' ), 5 ); | |
| }); |