/** * Import an entire folder from a plugin into the WordPress theme. * * @param string $plugin_folder Plugin folder path. * @param string $theme_folder Theme folder path. * * @return bool True on success, false on failure. */ function…Continue reading
add_editor_style( ‘style-editor.css’ ); add_theme_support( ‘appearance-tools’ ); add_theme_support( ‘align-wide’ ); add_theme_support( ‘responsive-embeds’ ); add_theme_support( ‘post-formats’, array( ‘aside’, ‘gallery’, ‘link’, ‘image’, ‘quote’, ‘status’, ‘video’, ‘audio’, ‘chat’ ) // WordPress supports the following post formats. These formats cannot be changed by the average…Continue reading
// Skip show library screen add_filter( ‘wpcode_add_snippet_show_library’, ‘__return_false’ ); // Move status column add_filter( ‘wpcode_code_snippets_table_columns’, function ( $columns ) { if ( isset( $columns[‘status’] ) ) { $status = $columns[‘status’]; unset( $columns[‘status’] ); $columns = array_slice( $columns, 0, 1, true…Continue reading
add_filter( ‘wpcode_snippets_per_page’, function() { return 25; });Continue reading
add_filter( ‘woocommerce_cart_shipping_method_full_label’, ‘wcv_override_vendor_shipping_label’, 10, 2 ); function wcv_override_vendor_shipping_label( $label, $method ){ $label = ‘Flat-rate’; // <- Change this to your preferred prefix $has_cost = 0 cost; $hide_cost = ! $has_cost && in_array( $method->get_method_id(), array( ‘free_shipping’, ‘local_pickup’ ), true ); if…Continue reading
add_filter( ‘yith_ywpo_pre_order_product_label’, function($message, $pre_order, $id, $cart_item) { return ‘Questo prodotto potrebbe subire ritardi rispetto ai tempi di spedizione standard’; }, 10, 4 );Continue reading
add_filter( ‘gravityview_edit_entry_title’, ‘gk_change_edit_entry_title’, 10, 1); function gk_change_edit_entry_title( $previous_text = ‘Edit Entry’ ) { $view_id = GravityView_View::getInstance()->getViewId(); if($view_id == 5082){ $title = ‘Edit My Registration’; } return $title; }Continue reading
add_filter( ‘gravityview_edit_entry_title’, ‘gk_change_edit_entry_title’, 10, 1); function gk_change_edit_entry_title( $previous_text = ‘Edit Entry’ ) { $view_id = GravityView_View::getInstance()->getViewId(); if($view_id == 5082){ $title = ‘Edit My Registration’; } return $title; }Continue reading
add_filter( ‘gravityview_edit_entry_title’, ‘gk_change_edit_entry_title’, 10, 1); function gk_change_edit_entry_title( $previous_text = ‘Edit Entry’ ) { $view_id = GravityView_View::getInstance()->getViewId(); if($view_id == 5082){ $title = ‘Edit My Registration’; } return $title; }Continue reading
/** Funktion zur Ermittlung aller Einträge in einem Formidable Form. Optional kann mit einem $searchTerm gefiltert werden. */ function getOneEntryFromForm($entry_id) { // API-Schlüssel abrufen $frmApiKey = getFormidableApiKey(); // Die vollständige API-URL $url = “https://dev.transformationalchange.de/wp-json/frm/v2/entries/” . $entry_id; // Optionen für die…Continue reading