I need your help.
I want to embed a HTML controller plugin on a floatbox but i don't know how to know it.
Can you helpme please?
I need your help.
I want to embed a HTML controller plugin on a floatbox but i don't know how to know it.
Can you helpme please?
https://developers.oxwall.com/store/item/695
You actually need to get the content in the php file associated with that and then assign that content to smarty, then you can use the content in the HTML..
For example:
in php file
$apple = "apple";
$this->assign('apple', $apple);
in html file
<div> {$apple} </div>
now if you want to pass that value to js for example you just do this in your html
{literal}
<script type="text/javascript">
var apple = {/literal} '{$apple}' {literal}; //yes its backwards and needs to be
</script>
{/literal}
hope that helps you :)
http://www.ewtnet.com/how-to-add-floatbox-cute-popup-on-oxwall/
hope that helps, i have never done a floatbox so im sorry im not that much help.
But i do know that the skeleton plugin covers the floatbox code if you look how its done.