Forum Replies Created
-
AuthorPosts
-
Long Nguyen
ModeratorHi,
Please try to re-save the permalink settings (Post name) to flush the cache. Let me know how it goes.
Long Nguyen
ModeratorHi,
The plugin Auto Listings is built based on Meta Box, so the forms (register, login, dashboard), fields work as you use the Meta Box on your site.
You can see on the documentation, you can sell the package (5, 10, 15 items) via PayPal then allow the customer to post the number of listings based on the package.
April 19, 2021 at 7:15 PM in reply to: ✅Hiding Meta Box Plugin from WordPress Dashboard Menu for Non-Admins #27382Long Nguyen
ModeratorHi Omar,
Please try to use this code to remove the Meta Box menu from the dashboard if the user is not an administrator.
add_action( 'admin_init', 'remove_menu_metabox' ); function remove_menu_metabox() { if ( !current_user_can( 'administrator' ) ) { //change role or capability here remove_menu_page( 'meta-box' ); } }Long Nguyen
ModeratorHi,
Thank you for getting in touch.
You need to activate the purchase on AppSumo (redeem).
Long Nguyen
ModeratorHi,
Thank you for your feedback.
The field type
image_uploadsupports showing the button edit/remove when hovering so using the mobile to edit the image is not encourage. I will inform the development team to improve the user experience for this field.Long Nguyen
ModeratorHi,
It is possible. You can use the function wp_update_post() to update the post status after submitting a post on the frontend.
Refer to this topic https://support.metabox.io/topic/selecting-post-formats/
April 19, 2021 at 9:55 AM in reply to: ✅Display existing content in custom field on frontend? #27369Long Nguyen
ModeratorHi,
To update one field value and apply for all posts, I think you should use the Taxonomy. Toronto or New York ... should be the term and information of this place is the term meta. So when you change the information of a place, it will change on all posts assigned to this term.
Long Nguyen
ModeratorHi,
So we can see in the code, there is only one option to select one image. You can create more options (images) to select.
[ 'name' => __( 'Image Select', 'your-text-domain' ), 'id' => $prefix . 'image_select', 'type' => 'image_select', 'options' => [ 'http' => __( '//zentyx.ca/realestate400/wp-content/uploads/2021/04/46H-scaled.jpg', 'your-text-domain' ), 'http2' => __( '//zentyx.ca/realestate400/wp-content/uploads/2021/04/46H-scaled.jpg', 'your-text-domain' ), ], ],Get more details in the documentation https://docs.metabox.io/fields/image-select/
Long Nguyen
ModeratorHi,
You can update the post title include the field value with custom code, please follow some topics below
https://support.metabox.io/topic/adding-metabox-field-data-to-the-post-title/
https://support.metabox.io/topic/how-to-autofill-the-title-of-the-cutstom-post-with-the-value-of-the-2-fields/Long Nguyen
ModeratorHi Maz,
Thank you for reaching out.
Can you please re-send screenshots when creating the custom field and creating a post? You can also follow the documentation to know how to create meta boxes and custom fields.
https://docs.metabox.io/creating-meta-boxes/Long Nguyen
ModeratorHi,
It sounds you want a plugin like Multi-Vendor https://woocommerce.com/products/product-vendors/ for WooCommerce. You can contact Woo support to ask for help in this case.
We also have a plugin Auto Listings and extension Frontend which help you to sell the package and limit posts to the dealer (user) https://wpautolistings.com/docs/extension-frontend/
Long Nguyen
ModeratorHi John,
Thank you for getting in touch.
We are developing a module to manage the license to track the activated license on a site. It will be available in a short time.
Long Nguyen
ModeratorHi Jimimac,
Thank you for reaching out.
You need to loop through the array to get sub-fields value. See more on this documentation https://docs.metabox.io/extensions/meta-box-group/#getting-sub-field-values.
Refer to topics https://support.metabox.io/topic/oxygen-builder-output-a-repeater-field/
Long Nguyen
ModeratorHi,
Thank you for reaching out.
Can you please share the code that creates the field image_select? I will help you to check this issue.
Long Nguyen
ModeratorHi,
I'm afraid it is not possible with the plugin MB Custom Post Type. You can try to use a third-party plugin to create a custom permalink for a specific post type https://wordpress.org/plugins/custom-post-type-permalinks/
-
AuthorPosts