Tagged: 

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #27449

    Hello!

    I would like to make a request in future update to be able to change table rows / columns order.

    I have a table with 50 rows and now I want to add a new row in line 6. Now I have to redo the table basically rather having a function to be able to reorder a new row to whatever line I want to.

    Also, be able to reuse an already made table in another page would be nice.

    Tried to change in database manually at *_posts > post_content but don’t work it seems.

    Please give me some pointers and I’ll be happy :)

    TIA

    #134052

    You can try to activate the debug mode. Open up functions.php and find this line

    if(isset($avia_config['use_child_theme_functions_only'])) return;

    Then replace it with

    if(isset($avia_config['use_child_theme_functions_only'])) return;

    //set builder mode to debug
    add_action('avia_builder_mode', "builder_set_debug");
    function builder_set_debug()
    {
    return "debug";
    }

    Now you should see a “debug window” underneath the advanced layout editor which allows you to manipulate the shortcode (and table content) directly.

Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘Change table order’ is closed to new replies.