Conversation
supportHello, 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/
No comments were stored for this source.