Clamp Text size for Elementor

h1 {font-size: clamp(1.8125rem, 1.05328rem + 3.19672vw, 4.25rem);} h2 {font-size: clamp(1.5rem, 0.97439rem + 2.21311vw, 3.1875rem);} h3 {font-size: clamp(1.25rem, 0.89959rem + 1.47541vw, 2.375rem);} h4 {font-size: clamp(1.0625rem, 0.82889rem + 0.98361vw, 1.8125rem);} h5 {font-size: clamp(0.875rem, 0.71926rem + 0.65574vw, 1.375rem);} h6 {font-size: clamp(0.75rem, 0.67213rem +…Continue reading

Buy with Prime

add_action( ‘woocommerce_after_add_to_cart_form’, ‘QL_add_text_under_add_to_cart’ ); function QL_add_text_under_add_to_cart () { global $product; ?>Continue reading

Buy with Prime

add_action( ‘woocommerce_after_add_to_cart_form’, ‘QL_add_text_under_add_to_cart’ ); function QL_add_text_under_add_to_cart () { global $product; ?>Continue reading

Enhancing Topic Filter Layout in Fluent Community

// * CodeSnippet Name: Fluent Community Modification // * Description: A custom Code for Fluent Community plugin // * Author: InKontaktBringer Team – Sumaiya // * Author URI: https://www.inkontaktbringer.de/linktree add_action(‘fluent_community/portal_head’, function() { ?>Continue reading

Use YouTube Thumbnail as Featured Image

// Hook into the save_post action to set the YouTube thumbnail as the featured image function set_youtube_thumbnail_as_featured_image($post_id) { // Check if the post type is ‘video’ to avoid running on other post types if (get_post_type($post_id) !== ‘video’) { return; }…Continue reading