Viewing 2 replies - 1 through 2 (of 2 total)
  • juvetiko,

    You can do it by following these steps:

    • Go to plugins editor and locate the file named functions.php in “All in One Schema.org Rich Snippets”
    • Now, find the code something like
      $review = $content;
      Delete this line.
    • Now, find the code something like
      return ( is_single() || is_page() ) ? $review : $content;
      edit it as following –

      $review .= $content;
      return ( is_single() || is_page() ) ? $review : $content;

      Don’t miss the .=

    If you need this to be done from us, mail us your WordPress admin user credentials to [email protected]

    Regards

    Thread Starter juvetiko

    (@juvetiko)

    I delete $recipe = $content;

    and add $recipe .= $content; before

    return ( is_single() || is_page() ) ? $recipe : $content;

    and it’s working , thanks guys for quick help .

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Before post’ is closed to new replies.