Forum Replies Created
-
AuthorPosts
-
August 25, 2024 at 2:40 AM in reply to: ✅Need help getting Relevanssi to index custom fields in custom database table #46238
Touchdown Tech
ParticipantThe code provided in the YouTube video used by ACF Custom Tables didn't work. Relevanssi support was quick to respond and they had a code snippet that did work! Here it is below. I asked for additional help supporting multiple custom tables and custom fields within those tables.
add_filter( 'relevanssi_content_to_index', function( $content, $post_object ) { $args = [ 'storage_type' => 'custom_table', 'table' => 'table_name', ]; $content .= ' ' . rwmb_meta( 'field_name', $args, $post_object->ID ); return $content; }, 10, 2 );May 15, 2024 at 6:58 PM in reply to: WooCommerce High-Performance Order Storage (HPOS) Support and Compatibility #45431Touchdown Tech
ParticipantThis is very important. Please add support for Woo HPOS.
March 21, 2024 at 12:29 AM in reply to: ✅Query CPT with CF value stored in custom table (Bricks Query Editor) #44947Touchdown Tech
ParticipantThanks for the response. I decided to add a new field group that uses the postmeta table so I can use the meta query parameters set within Bricks's query loop builder.
Touchdown Tech
ParticipantHey Anh, I'm desparate for support for Meta Box Custom Tables to work with WP All Export. I've tried a custom function but cannot get it to work.
Is Meta Box Custom Tables compatible with WP All Export?
Any help with this would be huge!
Thanks,
Touchdown Tech
ParticipantThanks Peter!
This issue was resolved by using single quotes instead of double quotes in the shortcode.
Touchdown Tech
ParticipantI'm having the exact same issue
When seeking help with this issue, you may be asked for some of the following information:
WordPress version 6.0.3
Active theme: Bricks Child Theme (version 1.1)
Current plugin: Meta Box AIO (version 1.16.7)
PHP version 8.0.25Error Details
=============
An error of type E_ERROR was caused in line 111 of the file /www/hoistzone_673/public/wp-content/plugins/meta-box-aio/vendor/meta-box/mb-custom-post-type/src/Edit.php. Error message: Uncaught Error: Class "RWMB_Update_Option" not found in /www/hoistzone_673/public/wp-content/plugins/meta-box-aio/vendor/meta-box/mb-custom-post-type/src/Edit.php:111
Stack trace:
#0 /www/hoistzone_673/public/wp-content/plugins/meta-box-aio/vendor/meta-box/mb-custom-post-type/src/Edit.php(24): MBCPT\Edit->is_premium_user()
#1 /www/hoistzone_673/public/wp-includes/class-wp-hook.php(309): MBCPT\Edit->register_upgrade_meta_box('mb-post-type')
#2 /www/hoistzone_673/public/wp-includes/class-wp-hook.php(331): WP_Hook->apply_filters(NULL, Array)
#3 /www/hoistzone_673/public/wp-includes/plugin.php(476): WP_Hook->do_action(Array)
#4 /www/hoistzone_673/public/wp-admin/includes/meta-boxes.php(1599): do_action('add_meta_boxes', 'mb-post-type', Object(WP_Post))
#5 /www/hoistzone_673/public/wp-admin/edit-form-advanced.php(271): register_and_do_post_meta_boxes(Object(WP_Post))
#6 /www/hoistzone_673/public/wp-admin/post.php(206): require('/www/hoistzone_...')
#7 {main}
thrown -
AuthorPosts