Changeset 1526756
- Timestamp:
- 11/02/2016 02:58:21 PM (9 years ago)
- Location:
- woo-layout-editor/trunk
- Files:
-
- 3 edited
-
Readme.txt (modified) (1 diff)
-
css/woo_layout_editor.css (modified) (1 diff)
-
woo-product-editor.php (modified) (7 diffs)
Legend:
- Unmodified
- Added
- Removed
-
woo-layout-editor/trunk/Readme.txt
r1526230 r1526756 5 5 Requires at least: 4.1 6 6 Tested up to: 4.6.1 7 Stable tag: 1.4. 47 Stable tag: 1.4.5 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html -
woo-layout-editor/trunk/css/woo_layout_editor.css
r1526230 r1526756 1 2 .sortable-table{3 float:left;4 }5 6 #sortable1, #sortable2, #sortable_shop1, #sortable_shop2 , #sortable_shop1pr, #sortable_shop2pr {7 border: 1px solid #eee;8 width: 142px;9 min-height: 20px;10 list-style-type: none;11 margin: 0;12 padding: 5px 0 0 0;13 float: left;14 margin-right: 10px;15 }16 #sortable1 li, #sortable2 li, #sortable_shop1 li, #sortable_shop2 li, #sortable_shop1pr li, #sortable_shop2pr li {17 margin: 0 5px 5px 5px;18 padding: 5px;19 font-size: 1.2em;20 width: 120px;21 }22 .connectedSortable{23 float:left;24 }25 #shop-general , #shop-products {26 width: 50%;27 float: left;28 }29 30 .defualt-push-button{31 float:left;32 width: 30%;33 }34 div#seialize-div {35 float: left;36 }37 div#seialize-div-shop {38 float: left;39 }40 h6.h6-class {41 font-size: xx-small;42 margin: initial;43 }44 /* hide all 3 text boxes that hold the serialization becusae user doesn't have to see thaem */45 #serilization-layers-shop-products, #serilization-layers-shop, #serialize-layers{46 display:none;47 }48 /* indicate in red that here come the product layout */49 ul b{50 color:red;51 }52 ul li:hover {53 cursor:move;54 }55 h2.hndle.ui-sortable-handle {56 pointer-events: none;57 }58 /* moving the collaps buttons to the left */59 .wp-core-ui .button-link {60 float:left;61 } -
woo-layout-editor/trunk/woo-product-editor.php
r1526230 r1526756 4 4 * Plugin URI: http://www.triplebit.com/myplugins/woo-layout-editor.zip 5 5 * Description: Page/Shop Layout Editor 6 * Version: 1.4. 46 * Version: 1.4.5 7 7 * Author: Izac Lesher 8 8 * Author URI: http://itziklesher.com … … 56 56 57 57 if ($options_page) 58 add_action( 'load-' . $options_page, 'woolayedtil_help_tabs' );58 add_action( 'load-' . $options_page, 'woolayedtil_help_tabs', 10 ); 59 59 } 60 60 /***************************************************************** … … 172 172 *****************************************************************/ 173 173 174 add_action( 'admin_init', 'woolayedtil_admin_init' );174 add_action( 'admin_init', 'woolayedtil_admin_init', 10 ); 175 175 176 176 function woolayedtil_admin_init() { 177 177 add_action('admin_post_save_woolayedtil_options', 178 'woolayedtil_process_options' );178 'woolayedtil_process_options',10); 179 179 } 180 180 //Processing and storing admin page post data … … 284 284 // load all style and css files 285 285 286 add_action( 'admin_enqueue_scripts', 'woolayedtil_load_admin_scripts' );286 add_action( 'admin_enqueue_scripts', 'woolayedtil_load_admin_scripts', 10 ); 287 287 288 288 function woolayedtil_load_admin_scripts() { … … 368 368 // -------------- update shop layers according admin settings -------------------------------------------------------- 369 369 370 add_action( 'wp_head', 'woolayedtil_arrange_woo_layers_according_sortable_shop' );370 add_action( 'wp_head', 'woolayedtil_arrange_woo_layers_according_sortable_shop',10 ); 371 371 function woolayedtil_arrange_woo_layers_according_sortable_shop(){ 372 372 … … 481 481 //-------------- Shop Layer Products 482 482 483 add_action( 'wp_head', 'woolayedtil_arrange_woo_layers_according_sortable_shop_products' );483 add_action( 'wp_head', 'woolayedtil_arrange_woo_layers_according_sortable_shop_products',10 ); 484 484 function woolayedtil_arrange_woo_layers_according_sortable_shop_products(){ 485 485 … … 616 616 617 617 618 add_action( 'wp_head', 'woolayedtil_arrange_woo_layers_according_sortable' );618 add_action( 'wp_head', 'woolayedtil_arrange_woo_layers_according_sortable', 10 ); 619 619 function woolayedtil_arrange_woo_layers_according_sortable(){ 620 620
Note: See TracChangeset
for help on using the changeset viewer.