285 Snippets
<10 Favourites
<10 Downloads

floating-monsterlink-2

  Want to get 25,000 unique visitors a month? Click here to learn how

floating-monsterlink-2.css

/* --- Floating MonsterLink Style 2 CSS --- ------------------------------------------ */ .floating-monsterlink.style2.show { bottom: 30px; } .floating-monsterlink.style2…

floating-monsterlink-2.js

// Floating MonsterLink Style 2 jQuery(document).ready(function ($) { //* Animate Floating MonsterLink into view on page…

disable OptinMonster campaigns for visitors with specific user roles

function om_docs_hide_optin_for_user_roles( $campaigns ) { // Do nothing if no user is logged in. if (…

To display your campaign language RTL

html div#om-{{id}} * { direction: rtl !important; }

wp-config

define( 'OPTINMONSTER_API_USER', 'your_username_here' ); define( 'OPTINMONSTER_API_KEY', 'your_key_here' );

add filter

add_filter( 'optin_monster_api_menu_cap', function( $cap ) { return 'edit_pages'; } );

1 18 19 20 21 22 24