سُلَيْمَان بْن دَاوُوْد
Jan 4, 20231 min read
Modifying Admin Bar Menu in WordPress
add_action( 'admin_bar_menu', 'add_links_to_admin_bar',999); function add_links_to_admin_bar($admin_bar) { $args = array( 'parent' =>...
add_action( 'admin_bar_menu', 'add_links_to_admin_bar',999); function add_links_to_admin_bar($admin_bar) { $args = array( 'parent' =>...
add_action( 'woocommerce_checkout_update_order_review', 'isktaxexempt_checkout_based_on_state', 10, 1 ); function...
Selection of Pages Settings to Hide the header and footer so we can accumulate the page ids of pages to hide add_action( 'wp_footer',...
Code for functions.php $pageid = get_queried_object_id();// to get current page id add_filter( 'body_class', function( $classes ) {...
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1">...
<IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond %{HTTPS} !on RewriteRule (.*) https://daydream-solutions.com%{REQUEST...
jQuery(document).ready(function(){ jQuery('.tab-pane .col-4').each(function(){ if(jQuery(this).find('a img').length == 0){...
Example 1 add_shortcode('post_quote','post_quote_shortcode'); function post_quote_shortcode($atts){ $atts = shortcode_atts( array(...
/*Generic Page*/ add_filter('display_post_states', 'victoria_custom_post_states',10,2); function victoria_custom_post_states( $states,...
Requirement Solution Code // Allow shortcodes in ACF fields add_filter('acf/format_value/type=textarea', 'do_shortcode');...
The speed optimisation on word press depends on multiple factors we will discuss them here 1- Reduce External Script Request This can be...
Please add following code in active theme functions.php /* svg code render */ function get_svg_inline($path, $style = '') { if ( stripos(...
function lqorder_payment_complete( $order_id ){ $order = wc_get_order( $order_id ); $email = $order->get_billing_email(); $voucher ...
Custom Code to be places in plugin code file add_filter( 'woocommerce_add_to_cart_fragments', 'woocommerce_header_add_to_cart_fragment' );...
/*Custom Template Include*/ add_filter( 'template_include', 'victoria_template_include' ); function victoria_template_include( $template...
/*Custom Header Menu*/ class IBenic_Walker extends Walker_Nav_Menu { function start_el(&$output, $item, $depth=0, $args=array(), $id =...
if( 151 == $cf7->id ){ $cookieid = $posted_data['cookieid']; $cookie_status = get_post_meta ( $posted_data['cookieid'],...
jQuery(".learnmorebiblock").hover( function () { jQuery(this).parent().prev().find('.hoverimg').addClass("learnmorebiblockh"); ...
/*register custom flexible section*/ add_action('acf/init', 'my_acf_init_block_types'); function my_acf_init_block_types() { if(...
Invalidating a contact form 7 address /*Add hidden field as cookie id*/ add_filter( 'shortcode_atts_wpcf7', 'custom_shortcode_atts_wpcf7_...