koreng Posted November 23, 2015 Share Posted November 23, 2015 (edited) I unable to see my send button in contact form, but when i try in my localhost i can see the send button. http://www.makanku.com/hubungi-kami so it can be see in localhost but not in hosting. any sugestion, Please help. Thanks, Aditya Edited November 23, 2015 by koreng (see edit history) Link to comment Share on other sites More sharing options...
Knowband Plugins Posted November 23, 2015 Share Posted November 23, 2015 Send button is not visible because there is inline CSS display:none on it. <div class="submit" style="display: none;"> <button type="submit" name="submitMessage" id="submitMessage" class="button btn btn-default button-medium" style=" display: none;"><span>Send<i class="icon-chevron-right right"></i></span></button> </div> Edit code and remove style="display: none;" from both places in above code. Link to comment Share on other sites More sharing options...
koreng Posted November 23, 2015 Author Share Posted November 23, 2015 Send button is not visible because there is inline CSS display:none on it. <div class="submit" style="display: none;"> <button type="submit" name="submitMessage" id="submitMessage" class="button btn btn-default button-medium" style=" display: none;"><span>Send<i class="icon-chevron-right right"></i></span></button> </div> Edit code and remove style="display: none;" from both places in above code. Here are my code <div class="submit"> <button type="submit" name="submitMessage" id="submitMessage" class="button btn btn-default button-medium"><span>{l s='Send'}<i class="icon-chevron-right right"></i></span></button> </div> There is no code "style=" display: none;"" as i mention above, i can see send button in my localhost, but when i uplod it to hosting this send button was gone. Link to comment Share on other sites More sharing options...
Knowband Plugins Posted November 23, 2015 Share Posted November 23, 2015 <script type="text/javascript"> $(document).ready(function(){ // Simple call $('.submitMessage, #submitMessage,.contact-form-box .submit').css('display','none'); // More complex call $('.QapTcha').QapTcha({ autoSubmit : true, disabledSubmit : true, autoRevert : true, txtLock : "Bentuk terkunci, slide untuk membuka", txtUnlock : "Bentuk Unlocked", PHPfile : "/modules/slidecaptcha/php/Qaptcha.jquery.php" }); }); </script> Above script is causing the issue which is being added by slidecaptcha module. Try to disable this module. Am not sure why, but this module is hiding this button. Link to comment Share on other sites More sharing options...
koreng Posted November 23, 2015 Author Share Posted November 23, 2015 <script type="text/javascript"> $(document).ready(function(){ // Simple call $('.submitMessage, #submitMessage,.contact-form-box .submit').css('display','none'); // More complex call $('.QapTcha').QapTcha({ autoSubmit : true, disabledSubmit : true, autoRevert : true, txtLock : "Bentuk terkunci, slide untuk membuka", txtUnlock : "Bentuk Unlocked", PHPfile : "/modules/slidecaptcha/php/Qaptcha.jquery.php" }); }); </script> Above script is causing the issue which is being added by slidecaptcha module. Try to disable this module. Am not sure why, but this module is hiding this button. Thanks for your help, its work Link to comment Share on other sites More sharing options...
Knowband Plugins Posted November 23, 2015 Share Posted November 23, 2015 Glad, it worked. Link to comment Share on other sites More sharing options...
Knowband Plugins Posted November 23, 2015 Share Posted November 23, 2015 Glad, it worked. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now