Forum Replies Created
-
AuthorPosts
-
August 6, 2015 at 12:28 PM in reply to: MB Group Clone with sort_clone issue, re-positioned group is replaced #1173
Anh Tran
KeymasterJust committed a fix for this bug. Can you please try the latest version on Github?
Thanks.
August 6, 2015 at 9:18 AM in reply to: MB Group Clone with sort_clone issue, re-positioned group is replaced #1172Anh Tran
KeymasterHi bucketpress, I'm checking this bug and will add a new fix asap.
Anh Tran
KeymasterJust in the group field, for example:
'fields' => array( array( 'id' => 'group_id', 'type' => 'group', 'fields' => array( // Sub-fields here ), 'clone' => true, // This is all you need ) )Anh Tran
KeymasterYou're using
excludewhich means do not show on these pages (show on all pages except these). You just need to change it toincludewhich means show only on these pages.Anh Tran
KeymasterYes, it's possible. If you set
multipletotrue, then the value of$row_value['intiative_links']will be an array, you need to loop through it to output the result:$group_value = rwmb_meta( 'initiatives_group' ); foreach ( $group_value as $row_value ) { echo '<div class="the_image"><img src="' . $row_value['initiative_image'] . '"></div> <div class="the_title">' . $row_value['initiative_title'] . '</div>'; echo '<div class="the_links">'; foreach ( $row_value['intiative_links'] as $id ) { echo '<a href="' . get_permalink( $id ) . '">' . get_the_title( $id ) . '</a>'; } echo '</div>'; }Anh Tran
KeymasterYes, it is. To clone a group, please add
'clone' => trueto the group field.Anh Tran
KeymasterCan you try this code:
$group_value = rwmb_meta( 'initiatives_group' ); foreach ( $group_value as $row_value ) { echo '<div class="the_image"><img src="' . $row_value['initiative_image'] . '"></div> <div class="the_title">' . $row_value['initiative_title'] . '</div>'; }July 30, 2015 at 4:48 AM in reply to: Metaboxes started to disappear in admin UI - Only 10 show up #1139Anh Tran
KeymasterHi ccatalina,
Please update to the latest version, it has some improvements and fixed that bug.
Best regards
Tan Nguyen
Anh Tran
KeymasterHi alsk
Sorry for late reply, I've double check our plugin and it's supports page template. Can you please check your theme if template exists?
Best Regards
Tan Nguyen
Anh Tran
KeymasterHi alsk,
Thanks for using MB Builder, I'm adding this feature and you'll get update within next 24 hours.
Best Regards
Tan Nguyen
Anh Tran
KeymasterHi, implementing image upload in the frontend is quite complicated. I'm not sure how you code it but you can look at the code of
file_input.phpas a start point.Anh Tran
KeymasterHmm, that's unexpected and weird behaviour. I'm fixing it and will update asap.
July 23, 2015 at 9:59 AM in reply to: Metaboxes started to disappear in admin UI - Only 10 show up #1115Anh Tran
KeymasterI had another customer who had (maybe) similar problem: he registered a lot of meta boxes and fields and couldn't save them. The problem was: PHP limits the number of POST fields, usually 1000, and also POST size. This makes you not save all fields when you build your meta boxes with the Builder.
Here are some links for reference about this:
http://stackoverflow.com/questions/8710185/new-limit-within-php-1000-fields-per-post-does-someone-know-if-the-number-can
http://www.inmotionhosting.com/support/community-support/prestashop-15/increase-the-maxinputvars-in-phpiniThe fix for that is editing the
.htaccess(orphp.ini) like this:php_value max_input_vars 3000 php_value suhosin.get.max_vars 3000 php_value suhosin.post.max_vars 3000 php_value suhosin.request.max_vars 3000See here for more information: http://stackoverflow.com/a/14166562/371240
Please try and let us know if this fixes.
Anh Tran
KeymasterI see, I will check with the group extension also. Please let me know about the JS error in console if you find anything.
Anh Tran
KeymasterHi, I've just sent you the invoice via email.
I will add invoice download link to user profile later.
Have fun.
-
AuthorPosts