Fix 500 Internal Server Error

# BEGIN WordPress RewriteEngine On RewriteRule .* – [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}] RewriteBase / RewriteRule ^index\.php$ – [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] # END WordPressContinue reading

Untitled Snippet

Web 1920 – 2 תכנים מקוריים בקרוב יעלו חדשות היום ערוץ לייב גיימרים ניו יורק LOST IN THE CITY גם הוא וגם היא TWIST IT TOP שלכת קוניצ’יוואה תחזית מיוחדת עד מתי סוף טוב נלחם TOP 3,445 לראשונה בישראל – ספריית…Continue reading

Increase After Order Actions Delay

add_filter( ‘edd_after_payment_actions_delay’, function( $delay ) { // Change this to the number of seconds you want to delay by. Suggested values are 60 or 90. $delay = 60; return $delay; } );Continue reading

Disable Fullscreen Editor

add_action( ‘enqueue_block_editor_assets’, function () { $script = “jQuery( window ).load(function() { const isFullscreenMode = wp.data.select( ‘core/edit-post’ ).isFeatureActive( ‘fullscreenMode’ ); if ( isFullscreenMode ) { wp.data.dispatch( ‘core/edit-post’ ).toggleFeature( ‘fullscreenMode’ ); } });”; wp_add_inline_script( ‘wp-blocks’, $script ); } );Continue reading