• Resolved jackandthejuice

    (@jackandthejuice)


    Hi there,

    thanks for this awesome plugin. Unfortunately it doesn’t work for me with the WPRM Recipe Plugin. Only the native embedded Youtube-Videos are processed correctly. The vide which is implemented via the shortcode [wprm-recipe-video] is embedded as before.

    Please feel free to take a look one the attached page. The first video is not processed correctly, the second is fine. Maybe you could help me with my problem?

    Thank you & best regards,
    Jannik

    The page I need help with: [log in to see the link]

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

    (@jackandthejuice)

    Just for your information: I’ve found a solution. Add this to functions.php

    function recipe_video_output( $output, $attributes, $recipe ) {
      if ( function_exists('lyte_parse') ) {
          $output = lyte_parse( $output );
      }
      return $output;
    }
    add_filter( 'wprm_recipe_video_shortcode', 'recipe_video_output', 10, 3 );
    Plugin Author Optimizing Matters

    (@optimizingmatters)

    great job, thanks for providing the solution! ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Conflict with WPRM Recipe Video’ is closed to new replies.