Forum Replies Created
-
AuthorPosts
-
dwcouch
ParticipantPlease provide more information on performance and MetaBox. I have found significant slow downs while using Views Is this also to be expected?
Perhaps Builder and Views are best for prototyping only - but for performant templates do we need to build custom?
Thank you.
~DNovember 13, 2024 at 10:50 PM in reply to: ✅CPT with taxonomy, custom field with image attached to taxonomy #46929dwcouch
ParticipantI too am adding an image field to a custom taxonomy. The field winds up near the bottom of the edit screen when adding or editing a term within the taxonomy. Is there a way to add a sidebar or move the location to display the field after or before other native fields?
dwcouch
ParticipantHello - Thank you, as always, for the great help and documentation.
I attempted to use this function for adding the featured image to a CPT added via MetaBox.
The column simply does not show if I add any value to$position =
~DavidMetaBox (Version 5.6.3)
MB Admin Columns (Version 1.6.0)/* Add Featured Images to Admin Columns * https://docs.metabox.io/extensions/mb-admin-columns/ */ add_action( 'admin_init', 'prefix_add_custom_columns', 20 ); function prefix_add_custom_columns() { class Prefix_Custom_Admin_Columns extends \MBAC\Post { public function columns( $columns ) { $columns = parent::columns( $columns ); $position = ''; $target = ''; $this->add( $columns, 'featured_image', 'Logo', $position, $target ); // Add more if you want return $columns; } public function show( $column, $post_id ) { switch ( $column ) { case 'featured_image': the_post_thumbnail( [40, 40] ); break; // More columns } } } new Prefix_Custom_Admin_Columns( 'partner', array() ); }dwcouch
ParticipantI too Purchased the LifeTime Bundle: Nov 27, 2017.
I see this message on sites I'm using Meta Box on:
Warning! Your license key for Meta Box is invalid or expired. Please fix it or renew to receive automatic updates and premium support.
In my account I see the Renew buttons for the Developer Bundle and MB Term Meta.
dwcouch
ParticipantNVM 😉 Found the other threads on the same issue.
Performed manual update.
All better now.
-
AuthorPosts