Pricing Table & Progress Bar Part1

Pricing Table & Progress Bar Part1

Steps for setup Pricing Table & Progress Bar

 

1. Download Pricing Table & Progress Bar Part1.zip File.

2. Unzip file.

Pricing Table & Progress Bar Part1

3. Import “Pricing Table Style1.json” and “Progress Bar Style1.json” file on Divi -> Divi Library -> Import & Export Button

Pricing Table & Progress Bar Part1

4. After import both layout you can see in below

Pricing Table & Progress Bar Part1

5. Add New Page and Click on “Add From Library”

Pricing Table & Progress Bar Part1

6.Select One of layout

Pricing Table & Progress Bar Part1

7. After select layout

Pricing Table & Progress Bar Part1

8. Add “PricingTableProgressBar_part1.css” file on your child theme and Enqueue your style using wordpress function wp_enqueue_style

OR

Copy CSS from file and PASTE on Theme Option -> General -> Custom CSS

9. Publish Page and see on front end.

Pricing Table Effect 1
Pricing Table & Progress Bar Part1
Progress Bar Effect 1
Pricing Table & Progress Bar Part1

9. Edit Content on Text Module

Pricing Table & Progress Bar Part1
Pricing Table & Progress Bar Part1

Box Hover Effects – Part 1

Box Hover Effects – Part 1

Steps for setup box hover effects

 

1. Download Box Hover Effects Part1.zip File.

2. Unzip file.

Box Hover Effects - Part 1

3. Import “Box Hover Effect 1.json” and “Box Hover Effect 2.json” file on Divi -> Divi Library -> Import & Export Button

Box Hover Effects - Part 1

4. After import both layout you can see in below

Box Hover Effects - Part 1

5. Add New Page and Click on “Add From Library”

Box Hover Effects - Part 1

6.Select One of layout

Box Hover Effects - Part 1

7. After select layout

Box Hover Effects - Part 1

8. Add “box_hover_part1.css” file on your child theme and Enqueue your style using wordpress function wp_enqueue_style

OR

Copy CSS from file and PASTE on Theme Option -> General -> Custom CSS

9. Publish Page and see on front end.

Effect 1
Box Hover Effects - Part 1
Effect 2
Box Hover Effects - Part 1

9. Edit Content on Text Module

Box Hover Effects - Part 1

How to learn WordPress

How to learn WordPress

How to learn WordPress

How to Enable/Disable All WordPress Automatic Updates

Disable WordPress automatic updates

Add below code on wp-config.php file on root

define( 'WP_AUTO_UPDATE_CORE', false );

Enable WordPress automatic updates

Add below code on wp-config.php file on root

define('WP_AUTO_UPDATE_CORE', true);

Disable Plugin & Theme Updates

Add below code on functions.php file on your parent/child theme

add_filter( 'auto_update_plugin', '__return_false' ); add_filter( 'auto_update_theme', '__return_false' );

Enable Plugin & Theme Updates

Add below code on functions.php file on your parent/child theme

add_filter( 'auto_update_plugin', '__return_true' ); add_filter( 'auto_update_theme', '__return_true' ); Reference : https://codex.wordpress.org/Configuring_Automatic_Background_Updates