Michael
Forum Replies Created
-
Forum: Plugins
In reply to: [MiniMax - Page Layout Builder] Text doesn't show in frontendNot 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…Forum: Plugins
In reply to: [MiniMax - Page Layout Builder] Text doesn't show in frontendHi,
how’s the fixing going?
Best regards
Forum: Plugins
In reply to: [MiniMax - Page Layout Builder] page-layout-builder export import issueHi 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
Forum: Plugins
In reply to: [Page Builder by SiteOrigin] saving array failsnot 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!
Forum: Plugins
In reply to: [Page Builder by SiteOrigin] saving array failsSadly, 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
Forum: Plugins
In reply to: [Polylang] Hide translated entriesargh, I definitely need stronger contact lenses…
Thx 4 your comment, thats exactly what I needed.
Forum: Plugins
In reply to: [MiniMax - Page Layout Builder] Rich text module no longer worksGot 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.7on line 45
Does this help?
*I downgraded to the “last” working rte for now.
Forum: Plugins
In reply to: [Page Builder by SiteOrigin] Suggestion – Choose bootstrap and percentage?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!
Forum: Hacks
In reply to: query_vars and permalinks questionargh 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.