I have a array with list of sites, I'm coding a step by step form using http://codepad.agiletoolkit.org/newsletter example.
In the second step I put Like Buttons using the following code:
$attr = array ( 'data-send' => FALSE, 'data-layout' => 'button_count', 'data-width' => 100, 'data-show-faces' => FALSE ); foreach($this->sites as $k => $site) { $div = $form->add('View_HtmlElement')->setElement('div')->set(NULL); $attr['data-href'] = $site; $div->addClass('fb-like'); $div->setAttr($attr); }
This works good when I access directly, but when I try to access via next button, the Like Buttons doesn't load.
Any solution for this?