Archives: Snippets
Tawk.to Chat Widget
修改WP Memory等參數
// 設定 WordPress 記憶體限制 define(‘WP_MEMORY_LIMIT’, ‘256M’); define(‘WP_MAX_MEMORY_LIMIT’, ‘512M’); // 設定 PHP 執行層的上傳限制 @ini_set(‘upload_max_filesize’, ’64M’); @ini_set(‘post_max_size’, ’64M’); @ini_set(‘max_execution_time’, ‘300’);Continue reading
disable font awesome
disable google web fonts
disable all fonts
allow contributors
add_filter( ‘optin_monster_api_menu_cap’, function( $cap ) { return ‘edit_posts’; } );Continue reading
allow authors
add_filter( ‘optin_monster_api_menu_cap’, function( $cap ) { return ‘publish_posts’; } );Continue reading
allow editors
add_filter( ‘optin_monster_api_menu_cap’, function( $cap ) { return ‘edit_pages’; } );Continue reading
trigger monsterlink of an external link
jQuery(document).ready(function($){ // Change ‘rt78pcbzrddo1y7w0yq3’ to match your specific campaign slug var campaignSlug = ‘rt78pcbzrddo1y7w0yq3’; // When any link contains ‘external’ in the rel attribute $(‘a[rel*=external]’).on(‘mouseover’, function() { window[‘om’ + campaignSlug].startShow(); }); });Continue reading