Okay
  Public Ticket #1272265
Style in custom tabs.
Closed

Comments

  • dangngoctu01 started the conversation

    Hi

    I also had the same problem https://themeenergy.ticksy.com//ticket/1181117/ and I tried to edit the meta_box.php file but still failed. Please help me.

    Thank you.

  •  2,057
    Theme replied

    Hi,

    Please provide more information with regards what you mean by "tried to edit the file".

    Did you edit the file? And after that did you retry saving things?

    Thanks,

    Best regards,

    themeenergy support

  • dangngoctu01 replied

    Hi,

    This is code need add in custom field "Price" in Carrental

    After when I save post so all  style have lost

    https://haituantravel.com/wp-admin/post.php?post=6065

    <table class="table1" style="box-sizing: border-box; border-collapse: collapse; width: 100%; margin-bottom: 20px">
    <tbody>
    <tr><th colspan="3" style="text-align: center;background:#F26B09;color: #fff; font-size:150%"><strong>Bảng Giá Thuê Xe Đi Mũi Né</strong></th>
    </tr>
    <tr style="background-color: #F26B09; color: #fff;">
    <td style="text-align: center;width: 33%;  padding: 10px 5px;font-size:110%">Loại Hình Xe</td>
    <td style="text-align: center;width: 33%;font-size:110%">Sài Gòn ⇒ Mũi Né</td>
    <td style="text-align: center;width: 33%;font-size:110%">Mũi Né ⇒ Sài Gòn</td>
    </tr>
    <tr>
    <td style="text-align: center; width: 33%; padding: 10px 5px"><strong>Xe du lịch 4 chỗ</strong></td>
    <td style="text-align: center;width: 33%">1.700.000 vnđ</td>
    <td style="text-align: center;width: 33%">1.700.000 vnđ</td>
    </tr>
    <tr style="background-color: #efefef;">
    <td style="text-align: center; width: 33%; padding: 10px 5px"><strong>Xe du lịch 7 chỗ</strong></td>
    <td style="text-align: center;width: 33%">1.900.000 vnđ</td>
    <td style="text-align: center;width: 33%">1.900.000 vnđ</td>
    </tr>
    <tr>
    <td style="text-align: center; width: 33%; padding: 10px 5px"><strong>Xe du lịch 16 chỗ</strong></td>
    <td style="text-align: center;width: 33%">2.200.000 vnđ</td>
    <td style="text-align: center;width: 33%">2.200.000 vnđ</td>
    </tr>
    <tr style="background-color: #efefef;">
    <td style="text-align: center; width: 33%; padding: 10px 5px"><strong>Xe du lịch 29 chỗ</strong></td>
    <td style="text-align: center;width: 33%">4.300.000 vnđ</td>
    <td style="text-align: center;width: 33%">4.300.000 vnđ</td>
    </tr>
    <tr>
    <td style="text-align: center; width: 33%; padding: 10px 5px"><strong>Xe du lịch 45 chỗ</strong></td>
    <td style="text-align: center;width: 33%">6.000.000 vnđ</td>
    <td style="text-align: center;width: 33%">6.000.000 vnđ</td>
    </tr>
    </tbody>
    </table>
    
    <table class="table1">
    <tbody>
    <tr>
    <td>Loại Hình Xe</td>
    <td>Sài Gòn ⇒ Mũi Né</td>
    <td>Mũi Né ⇒ Sài Gòn</td>
    </tr>
    <tr>
    <td><strong>Xe du lịch 4 chỗ</strong></td>
    <td>1.700.000 vnđ</td>
    <td>1.700.000 vnđ</td>
    </tr>
    <tr>
    <td><strong>Xe du lịch 7 chỗ</strong></td>
    <td>1.900.000 vnđ</td>
    <td>1.900.000 vnđ</td>
    </tr>
    <tr>
    <td><strong>Xe du lịch 16 chỗ</strong></td>
    <td>2.200.000 vnđ</td>
    <td>2.200.000 vnđ</td>
    </tr>
    <tr>
    <td><strong>Xe du lịch 29 chỗ</strong></td>
    <td>4.300.000 vnđ</td>
    <td>4.300.000 vnđ</td>
    </tr>
    <tr>
    <td><strong>Xe du lịch 45 chỗ</strong></td>
    <td>6.000.000 vnđ</td>
    <td>6.000.000 vnđ</td>
    </tr>
    </tbody>
    </table>
    

    https://haituantravel.com/wp-login.php

    User: haituan

    Pass: Ijhsaifsgyt8494@@@

    FTP Account

    User: [email protected]

    Pass: Ijhsaifsgyt8494@@@

    FTP Sever: ftp.haituantravel.com

    FTP Port:  21

  •  2,057
    Theme replied

    Hi,

    Please copy includes/plugins/metaboxes/meta_box.php (with the same folder structure), edit the file and change lines 449 to 454 from

    'table' =>  array(
        'id' => true,
        'class' => true
    ),
    'tr' => array(),
    'td' => array(),
    

    to

    'table' =>  array(
        'id' => true,
        'class' => true,
        'style' => true,
    ),
    'tbody' => array(),
    'tr' => array(
        'id' => true,
        'class' => true,
        'style' => true
    ),
    'th' => array(
        'id' => true,
        'class' => true,
        'style' => true,
        'colspan' => true,
        'rowspan' => true,
    ),
    'td' => array(
        'id' => true,
        'class' => true,
        'style' => true,
        'colspan' => true,
        'rowspan' => true,
    ),
    

    Best regards,

    themeenergy support