Support Forum » User Profile

Forum Replies Created

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • in reply to: Performance issues with large amount of custom fields #47766
    dwcouchdwcouch
    Participant

    Please 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.
    ~D

    dwcouchdwcouch
    Participant

    I 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?

    in reply to: Displaying Featured Image in Admin Columns #35771
    dwcouchdwcouch
    Participant

    Hello - 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 =
    ~David

    MetaBox (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() );
    }
    in reply to: Lifetime Bundle #16005
    dwcouchdwcouch
    Participant

    I 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.

    in reply to: Meta Box AIO - Update Failed (1.4.1 - 1.4.2) #10197
    dwcouchdwcouch
    Participant

    NVM 😉 Found the other threads on the same issue.

    Performed manual update.

    All better now.

Viewing 5 posts - 1 through 5 (of 5 total)