Category: Widgets
FAQs
$faqs = [ [ ‘question’ => ‘Add your question here?’, ‘answer’ => ‘Write the answer here’ ], [ ‘question’ => ‘This is sample question’, ‘answer’ => ‘This is sample answer’ ], ]; ?>Continue reading
Untitled Snippet
EarnQuick đ āĻĄāĻŋāĻāĻŋāĻāĻžāϞ āϏāĻžāĻĢāϞā§āϝā§āϰ āϏāĻā§āĻā§ āĻāĻĒāύāĻžāϰ āĻŦā§āϝāĻŦāϏāĻžāĻā§ āĻĄāĻŋāĻāĻŋāĻāĻžāϞ āĻāϰā§āύ, āĻāĻŽāϰāĻž āĻĒā§āϰāĻĻāĻžāύ āĻāϰāĻŋ āĻĒā§āϰāĻŋāĻŽāĻŋāϝāĻŧāĻžāĻŽ āϏāϞāĻŋāĻāĻļāύāĨ¤ āĻāĻŽāĻžāĻĻā§āϰ āϏā§āĻŦāĻžāϏāĻŽā§āĻš đ đģ đ đĨ ⨠āĻāϝāĻŧā§āĻŦ āĻĄā§āĻā§āϞāĻĒāĻŽā§āύā§āĻ āĻāϧā§āύāĻŋāĻ āĻ responsive website developmentāĨ¤ đ āĻĄāĻŋāĻāĻŋāĻāĻžāϞ āĻŽāĻžāϰā§āĻā§āĻāĻŋāĻ SEO, Social Media Marketing, PPC CampaignsāĨ¤ đ āĻā§āϰāĻžāĻĢāĻŋāĻ āĻĄāĻŋāĻāĻžāĻāύ…Continue reading
Elementor Shrinking Header Snippet
/* shrinking header section */ .shrinker { background: transparent; height: (set your header height in pixels); transition: all .2s linear!important; -webkit-transition: all .2s linear!important; -moz-transition: all .2s linear!important; } .shrinker.elementor-sticky–effects { background: #fff; height: (set your header height after shrinking…Continue reading
Site Name, URL, Link, Logo
// Site name add_shortcode(‘site_name’, function () { return get_bloginfo(‘name’); }); // Home URL (front-end URL) add_shortcode(‘site_url’, function () { return esc_url(home_url(‘/’)); }); // Clickable site link: [site_link text=”My Site”] add_shortcode(‘site_link’, function ($atts) { $a = shortcode_atts([‘text’ => get_bloginfo(‘name’)], $atts); return…Continue reading
ACF Display Frontend (Opt Fields)
// Shortcode function to display ACF field from options function display_acf_option_shortcode($atts) { // Parse attributes with defaults $atts = shortcode_atts(array( ‘field’ => ”, // Default field (leave empty or set fallback) ), $atts); // Check if field is provided if…Continue reading
Fix ACF content not displaying in the filter result – Content Grid
add_filter( ‘pp_cg_beaver_themer_parse_shortcodes’, ‘__return_false’ );Continue reading
Add Excerpts to Pages
add_post_type_support( ‘page’, ‘excerpt’ );Continue reading
Adjust Mega Menus for Admin
/* Mega Menus */ body.admin-bar .mega-drop { margin-top: -32px!important; }Continue reading
Scroll to Top
.fl-post-title {display:none;} /* Scroll to Top Settings */ #toTop { display: none; position: fixed; bottom: 5px; right: 10px; width: 80px; height: 80px; opacity: 0.8; filter: alpha(opacity=40); /* For IE8 and earlier */ } #toTop:after { content: “\f343”; font-family: dashicons; color:…Continue reading