Skip to main content

Featured

How To Remove JotForm Branding (With Using Code)

 1. Include the latest jQuery file in your functions.php file: Script Code (Open functions.php file and include this script) : function jquery_cdn_script() {        wp_enqueue_script( 'jquery-script', 'https://code.jquery.com/jquery-3.6.0.min.js', array(), '1.0.0', true ); } add_action( 'wp_enqueue_scripts', 'jquery_cdn_script' ); 2. Now after inserting the above code. Open the footer.php file and copy paste the below code just before the wp_footer() function. The reason why we are inserting after the wp_footer() function because it loads all of the JS scripts in to your theme. So make sure jQuery cdn  file  get loads first and then it will run our below JS Script. Code: <script> var $ = jQuery.noConflict(); jQuery(document).ready(function(jQuery) { "use strict"; $('iframe').contents().find("head").append($("<style type='text/css'>  div.formFooter{ display:none !important; } .jf-branding{ disp...

Adding Icons in your page

 In this article we will take a look about how to add fontawesome icons and material icons from google fonts library in your HTML page:

Adding Font awesome Icons:

To add font awesome icons first we need to attach the font awesome CSS file.

CSS file code:  <link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css" rel="stylesheet" />

Attach the above code in your <head> section of your HTML page.

Now open the font awesome library: https://fontawesome.com/v4.7.0/icons/

Click on any icon you want to add in your site. Then copy this block of code


And paste it in <body> section of your HTML page.

Now save the file and check the page in browser.


Adding Material Icons:

To add material icons first we need to attach the material icon font family file.

Font family code:  <link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet" />

Attach the above code in your <head> section of your HTML page.

Now open the material icons library: https://fonts.google.com/icons?selected=Material+Icons

Click on any icon you want to add in your site. Then copy this block of code from the sidebar:


And paste it in <body> section of your HTML page.

Now save the file and check the page in browser.


Full Tutorial:



Comments

Popular Posts