This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .ZdlmCA__do_show { | |
| font-size: 24px; | |
| color: rgb(251, 249, 240); | |
| background-color: rgb(206, 171, 61); | |
| height: 64px; | |
| text-align: center; | |
| line-height: 64px; | |
| margin: 32px 0; | |
| cursor: pointer; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Add this to Debug Console in Browser on My Orders page | |
| // This will output data (10 records from current page to console) | |
| // Copy them to Excel and split ro rows via ";" | |
| // Example: 80142463919194;https://www.aliexpress.com/item/Fashion-Retro-Exquisite-Indian-Feather-Leaf…-Circle-Dream-Catcher-Bohemia-Lady-Dress-Sweater-Necklace/32245418018.html;Мода ретро изысканный индийский перо листьев кружева круг ловца снов богемия леди платье свитер ожерелье X-363;$ 0.88 | |
| var products = document.querySelectorAll(".order-item-wraper"); | |
| var product_arr = []; | |
| for (var i = 0; i < products.length; i++) { | |
| product_arr = []; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| * { | |
| outline: none; | |
| } | |
| .padding { | |
| padding: 10px; | |
| } | |
| .modal-show { | |
| overflow: hidden !important; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .m1modal-show { | |
| overflow: hidden!important; | |
| position: relative; | |
| right: 8px; | |
| } | |
| .margin-t-b { | |
| margin-top: 10px!important; | |
| margin-bottom: 10px!important; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| function wpse605901_remove_metaboxes() { | |
| if ( !current_user_can('manage_options') ) { | |
| remove_meta_box( 'categorydiv' , 'post' , 'normal' ); | |
| remove_meta_box( 'formatdiv' , 'post' , 'normal' ); | |
| remove_meta_box( 'um-admin-access-settings' ); | |
| remove_meta_box( 'tagsdiv-post_tag' , 'post' , 'normal' ); | |
| remove_meta_box( 'trackbacksdiv' , 'post' , 'normal' ); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| function remove_menu_pages_424398() { | |
| if ( defined( 'DOING_AJAX' ) ) | |
| { | |
| return; | |
| } | |
| if ( !current_user_can( 'manage_options' ) ) { | |
| remove_menu_page('link-manager.php'); // Links |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # add this (change site URL) | |
| RedirectMatch 301 ^/author/(.+)$ http://SITE.COM/members/$1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * PHP 5.3 and WP 4.7 is required | |
| */ | |
| //apply_filters( "bulk_actions-{$this->screen->id}", $this->_actions ); | |
| // Add our actions to list | |
| add_filter( "bulk_actions-edit-shop_order", function($actions) { |