Forum Replies Created
-
AuthorPosts
-
Anh Tran
KeymasterHi Eliodata,
To edit default user fields, please create a meta box that has the same fields as WordPress's. Then add it to the shortcode. For details, please see the docs:
https://docs.metabox.io/extensions/mb-user-profile/#edit-default-fields
Anh Tran
KeymasterNothing special, if you want to select a post/page, then
postfield is a little better. Otherwise, a normalselect_advancedis better.Anh Tran
KeymasterHi Alessandro, I've just fixed it in the version 1.3.5 of the MB Yoast SEO Integration. Please update the extension. The update for AIO will come a little later.
Anh Tran
KeymasterI've just re-checked the problem and couldn't replicate it. It seems to be working fine to me. I recorded a video here:
https://www.loom.com/share/966b9111ffe644278595fc7674e00ac6
Please check if you have something different on your site.
Anh Tran
KeymasterHi Eliodata,
Please try this plugin: https://wordpress.org/plugins/wp-ultimate-csv-importer/. It supports importing user data. It works with simple fields from Meta Box (text, select, textarea, etc.), not complex fields like groups.
Anh Tran
KeymasterHi Brian,
Then you can add the code to the meta box like this: https://pastebin.com/ernuJrQ1
And output it like this: https://pastebin.com/jzkpXYjH
Anh Tran
KeymasterHi, it's merged into the master branch, and is available in the Meta Box 5.2. Please just update and you'll have it.
Anh Tran
KeymasterHi Ben,
Please follow these steps:
- Update MB Builder to the latest version.
- Refresh the admin area, and then verify if the
mbb_versionis available in thewp_optionstable. If yes, then the database upgrade works. - Try editing the fields again.
Anh Tran
KeymasterHi John,
The code above is the code exported from MB Builder, isn't it? It's the code for the seamless meta box that we see in the video, which is correct.
What I meant is maybe there's some code that registers another meta box with the title "Team Members" (id "team-members") somewhere. So, please try to do search through your theme/plugin to see if you or someone did that before.
Anh Tran
KeymasterHi Brian,
Is the booking URL the same for all tour dates? Is that for you to select a page? If yes, then the code to outputting it is quite simple:
<?php $page_id = rwmb_meta( 'booking_page' ); ?> <a href="<?php the_permalink( $page_id ) ?>">Book Now</a>Anh Tran
KeymasterHi Cerdic,
Thanks for your feedback. I've just found the bug and fixed it here. Please try it.
Anh Tran
KeymasterHi Neil,
I think you need to work on the Rewrite API. These are some things you might do:
- Register a new permalink structure for your custom post type. You can also do this with this plugin.
- Register new rewrite tags for states.
Here is also a question on SO that might help.
September 30, 2019 at 11:26 AM in reply to: Help.. I can't insert shortcode module into my theme via Meta box plugin #16341Anh Tran
KeymasterHi Thiago,
Can you please give more details on the problem? What is the box "shortcode"? What lock do you have? And what do you mean include the shortcode code?
Anh Tran
KeymasterHi Paul, can you please send me a temporary admin account to check this? I can't replicate the bug on my localhost. It seems to be an edge case that I didn't think of.
Anh Tran
KeymasterHi Brian,
When you copy the code and paste into your theme's
functions.phpfile (or another file), you might not need<?phppart.Anyway, I've modified the code. The original code has some wrong variable name: https://pastebin.com/Qtpx9SE1
Here is what it looks like in my file:
-
AuthorPosts