Disable XML-RPC (copy)
add_filter( ‘xmlrpc_enabled’, ‘__return_false’ );Continue reading
Join 2,000,000+ Professionals who use WPCode to Future-Proof Their Websites!
add_filter( ‘xmlrpc_enabled’, ‘__return_false’ );Continue reading
/** * Load permutations jQuery */ function permutations_jquery_loader() { ?>Continue reading
// Author: Sumaiya , Clickup Doc: https://app.clickup.com/36636088/v/dc/12y1dr-22535/12y1dr-24415 function calculate_organ_scores($answers) { $scores = [ ‘darm’ => 0, ‘leber’ => 0, ‘nebennieren’ => 0, ‘bauchspeicheldruese’ => 0, ‘schilddruese’ => 0, ]; // Calculate Darm Score $scores[‘darm’] += ($answers[‘frage_1’] == ‘Ja’) ? 1…Continue reading
add_action( ‘admin_init’, ‘disable_tinymce_for_notifications’); function disable_tinymce_for_notifications() { if ( ( GFForms::is_gravity_page() && rgget( ‘page’ ) === ‘gf_edit_forms’ && rgget( ‘view’ ) === ‘settings’ ) && rgget( ‘subview’ ) === ‘notification’ ) { add_filter( ‘user_can_richedit’, ‘__return_false’ ); } }Continue reading
function mepr_remove_dashboard_widgets() { global $wp_meta_boxes; // Unset the MemberPress Weekly Stats widget from the dashboard unset( $wp_meta_boxes[‘dashboard’][‘normal’][‘core’][‘mepr_weekly_stats_widget’] ); } // Hook the function into the WordPress dashboard setup action add_action( ‘wp_dashboard_setup’, ‘mepr_remove_dashboard_widgets’, 99 );Continue reading
function maybe_hide_pause_resume_links( $link, $sub ) { // Replace 123, 456 with the membership IDs which members can pause/resume subscriptions for. $products_to_allow = array( ‘123’, ‘456’ ); $product = $sub->product(); if( in_array( $product->ID, $products_to_allow ) ) { return $link; } else…Continue reading
function mepr_exclude_protected_posts_from_query_block( $query ) { if (! is_admin() && $query->is_main_query()) { $posts_to_exclude = array(); $posts = get_posts(array(‘post_type’ => ‘post’, ‘posts_per_page’ => -1)); foreach ($posts as $post) { if (MeprRule::is_locked($post)) { $posts_to_exclude[] = $post->ID; } } if (! empty($posts_to_exclude)) { $query->set(‘post__not_in’,…Continue reading
add_filter( ‘mepr-activecampaign-add-subscriber-args’, function( $args, $user ) { // Check if the username is set in the POST request and sanitize it $username = isset( $_POST[‘user_login’] ) ? sanitize_text_field( $_POST[‘user_login’] ) : ”; // Add the username to the custom field…Continue reading
// Remove the inactive tag function mepr_remove_ck_inactive_tag_from_subscriber($txn) { $contact = $txn->user(); $enabled = (bool)get_post_meta($txn->product_id, ‘_meprconvertkit_tag_override’, true); $active_tag_id = get_post_meta($txn->product_id, ‘_meprconvertkit_tag_override_id’, true); $inactive_tag_id = get_post_meta($txn->product_id, ‘_meprconvertkit_inactive_tag_override_id’, true); $ck = new MpConvertKit(); // Remove active tag if ($enabled && !empty($active_tag_id)) { $ck->remove_tag_from_subscriber($contact,…Continue reading
add_action( ‘mepr-account-is-inactive’ , function ( $txn ) { if ( is_plugin_active( ‘buddypress/bp-loader.php’ ) && $txn instanceof MeprTransaction) { //first we need to make sure that the user isn’t active on another subscription $mepr_user = new MeprUser( $txn->user_id ); if (…Continue reading