PHPFixing
  • Privacy Policy
  • TOS
  • Ask Question
  • Contact Us
  • Home
  • PHP
  • Programming
  • SQL Injection
  • Web3.0

Sunday, November 6, 2022

[FIXED] how to remove ajax loader from the contact form

 November 06, 2022     ajax, contact, loader, plugins, wordpress     No comments   

Issue

I had one contact form wordpress plugin which loads with ajax so i want to remove that loader type ajax what should be done?


Solution

Inspect the element which you want to remove by going to browser.

If chrome you can directly press ctrl+shift+i and windows will open.

Locate that particular loader you want to remove and you will find it wrapped in div or id.

Find that and put it in css code with this command as shown in example.

.ajaxloader {display:none;}
#ajaxloader {display:none;}

Hope this will works.



Answered By - user5437778
Answer Checked By - Clifford M. (PHPFixing Volunteer)
  • Share This:  
  •  Facebook
  •  Twitter
  •  Stumble
  •  Digg
Newer Post Older Post Home

0 Comments:

Post a Comment

Note: Only a member of this blog may post a comment.

Total Pageviews

Featured Post

Why Learn PHP Programming

Why Learn PHP Programming A widely-used open source scripting language PHP is one of the most popular programming languages in the world. It...

Subscribe To

Posts
Atom
Posts
Comments
Atom
Comments

Copyright © PHPFixing