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
<?php | |
// child here | |
function ptc_my_theme_enqueue_styles() | |
{ | |
$parent_style = "parent-style"; // | |
//wp_enqueue_style( $parent_style, get_template_directory_uri() . '/style.css' ); | |
wp_enqueue_style( | |
"child-style", | |
get_stylesheet_directory_uri() . "/style.css", |
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
<?php | |
if ( ! defined( 'ABSPATH' ) ) { | |
exit; // Exit if accessed directly. | |
} | |
class RHEA_Agents_Widget extends \Elementor\Widget_Base { | |
public function get_name() { | |
return 'ere-agents-widget'; | |
} |
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
this.markers = []; | |
data.forEach(function(entry) { | |
if (entry.location === null) return | |
marker = new google.maps.Marker({ | |
position: { | |
lat: location.location.coordinates[0], | |
lng: location.location.coordinates[1] | |
} | |
}); | |
markers.push(marker); |
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
The Ultimate List Of Sites With Free Stock Photos | |
https://visualhunt.com/ | |
https://unsplash.com/ | |
https://www.pexels.com/ | |
https://pixabay.com/ | |
http://www.freeimages.com/ | |
http://images.superfamous.com/ | |
https://picjumbo.com/ | |
http://imcreator.com/free |
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
.btn{ | |
border: none !important; | |
border-radius: 2px; | |
box-shadow: none !important; | |
background-color: #d89928; | |
color: #fff; | |
} | |
.btn:hover{ | |
background-color: #221F1F; | |
color:#fff; |
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
Step 1: Go To received, Click request: amount=10000, Label: mn1 | |
Step 2: Go to send, Paste that address, Click send guap. | |
Step 3: Go to: https://guapexplorer.com/ Enter your address to find you transection. | |
Step 4: In your wallet, open Settings -> Debug -> Console and run the following command to get your masternode key: | |
createmasternodekey | |
Run this command to get your output information: | |
getmasternodeoutputs |
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
RewriteEngine on | |
RewriteBase / | |
RewriteRule ^(contact|about|faq|affiliate|testimonials|login|register|eform|track|logout)?$ index.php?a=$1 [L] | |
RewriteRule ^page/(.*)?$ index.php?a=page&prefix=$1 [L] | |
RewriteRule ^account/(exchanges|verification|testimonials|submit_testimonial|referrals|wallet|settings|withdrawals|withdrawal)?$ index.php?a=account&b=$1 [L] | |
RewriteRule ^account/exchanges/(.*)?$ index.php?a=account&b=exchanges&page=$1 [L] | |
RewriteRule ^account/exchange/(.*)?$ index.php?a=account&b=exchange&id=$1 [L] | |
RewriteRule ^account/referrals/(.*)?$ index.php?a=account&b=referrals&page=$1 [L] | |
RewriteRule ^account/testimonials/(.*)?$ index.php?a=account&b=testimonials&page=$1 [L] | |
RewriteRule ^account/delete_testimonial/(.*)?$ index.php?a=account&b=delete_testimonial&id=$1 [L] |
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
public void show(){ | |
for(int i : stack){ | |
System.out.print(i +" "); | |
} | |
for( int i = 0; i < stack.length; i++){ | |
System.out.print(stack[i] +" "); | |
} | |
System.out.println(""); | |
} |
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
private function get_customer_data() { | |
$customer_key = defined( 'WP_ROCKET_KEY' ) ? WP_ROCKET_KEY : get_rocket_option( 'consumer_key', '' ); | |
$customer_email = defined( 'WP_ROCKET_EMAIL' ) ? WP_ROCKET_EMAIL : get_rocket_option( 'consumer_email', '' ); | |
$response = 200; | |
$customer_data = json_decode( wp_remote_retrieve_body( $response ) ); | |
$customer_data->licence_account = 'Imran Hoshain'; |