This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1. call scrollup.js on your file | |
2. call css code on style.css | |
3. active scroll up |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
global $woocommerce; | |
//remove breadcrumb | |
remove_action('woocommerce_before_main_content','woocommerce_breadcrumb',20); | |
// Breadcumbs custom style(div or ul) | |
add_filter( 'woocommerce_breadcrumb_defaults', 'flipmart_woocommerce_breadcrumbs' ); | |
function flipmart_woocommerce_breadcrumbs() { | |
return array( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*mrm-button */ | |
div.owl-carousel.mrm-button {} | |
div.owl-carousel.mrm-button div.owl-controls {} | |
div.owl-carousel.mrm-button div.owl-controls div.owl-pagination{} | |
div.owl-carousel.mrm-button div.owl-controls div.owl-pagination div {} | |
div.owl-carousel.mrm-button div.owl-controls div.owl-pagination div.owl-page:hover, div.owl-carousel.mrm-button div.owl-controls div.owl-pagination div.active {} | |
/* | |
$(".client-carousel").owlCarousel({ | |
singleItem:true, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
---------------------------------------------------------------------------------------------- | |
Database Connection | |
---------------------------------------------------------------------------------------------- | |
// Error Reporting Turn On | |
ini_set('error_reporting', E_ALL); | |
//error_reporting('0'); | |
// Setting up the time zone |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Document</title> | |
</head> | |
<body> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def | |
jswing | |
easeInQuad | |
easeOutQuad | |
easeInOutQuad | |
easeInCubic | |
easeOutCubic | |
easeInOutCubic | |
easeInQuart | |
easeOutQuart |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
global $product; | |
global $woocommerce; | |
$idd = get_the_ID(); | |
//Displaying a WooCommerce product price: | |
$sale_price = $product->get_sale_price(); | |
$regular_price = $product->get_regular_price(); | |
// Displaying a WooCommerce price Currency: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>AJAX Contact Form Demo</title> | |
<link rel="stylesheet" href="style.css"> | |
</head> | |
<body> | |
<div id="page-wrapper"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# BEGIN WordPress | |
php_value upload_max_filesize 128M | |
php_value post_max_size 128M | |
php_value max_execution_time 600 | |
php_value max_input_time 600 | |
<IfModule mod_rewrite.c> | |
RewriteEngine On | |
RewriteBase /2018/edd/ |