View cus.js
let myTitles = Array.prototype.slice.apply(document.querySelectorAll("h2.woocommerce-loop-product__title")); | |
const searchTerm = '('; | |
// console.log( myTitles ); | |
const regExp = /\(([^)]+)\)/; | |
myTitles.forEach((myTitles) => { | |
//console.log("apply worked"); | |
if( myTitles.innerHTML.indexOf(searchTerm) > -1 ) { | |
// console.log('yep'); |
View delete-post-revisions.sql
DELETE a,b,c | |
FROM wp_posts a | |
LEFT JOIN wp_term_relationships b ON (a.ID = b.object_id) | |
LEFT JOIN wp_postmeta c ON (a.ID = c.post_id) | |
WHERE a.post_type = 'revision' |
View force-https.htaccess
RewriteEngine On | |
RewriteCond %{SERVER_PORT} 80 | |
RewriteRule ^(.*)$ https://www.example.com/$1 [R,L] |
View google-captcha-enable-submit.html
<script type="text/javascript" language="JavaScript"> | |
// Callback to get the button working. | |
function enableBtn1(){ | |
document.getElementById("button1").disabled = false; | |
} | |
function enableBtn2(){ | |
document.getElementById("button2").disabled = false; | |
} | |
</script> |
View google-captcha-render.html
<script type="text/javascript" language="JavaScript"> | |
// Call to rendor the captcha | |
var recaptcha1; | |
var recaptcha2; | |
var myCallBack = function() { | |
//Render the recaptcha1 on the element with ID "recaptcha1" | |
recaptcha1 = grecaptcha.render('recaptcha1', { | |
//'sitekey' : '6LeIxAcTAAAAAJcZVRqyHh71UMIEGNQ_MXjiZKhI', //test key | |
'sitekey' : 'YOUR_SITE_KEY', // production |
View google-captcha-form.html
<div class="form-wrap"> | |
<!-- Form 1 --> | |
<form id="form-1"> | |
<!-- | |
Other form elements... | |
--> | |
<!-- insert the google captcha div with the ID of "recaptcha1" --> | |
<div id="recaptcha1" class="googlecapt"></div> | |
<!-- Give your submit button an ID of "button1" --> |
View google-captcha-v2.html
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Google Captcha v2</title> | |
<script type="text/javascript" language="JavaScript"> | |
// Callback to get the button working. | |
function enableBtn1(){ | |
document.getElementById("button1").disabled = false; |
NewerOlder