Hi,
Thanks for an extremely useful module!

Because of the apachesolr_views module, I need to use Views 3.
Upgrading to any Views 3 release breaks any views with embedded forms. Exposed filters will display, but nothing else.

Comments

meba’s picture

Hi,

I didn't check Views 3 compatibility yet, I expected that it won't work. Unfortunately, my free time doesn't allow me to fix that now unless the feature is sponsored.

I will keep this issue open, hoping somebody will post a patch.

Dimonka’s picture

I made the embed form working in Views 3. I do not remember all changes, because I did few changes in the module besides compatibility. But for sure I changed "views_embed_form.views.inc" like that:

$data['views_embed_form']['null'] = array(
      'title' => t('Form'),
      'help' => t("Form embedded with a row display of this view."),
      'field' => array(
        'handler' => 'views_handler_field_views_embed_form',
        'notafield' => TRUE, // <==================
        'click sortable' => FALSE,
        ),
      );

Please let me know if the module still does not work.

geekmuse’s picture

@Dimonka,

I too am using Views 3. I made the alteration you suggested, but the only result was that my view no longer appeared on the page where I could previously view it. Would you mind posting your other module files so perhaps we could take a look at the other changes you made to find out what other alterations may be necessary to make this compatible -- I would be glad to submit feedback towards the effort of creating a Views 3 compatible version of this module.

Thanks,
Brad