• Resolved scottge

    (@scottge)


    I have a multisite wordpress. I installed and activated pixtypes. In the theme, I set up the metaboxes as below. The metaboxes successfully appears on my main site in the multisite., but none of the sub sites shows the metabox.

    $pixtypes_conf_settings = array(
    			'first_activation' => true,
    			'metaboxes'        => array(
    				'_job_listing_the_aside' => array(
    					'id'         => 'job_listing_aside',
    					'title'      => esc_html__( 'Gallery Images', 'mvp' ),
    					'pages'      => array( 'job_listing' ), // Post type
    					'context'    => 'side',
    					'priority'   => 'low',
    					'show_names' => true, // Show field names on the left
    					'fields'     => array(
    						array(
    							'name' => esc_html__( 'Gallery Image', 'mvp' ),
    							'id'   => 'main_image',
    							'type' => 'gallery',
    						),
    					)
    				),

    https://wordpress.org/plugins/pixtypes/

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter scottge

    (@scottge)

    btw, I verfied that in the subsites, pixtypes_themes_settings is set correctly in the options table.

    Plugin Author Andrei Lupu

    (@euthelup)

    Hello,

    The thing is that PixTypes is working with blog options and for now you need to activate the plugin for every individual blog you have.

    I will try to make it work as a “Network Activated” Plugin, but for now, make it active for every blog.

    Thanks,
    Andrei

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘PixTypes does not work for multisite wordpress’ is closed to new replies.