Support Forum » User Profile

Forum Replies Created

Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • in reply to: Columns are not displayed #8093
    bukovinalifebukovinalife
    Participant

    http://nmodels.hol.es/ru/wp-admin/post-new.php

    code to create meta boxes:
    http://nmodels.hol.es/ru/wp-admin/theme-editor.php?file=functions.php&theme=theme

    temporary access
    -----------------------------
    login: admin
    password: admin

    in reply to: Columns are not displayed #8078
    bukovinalifebukovinalife
    Participant

    http://nmodels.hol.es/3.jpg

    in reply to: Columns are not displayed #8077
    bukovinalifebukovinalife
    Participant

    By the way, I used this extra сss

    .rwmb-field .select2-container,
    .select2-search__field,
    .rwmb-input input [type="text"],
    .rwmb-input input [type="search"],
    .rwmb-input input [type="password"],
    .rwmb-input input [type="email"],
    .rwmb-input textarea,
    .rwmb-input select {
        border: 1px solid #eee! important;
        width: 100%;
    }

    sort of like the problem was partially solved (in the case of the reflection on the server)

    in reply to: Columns are not displayed #8076
    bukovinalifebukovinalife
    Participant

    Hi
    please consider my applications
    The fact is that I tried on different servers both online and offline
    problems remain in the local server VAMP does not render correctly the HTML code on servers, it is rendered correctly, but the problem is that it does not reflect the objects according to the specified sizes
    I also saw that if I use a group of fields, columns not be reflected in any way
    tested the same on the meta-box Version 4.8.5 and the column Version 0.1.1
    in these versions everything works ok. because I'm sure that the problem is in the latest updates
    if I can help with the decision let me know I really like what you are doing and ready to help in the development and project

    in reply to: Columns are not displayed #8069
    bukovinalifebukovinalife
    Participant

    in the first picture
    12 columns should be expanded by 12 columns
    6 columns should be expanded into 6 columns
    3 columns should be expanded into 3 columns
    but as you can see they are all of the same size

    in reply to: Columns are not displayed #8047
    bukovinalifebukovinalife
    Participant

    Please help!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
    http://nmodels.hol.es/1.jpg
    http://nmodels.hol.es/2.jpg

    in reply to: Columns are not displayed #8045
    bukovinalifebukovinalife
    Participant

    problems with the columns remained
    eg 'columns' => 12, and others

    in reply to: Columns are not displayed #8035
    bukovinalifebukovinalife
    Participant

    Hi
    I updated the metabox and metabox columns
    pity on the problem persists

    in reply to: Columns are not displayed #8000
    bukovinalifebukovinalife
    Participant

    thanks

    in reply to: Columns are not displayed #7983
    bukovinalifebukovinalife
    Participant

    rendering

    <div class="rwmb-row">
      <div class="rwmb-column rwmb-column-6  rwmb-column-first">
       <div class="rwmb-field rwmb-text-wrapper">
        <div class="rwmb-label">
         <label for="prefix-text_1">Text</label>
        </div>
        <div class="rwmb-input ui-sortable">
         <input size="30" id="prefix-text_1" class="rwmb-text " name="prefix-text_1" type="text">
        </div>
       </div>
    
       <div class="rwmb-field rwmb-text-wrapper">
        <div class="rwmb-label">
         <label for="prefix-text_2">Text</label>
        </div>
       <div class="rwmb-input ui-sortable">
        <input size="30" id="prefix-text_2" class="rwmb-text " name="prefix-text_2" type="text">
       </div>
      </div>
     </div>
    <!-- .rwmb-column -->
    </div>
    in reply to: Columns are not displayed #7982
    bukovinalifebukovinalife
    Participant

    my code

    add_filter( 'rwmb_meta_boxes', 'your_prefix_register_meta_boxes' );
    
    function your_prefix_register_meta_boxes( $meta_boxes ) {
    
        $meta_boxes[] = array (
          'id' => 'test',
          'title' => 'test',
          'pages' =>   array (
             'post',
             'page',
          ),
          'context' => 'normal',
          'priority' => 'high',
          'autosave' => false,
          'fields' =>   array (
             
            array (
              'id' => 'text_1',
              'type' => 'text',
              'name' => 'Text Field',
              'columns' => 4,
            ),
             
            array (
              'id' => 'datetime_5',
              'type' => 'datetime',
              'name' => 'Date Time Picker',
              'columns' => 8,
            ),
          ),
        );
    
        return $meta_boxes;
    
    }
Viewing 11 posts - 1 through 11 (of 11 total)