disable Google Fonts in Breakdance
disable Google Fonts in Breakdance
MemberPress: Display MemberPress Course Progress Using Shortcode
This shortcode displays a user's progress for a specific course in MemberPress. It outputs a styled…
Google Search Console Verification
HTML tag
Custom Payment Icon
Register a custom payment icon to show on the checkout form.
custom footer chatgpt css
/* Style the footer container */ #custom-footer { background-color: #fff; /* White background */ padding: 1px;…
WP Simple Pay: Custom Decimal Separator
Changes the decimal separator from a . (period) to a , (comma).
Completely Disable Comments
add_action('admin_init', function () { // Redirect any user trying to access comments page global $pagenow; if…
Event Data | Display Eventbrite Events
Please note that this guide is intended for advanced users and developers. Our plugin already offers…
Hide sidebar on mobile device
function custom_hide_sidebar_on_mobile() { echo ' '; } add_action('wp_head', 'custom_hide_sidebar_on_mobile');
Use Full Store Address in Ships From
add_filter( 'wcv_product_ships_from', 'ships_from_address' ); function ships_from_address( $field ){ global $post, $product; $shipping_disabled = wc_string_to_bool( get_option( 'wcvendors_shipping_management_cap',…
WordPress Post Views Counter Function
function wpb_set_post_views($postID) { $count_key = 'wpb_post_views_count'; $count = get_post_meta($postID, $count_key, true); if($count==''){ $count = 0; delete_post_meta($postID,…
CSS For Craft Picker
/* General Styles */ body { margin: 0; font-family: 'Arial', sans-serif; background-color: #f9f9f9; color: #333; line-height:…