This file contains 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
// 03. Change All Gravity Forms Buttons to Branded Button | |
// ============================================================================= | |
add_filter( 'gform_submit_button_1', 'form_submit_button', 10, 2 ); | |
function form_submit_button( $button, $form ) { | |
return " | |
<button class='button gform_button e21-23 x-anchor x-anchor-button' id='gform_submit_button_{$form['id']}' tabindex='0' style='outline: currentcolor none medium;'> | |
<span class='x-anchor-content'> | |
<span class='x-graphic' aria-hidden='true'> | |
<i class='x-icon x-graphic-icon x-graphic-primary' aria-hidden='true' data-x-icon-s=''></i> |
This file contains 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 redirect_page() { | |
if (isset($_SERVER['HTTPS']) && | |
($_SERVER['HTTPS'] == 'on' || $_SERVER['HTTPS'] == 1) || | |
isset($_SERVER['HTTP_X_FORWARDED_PROTO']) && | |
$_SERVER['HTTP_X_FORWARDED_PROTO'] == 'https') { | |
$protocol = 'https://'; | |
} | |
else { | |
$protocol = 'http://'; |
This file contains 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
<meta name="title" content="Siam Tek Web Design Group - Tampa Bay Website Design & Digital Marketing"> | |
<meta name="description" content="Siam Tek Web Design Group is a digital agency that specializes in generating revenue for clients through lead generation, client acquisition, client marketing strategy and online automation."> | |
<meta name="keywords" content="Tampa Bay Website Design, Tampa Bay Digital Marketing, Tampa Bay SEO"> | |
<meta name="robots" content="index, follow"> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> | |
<meta name="language" content="English"> | |
<meta name="revisit-after" content="7 days"> | |
<meta name="author" content="Diego Lucero"> |
This file contains 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 | |
// VIEWS/GLOBAL/_BRAND.PHP | |
// ----------------------------------------------------------------------------- | |
// Outputs the brand. | |
// ============================================================================= | |
$site_name = get_bloginfo( 'name' ); | |
$site_description = get_bloginfo( 'description' ); | |
$logo = x_make_protocol_relative( x_get_option( 'x_logo' ) ); |
This file contains 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
/* | |
No need for style tags here; | |
simply get started by writing | |
CSS! Watch as your changes | |
are reflected live in the | |
preview area. Have fun! | |
*/ | |
.woocommerce-MyAccount-navigation-link a { | |
margin: 5px 5px 0 0; | |
padding: 15px; |
This file contains 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
<h1>Countdown Clock</h1> | |
<div id="clockdiv"> | |
<div> | |
<span class="days"></span> | |
<div class="smalltext">Days</div> | |
</div> | |
<div> | |
<span class="hours"></span> | |
<div class="smalltext">Hours</div> | |
</div> |
This file contains 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
on_sent_ok: "location.replace('http://www.YOURSITE.com/checkout/?add-to-cart=ID');" |
This file contains 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
// == LANDING PAGES | |
if ( ! function_exists('custom_post_type') ) { | |
// Register Custom Post Type | |
function custom_post_type() { | |
$labels = array( | |
'name' => _x( 'Landing Pages', 'Post Type General Name', 'text_domain' ), | |
'singular_name' => _x( 'Landing Page', 'Post Type Singular Name', 'text_domain' ), | |
'menu_name' => __( 'Landing Pages', 'text_domain' ), |
This file contains 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
// after form is submitted, redirect to this domain. | |
on_sent_ok: "location = 'https://yourdomain.com/your-thank-you-page/';" |
This file contains 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
<p>©2012<span id="autodate"></span> Siam Tek is a Trademark of Siam Tek Web Design Group, LLC, <br>POWERED BY <a href="//siamtek.com/solutions" title="Siam Tek Web Design Group - Digital Marketing for Online Businesses">Siam Tek - Tampa Bay Digital Marketing.</a></p> |
NewerOlder