serhash Posted February 22, 2011 Share Posted February 22, 2011 Hello I have a joomla 1.6 When i try to use the "Integration Code" or use the widgets, don´t works. If you type a domain name and go search, don´t happened nothing. I insert this code: <form action="http://www.barnahosting.es/clientes/domainchecker.php" method="post"> <input type="hidden" name="token" value="7669842efb01a1a3e122433283ab33dc3ea2372e" /> <input type="hidden" name="direct" value="true" /> Domain: <input type="text" name="domain" size="20" /> <select name="ext"> <option>.com</option> <option>.net</option> <option>.info</option> <option>.org</option> <option>.es</option> </select> <input type="submit" value="Go" /> </form> But when i save the article or the module, the action to my domain disappears. And this is the html results. <form method="post"> <input name="token" type="hidden" value="7669842efb01a1a3e122433283ab33dc3ea2372e" /> <input name="direct" type="hidden" value="true" /> Domain: <input name="domain" size="20" type="text" /> <select name="ext"> <option>.com</option> <option>.net</option> <option>.info</option> <option>.org</option> <option>.es</option> </select> <input type="submit" value="Go" /> </form> I try with tiny, jck, but dont works Can you help me please! 0 Quote Link to comment Share on other sites More sharing options...
serhash Posted February 23, 2011 Author Share Posted February 23, 2011 No answers? No idea? 0 Quote Link to comment Share on other sites More sharing options...
Markus22 Posted February 23, 2011 Share Posted February 23, 2011 deactivate the WYSIWYG in the joomla configuration and then try again! the editor sometimes "clean" the code and the code don't work... 0 Quote Link to comment Share on other sites More sharing options...
jenkisan Posted May 4, 2011 Share Posted May 4, 2011 No enough. You need a module like Jumi or Sourcer (see joomla extensions section) to add code to an article. gl 0 Quote Link to comment Share on other sites More sharing options...
linuxman Posted May 4, 2011 Share Posted May 4, 2011 Install the JCE editor and see the settings inside . 0 Quote Link to comment Share on other sites More sharing options...
barnetpcservices Posted May 5, 2011 Share Posted May 5, 2011 Hello I have a joomla 1.6 When i try to use the "Integration Code" or use the widgets, don´t works. If you type a domain name and go search, don´t happened nothing. I insert this code: <form action="http://www.barnahosting.es/clientes/domainchecker.php" method="post"> <input type="hidden" name="token" value="7669842efb01a1a3e122433283ab33dc3ea2372e" /> <input type="hidden" name="direct" value="true" /> Domain: <input type="text" name="domain" size="20" /> <select name="ext"> <option>.com</option> <option>.net</option> <option>.info</option> <option>.org</option> <option>.es</option> </select> <input type="submit" value="Go" /> </form> But when i save the article or the module, the action to my domain disappears. And this is the html results. <form method="post"> <input name="token" type="hidden" value="7669842efb01a1a3e122433283ab33dc3ea2372e" /> <input name="direct" type="hidden" value="true" /> Domain: <input name="domain" size="20" type="text" /> <select name="ext"> <option>.com</option> <option>.net</option> <option>.info</option> <option>.org</option> <option>.es</option> </select> <input type="submit" value="Go" /> </form> I try with tiny, jck, but dont works Can you help me please! I'm having the same problem with widgets and integration links... Did you find a way to make it work? Can you please share the solution if any? 0 Quote Link to comment Share on other sites More sharing options...
computers.wheneva Posted May 5, 2011 Share Posted May 5, 2011 @Serhas, The easiest way of doing this is going to your module manager and create a custom HTML module with your form code, make sure you give it a prober position_name and module name also disable the title. Then in your template\index.php file add the following line <jdoc:include type="modules" name="position_name" style="xhtml" /> where you would like your form to appear. Hope this helps <<signatures to be set up in your profile>> 0 Quote Link to comment Share on other sites More sharing options...
barnetpcservices Posted May 5, 2011 Share Posted May 5, 2011 @computers.wheneva Thanks for your input. I'm having the same problem, but when I tried your solution and its still the same. I tried with Tiny, JCE editor but no joy Any other suggestions would be much appreciated. Thanks and regards <<signatures to be set up in your profile>> 0 Quote Link to comment Share on other sites More sharing options...
computers.wheneva Posted May 5, 2011 Share Posted May 5, 2011 (edited) @barnetpcservices & @Sherhas If the custom HTML Module does not work, you can try the following Follow these steps exactly : 1. Goto your templates directory 2. Create a directory includes or inc (Up to You) 3. Create a empty .html or .php file (In this case we call it filename.html) 4. Edit the above filename in this case filename.html and the content below 5. Save filename.html Contents of filename.html <form action="http://www.barnahosting.es/clientes/domainchecker.php" method="post"> <input type="hidden" name="token" value="7669842efb01a1a3e122433283ab33dc3ea2372e" /> <input type="hidden" name="direct" value="true" /> Domain: <input type="text" name="domain" size="20" /> <select name="ext"> <option>.com</option> <option>.net</option> <option>.info</option> <option>.org</option> <option>.es</option> </select> <input type="submit" value="Go" /> </form> Now in your template index.php file add the following php code where you would like to have the lookup appear <?php include("includes/filename.html"); ?> That is it, you should now be able to see the domain lookup. Computers Wheneva http://www.wheneva.co.za MonsterPay Gateway (Beta) Sample.zip Edited May 5, 2011 by computers.wheneva Added Samples 0 Quote Link to comment Share on other sites More sharing options...
computers.wheneva Posted May 5, 2011 Share Posted May 5, 2011 Just let us know if it works 0 Quote Link to comment Share on other sites More sharing options...
barnetpcservices Posted May 5, 2011 Share Posted May 5, 2011 @barnetpcservices & @Sherhas If the custom HTML Module does not work, you can try the following Follow these steps exactly : 1. Goto your templates directory 2. Create a directory includes or inc (Up to You) 3. Create a empty .html or .php file (In this case we call it filename.html) 4. Edit the above filename in this case filename.html and the content below 5. Save filename.html Contents of filename.html <form action="http://www.barnahosting.es/clientes/domainchecker.php" method="post"> <input type="hidden" name="token" value="7669842efb01a1a3e122433283ab33dc3ea2372e" /> <input type="hidden" name="direct" value="true" /> Domain: <input type="text" name="domain" size="20" /> <select name="ext"> <option>.com</option> <option>.net</option> <option>.info</option> <option>.org</option> <option>.es</option> </select> <input type="submit" value="Go" /> </form> Now in your template index.php file add the following php code where you would like to have the lookup appear <?php include("includes/filename.html"); ?> That is it, you should now be able to see the domain lookup. Computers Wheneva http://www.wheneva.co.za MonsterPay Gateway (Beta) That works like a charm... Now I have to do the same for other widgets as well... Thank you very much... 0 Quote Link to comment Share on other sites More sharing options...
barnetpcservices Posted May 5, 2011 Share Posted May 5, 2011 Just let us know if it works Thank you very much for providing a solution that works... Is there a way to display the Pricing Table in an Article? 0 Quote Link to comment Share on other sites More sharing options...
barnetpcservices Posted May 5, 2011 Share Posted May 5, 2011 I tried the solution from this link http://forum.joomla.org/viewtopic.php?p=2390689 The forms are working in Articles now Don't forget to set the Text Filter to No Filter under Article Manager > Options But the problem is, WHMCS Widgets are still not working 0 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.