Support Forum » User Profile

Forum Replies Created

Viewing 15 posts - 256 through 270 (of 3,718 total)
  • Author
    Posts
  • PeterPeter
    Moderator

    Hello,

    Thanks for the details.

    It isn't a bug and is working properly as it is. If you install your custom plugin, including the local JSON file, you need to go to the Meta Box > Field groups to sync the changes.
    If you have the local JSON file in the plugin/theme folder, it will be loaded as a higher priority than the field group in the builder.

    Following the documentation https://docs.metabox.io/local-json/

    in reply to: Hide From Front Not Working #49000
    PeterPeter
    Moderator

    Hello,

    Thanks for reaching out.

    I notice that the option Hide from front doesn't work when using the user profile form. I've escalated this issue to the development team to fix it as soon as possible.

    in reply to: Fatal Error on import custom fields #48999
    PeterPeter
    Moderator

    Hello Jeff,

    Please update Meta Box AIO to new version 3.1.1 to fix this issue. Thank you.

    in reply to: Rollback Meta Box AIO #48998
    PeterPeter
    Moderator

    Hello,

    Please update Meta Box AIO to new version 3.1.1 to fix this issue. Thank you.

    in reply to: Default Value Not Showing On Save #48996
    PeterPeter
    Moderator

    Hello,

    Please update Meta Box AIO to the new version 3.1.1, create a new radio field and recheck the issue.

    Let me know how it goes.

    in reply to: Rollback Meta Box AIO #48989
    PeterPeter
    Moderator

    Hello,

    I'm sorry about this experience. You can download the previous version of Meta Box AIO here
    https://drive.google.com/file/d/1glayFX7IHOQwx082hW6KHM1JVvy6lJLe/view?usp=sharing

    The fix for this issue will be included in the next update of this plugin.

    Thanks.

    in reply to: Tabs content disappear #48980
    PeterPeter
    Moderator

    Hello,

    Thanks for reaching out.

    Can you please export the settings page and field group associated with the settings page to JSON files and share them here? I will import files to my site and investigate the issue.
    Refer to the documentation https://docs.metabox.io/extensions/meta-box-builder/#export--import

    in reply to: Categories not showing in sidebar widget #48976
    PeterPeter
    Moderator

    Hello Chris,

    All the settings look good. I don't see any issue with them. Please share your site admin account and FTP by submitting this contact form https://metabox.io/contact/

    I will take a look.

    in reply to: Problem with import #48973
    PeterPeter
    Moderator

    Hello,

    Thank you for your feedback.

    I can confirm and reproduce the issue on my site. The plural and singular texts are text-encoded and Unicode-escaped, which causes the issue. I've escalated this issue to the development team to fix it in the next update of MB CPT extension.

    in reply to: Image are not updating in the setting tab and custom fields #48972
    PeterPeter
    Moderator

    Hello Artur,

    In case you are using Bricks Builder and encounter any issues with installation, configuration, compatibility, or usage, please reach out to them.
    Refer to our support policy https://metabox.io/support/topic/support-policy/

    Thank you.

    in reply to: Fatal Error on import custom fields #48971
    PeterPeter
    Moderator

    Hello Ole,

    Thanks for reaching out.

    What is the Meta Box Builder version on your site? Please update this plugin to the latest version 5.0.1 or use the plugin Meta Box AIO 3.0.1 and recheck the issue.

    If it doesn't help, please share the import file with me. I will try to import it to my demo site and investigate the issue.

    in reply to: Categories not showing in sidebar widget #48970
    PeterPeter
    Moderator

    Hello Chris,

    Thanks for reaching out.

    I check the category (taxonomy) page and see it works well but doesn't show any associated posts. Can you please share the taxonomy listing page in the admin area? I think it is admin area > issue330 > topics.

    I also suggest you follow some troubleshooting steps below and see if it helps:
    - go to Settings > Permalinks > Re-save permalink.
    - deactivate all plugins except Meta Box plugins, switch to a WordPress theme.

    in reply to: Admin Performance #48964
    PeterPeter
    Moderator

    Hello,

    Thanks for your feedback.

    I will inform the development team to consider supporting the feature include/exclude for custom fields in future updates.

    Let me know if you have any questions.

    in reply to: Advanced Rules → Add Rule button non-functional #48963
    PeterPeter
    Moderator

    Yes, I've imported the field group from your JSON code, but didn't see the issue. Please try to create a backup of your production site and re-import field groups to fix the issue.

    Let me know how it goes.

    in reply to: Getting data from custom table #48962
    PeterPeter
    Moderator

    Hello,

    I'm afraid that there aren't other methods to get data from a custom table without ID. We also use the SQL query to get the data, please check this function

    private static function query_get( int $object_id, string $table ): array {
    	global $wpdb;
    
    	$row = $wpdb->get_row(
    		$wpdb->prepare(
    			"SELECT * FROM $table WHERE <code>ID</code> = %d",
    			$object_id
    		),
    		ARRAY_A
    	);
    
    	return is_array( $row ) ? $row : [];
    }

    file /wp-content/plugins/meta-box-aio/vendor/meta-box/mb-custom-table/src/Cache.php

Viewing 15 posts - 256 through 270 (of 3,718 total)