Support Forum » User Profile

Forum Replies Created

Viewing 15 posts - 1,696 through 1,710 (of 3,867 total)
  • Author
    Posts
  • PeterPeter
    Moderator

    Hello,

    does the visitors form can be used to change the post-id of another post to erase it?

    No. Only the author of the post can update their post in the frontend dashboard. Following the documentation https://docs.metabox.io/extensions/mb-frontend-submission/#user-dashboard

    If you don't want to show the frontend form for the visitors, you can create a custom code to check the logged-in user and output the frontend form with the shortcode.

    PeterPeter
    Moderator

    Hello,

    Please update Meta Box AIO to the new version 1.26.2, Meta Box 5.9.7 and check the issue again.

    in reply to: Unable to click on field and group actions #45255
    PeterPeter
    Moderator

    Hello,

    Please update Meta Box AIO to the new version 1.26.2 and check the issue again.

    in reply to: MB Favorite Posts menu is not showing up #45241
    PeterPeter
    Moderator

    Hello,

    There isn't a hook to move the Favorite Posts settings page to another menu. I use this code to remove the default settings page

    add_action( 'admin_init', function() {
    	remove_submenu_page( 'options-general.php', 'mb-favorite-posts' );	
    }, 999 );
    

    and this code to re-register the settings page

    add_filter( 'mb_settings_pages', function( $settings_pages ) {
    	$settings_pages[] = [
    		'id'          => 'mb-favorite-posts',
    		'option_name' => 'mb_favorite_posts',
    		'menu_title'  => __( 'Favorite Posts', 'mb-favorite-posts' ),
    		'class'       => 'mbfp-settings',
    		'style'       => 'no-boxes',
    		'column'      => 1,
    		'parent'      => 'tools.php', // change parent menu here
    		'tabs'        => [
    			'mbfp_general' => 'General',
    			'mbfp_button'  => 'Button',
    			'mbfp_icon'    => 'Icon',
    		],
    	];
    	return $settings_pages;
    }, 99 );

    however, it doesn't work properly so I recommend using the default settings page.

    in reply to: Link problem with the URL field #45235
    PeterPeter
    Moderator

    Hello,

    So the issue is in the frontend and related to Bricks builder, not Meta Box itself. I understand you can save the post with an empty URL field in the admin area. Please contact Bricks support to get further assistance.

    Regarding the documentation, the URL field is an HTML5 input field and there isn't specific documentation for this. Please read more about HTML5 input fields here https://developer.mozilla.org/en-US/docs/Learn/Forms/HTML5_input_types

    in reply to: Composer for premium extension not working #45234
    PeterPeter
    Moderator

    Hello,

    Can you share a screen record of steps you do on the local site?

    in reply to: MB Favorite Posts menu is not showing up #45232
    PeterPeter
    Moderator

    Hello,

    It is located under the Settings menu, screenshot https://imgur.com/Jt2dzAB

    PeterPeter
    Moderator

    Hello Kevin,

    It's the wrong address field for the map and geolocation. You need to add one address field to the map field settings, and the address field ID has to begin with address (like address or address_something).

    Please follow the documentation https://docs.metabox.io/extensions/meta-box-geolocation/#address-field

    PeterPeter
    Moderator

    Hello Steve,

    I've experienced a similar issue in the past. Please make sure the plugin MB Group is activated on the production site and has the latest version 1.3.19.

    in reply to: Link problem with the URL field #45221
    PeterPeter
    Moderator

    Hello,

    Any field can be emptied when saving the post. Do you use any custom code to insert the current post URL into the custom URL field? And please let me know the field ID of those fields.

    in reply to: Multiple visibility condition #45220
    PeterPeter
    Moderator

    Hello,

    Those fields can be located in another field group but they need to be available on the same page to make the conditional logic work.

    Can you share the page where I can see the issue?

    in reply to: Composer for premium extension not working #45217
    PeterPeter
    Moderator

    Hello,

    It could be a permission issue. Please get in touch with your hosting support and ask them for more information about the error "curl error 23" when downloading a premium plugin from the URL https://packages.metabox.io/
    Also, please share a screen record of the steps you do on your end.

    in reply to: How to order relationships in Bricks Builder query loops #45216
    PeterPeter
    Moderator

    Hello Keith,

    The order of related posts in the frontend should reflect the order of related items in the admin area. Does it work like that on your end? Please try to use the code without the Bricks builder and let me know how it goes.
    https://docs.metabox.io/extensions/mb-relationships/#getting-connected-items

    in reply to: Composer for premium extension not working #45211
    PeterPeter
    Moderator

    Hello Jai,

    I check the composer feature on my local site but don't see that issue. Please double-check the key on your account and ensure it is correct.

    in reply to: Custom post type not registered #45210
    PeterPeter
    Moderator

    Hello,

    Sorry for the late reply. Can you please change the CPT slug to another one and check this issue again? You can also deactivate all plugins except Meta Box, MB extension plugins, switch to a standard theme of WordPress and see how it goes.

Viewing 15 posts - 1,696 through 1,710 (of 3,867 total)