Plugin Directory

Changeset 1526756


Ignore:
Timestamp:
11/02/2016 02:58:21 PM (9 years ago)
Author:
triplebit2
Message:

ver. 1.4.5

Location:
woo-layout-editor/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • woo-layout-editor/trunk/Readme.txt

    r1526230 r1526756  
    55Requires at least: 4.1
    66Tested up to: 4.6.1
    7 Stable tag: 1.4.4
     7Stable tag: 1.4.5
    88License: GPLv2 or later
    99License 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  
    44 * Plugin URI: http://www.triplebit.com/myplugins/woo-layout-editor.zip
    55 * Description: Page/Shop Layout Editor
    6  * Version: 1.4.4
     6 * Version: 1.4.5
    77 * Author: Izac Lesher
    88 * Author URI: http://itziklesher.com
     
    5656
    5757    if ($options_page)
    58         add_action( 'load-' . $options_page, 'woolayedtil_help_tabs' );
     58        add_action( 'load-' . $options_page, 'woolayedtil_help_tabs', 10 );
    5959}
    6060/*****************************************************************
     
    172172 *****************************************************************/
    173173
    174 add_action( 'admin_init', 'woolayedtil_admin_init' );
     174add_action( 'admin_init', 'woolayedtil_admin_init', 10 );
    175175
    176176function woolayedtil_admin_init() {
    177177    add_action('admin_post_save_woolayedtil_options',
    178          'woolayedtil_process_options');
     178         'woolayedtil_process_options',10);
    179179}
    180180//Processing and storing admin page post data
     
    284284// load all style and css files
    285285
    286 add_action( 'admin_enqueue_scripts', 'woolayedtil_load_admin_scripts' );
     286add_action( 'admin_enqueue_scripts', 'woolayedtil_load_admin_scripts', 10 );
    287287
    288288function woolayedtil_load_admin_scripts() {
     
    368368// -------------- update shop layers according admin settings --------------------------------------------------------
    369369
    370 add_action( 'wp_head', 'woolayedtil_arrange_woo_layers_according_sortable_shop' );
     370add_action( 'wp_head', 'woolayedtil_arrange_woo_layers_according_sortable_shop',10 );
    371371function  woolayedtil_arrange_woo_layers_according_sortable_shop(){
    372372
     
    481481//--------------  Shop Layer Products
    482482
    483 add_action( 'wp_head', 'woolayedtil_arrange_woo_layers_according_sortable_shop_products' );
     483add_action( 'wp_head', 'woolayedtil_arrange_woo_layers_according_sortable_shop_products',10 );
    484484function  woolayedtil_arrange_woo_layers_according_sortable_shop_products(){
    485485
     
    616616
    617617
    618  add_action( 'wp_head', 'woolayedtil_arrange_woo_layers_according_sortable' );
     618 add_action( 'wp_head', 'woolayedtil_arrange_woo_layers_according_sortable', 10 );
    619619  function  woolayedtil_arrange_woo_layers_according_sortable(){
    620620
Note: See TracChangeset for help on using the changeset viewer.