Forum Replies Created

Viewing 9 replies - 1 through 9 (of 9 total)
  • Thread Starter Michael

    (@ms-s)

    Not at all.

    I still got the same problems.

    Elements edited via backend don’t show in the frontend.
    Frontend editing works, but it doesn’t show the RTE…

    Thread Starter Michael

    (@ms-s)

    Hi,

    how’s the fixing going?

    Best regards

    Hi there,

    I also ran into this problem a couple of day ago.

    After taking a quick look into the database and export file I figured that the post meta field minimax_grid_settings is not getting updated when importing.
    Or better said, it gets updated, but the value is empty.

    plugins/page-layout-builder/includes/core.php on around line 476
    update_post_meta($post_id,"minimax_grid_settings",$_POST['layout_grids']);
    So it seems that there no value sent via POST.

    Aaaaanyway…
    I didn’t really feel like spending too much time on this, so I quickfixed this with adding the grid settings to the export file and importing it via the export file. At first I thought it didn’t work, but then I remembered to save after importing >_<
    So, it works for me!

    I do not know if there are any negative consequences!
    So I’ll share my dirty fix. Use it at your own risk.

    Fix:
    – open the core.php (pluginfolder/includes/core.php)
    – search for function ‘minimax_export_page_layout’
    – go to line 431 and add the following BEFORE
    $minimax_page['minimax_grid_settings'] = get_post_meta($post_id, "minimax_grid_settings", true);
    so it looks like this

    $minimax_page['minimax_grid_settings'] = get_post_meta($post_id, "minimax_grid_settings", true);
    $data = serialize($minimax_page);

    => the export file will now hold the grid_settings information
    – look for the function ‘minimax_import_layout_data’
    – go to line 475 and change the line from this
    update_post_meta($post_id,"minimax_grid_settings",$_POST['layout_grids']);
    to this
    update_post_meta($post_id,"minimax_grid_settings",$minimax_layout['minimax_grid_settings']);

    Hope this helps

    Thread Starter Michael

    (@ms-s)

    not having too much trouble with it yet. As said, I like the bootstrap part of it, but I think its still bootstrap 2.x.

    The first page builder plugin which uses bootstrap 3 gets my heart!

    Thread Starter Michael

    (@ms-s)

    Sadly, no.
    I moved away from this plugin over to http://wordpress.org/plugins/page-layout-builder/

    But mostly because of the bootstrap compatibily. So I didnt really looked for an answer to this topic anymore

    Thread Starter Michael

    (@ms-s)

    argh, I definitely need stronger contact lenses…

    Thx 4 your comment, thats exactly what I needed.

    Got the same behaviour on 3.6.1 and 3.7

    Upper textarea only has the ‘add Media’ button. The second textarea has the add Media button and also the ‘Visual’ and ‘Text’-Tab.

    When clicking on the Visual-Tab I get the following error loged to the console:

    Uncaught TypeError: Cannot read property ‘canvas’ of undefined
    in
    load-scripts.php?c=0&load%5B%5D=hoverIntent,common,admin-bar,schedule,autosave,jquery-color,wp-lists,quicktags,jquery-query,admin-comments,suggest,jquery-ui-cor&load%5B%5D=e,jquery-ui-widget,jquery-ui-mouse,jquery-ui-sortable,postbox,heartbeat,post,backbone,wp-util,wp-backbone,media-models,wp-pluplo&load%5B%5D=ad,media-views,media-editor,wp-auth-check,jquery-ui-tabs,jquery-ui-draggable,jquery-ui-slider,jquery-touch-punch,iris,wp-color-p&load%5B%5D=icker,jquery-form,word-count,editor,jquery-ui-resizable,jquery-ui-button,jquery-ui-position,jquery-ui-dialog,wpdialogs,wplink,wp&load%5B%5D=dialogs-popup,wp-fullscreen&ver=3.7

    on line 45

    Does this help?

    *I downgraded to the “last” working rte for now.

    Thread Starter Michael

    (@ms-s)

    Hi Greg,

    thanks for the answer.
    Some kind of option would be awesome. I still would like the idea of getting something “already existend” implemented instead of spending time to work myself into new css, which basically is already there, just named a little differently.

    Cheers!

    Thread Starter Michael

    (@ms-s)

    argh I’m an idiot…

    of course I wanted to array_push.. stupid me, thank you very much.

    FYI:

    I don’t really know why, but it seems that for the rewrite, you need to use single quotes. At least for me
    $newrules = array( "benutzer/([^/]+)/?$" => "index.php?pagename=user&nng_users=$matches[1]" );
    does not work but
    $newrules = array( 'benutzer/([^/]+)/?$' => 'index.php?pagename=user&nng_users=$matches[1]' );
    does.

Viewing 9 replies - 1 through 9 (of 9 total)