Adding Text/Currency To Progress Bar On Campaign Pages

This only applies to campaigns created with the visual builder introduced in v1.8.0.

David Bisset PRO
<10

Untitled Snippet

{"generator":"Code Snippets v3.6.5.1","date_created":"2024-07-30 20:37","snippets":[{"id":5,"name":"No price","code":"add_action( 'init', 'wpspecial_nascondi_prezzo_agli_utenti_non_registrati' );n nfunction wpspecial_nascondi_prezzo_agli_utenti_non_registrati() { ntif ( ! is_user_logged_in() )…

SEP color

add_action('admin_head', 'sep_color'); function sep_color() { echo ''; }

eaglegame

const canvas = document.getElementById('game-canvas'); const ctx = canvas.getContext('2d'); class Character { constructor(name, x, y, width, height,…

MemberPress: Auto Expand Coupon Field

By default, the coupon field is hidden on the MemberPress registration forms. Instead, users will see…

MemberPress: Auto-populate coupon on all registration forms

Use this code to automatically apply a specified coupon code to all of the website's MemberPress…

MemberPress: Add/Override State Drop Down Values

Adding this code snippet to a website will override the list of states available under the…

MemberPress: Change Membership Registration URL

Each MemberPress Membership has an automatically generated registration page with its default URL. This code snippet…

MemberPress: New and Improved Remove State From Registration (For countries that don’t have a drop down)

This code snippet will override the MemberPress script used to manage the state field on the…

Untitled Snippet

// Get the butterflies container const butterfliesContainer = document.querySelector('.butterflies'); // Create a function to generate a…

Add dynamic copyright year

This shortcode will automatically add "Copyright © 2024" (or the current year).

1 113 114 115 116 117 178