• Hello,

    Just to inform you some typos on your code. πŸ™‚

    • On edit.php line 91.

      Recent:
      <td><input type="text" name="experience[stare]" class="long" value="" placeholder="Enter State"/></td>

      Correction:
      <td><input type="text" name="experience[state]" class="long" value="" placeholder="Enter State"/></td>

      You wrote “stare” instead of “state”, so state data will go nowhere & wouldn’t show up.

    • On view.php line 60.

      Recent:
      <span class="location info"><?php echo $exp['city'].', '.$exp['state'].' '.$exp['country']?></span>

      Correction:
      <span class="location info"><?php echo $exp['city'].', '.$exp['state'].', '.$exp['country']?></span>

      Just forgot to add coma (,) between state & country.

    That’s all from me. Anyway, what a nice plugin… keep up the good work! πŸ™‚

    Thanks,
    Bukrie
    http://Jakartanese.com & http://IdEA.my.id

    http://wordpress.org/extend/plugins/bp-resume-page/

  • The topic ‘Some Typos on Code :-)’ is closed to new replies.