gettickr
Home
Features
PricingHelp
Getting Started
What is gettickr.app?
Free vs. Premium
Create Account
Timer Configuration
Create Countdown (Duration)
Create CountTo (Date)
Customize Design
Preview vs. Renderer
Save & Manage Timers
Remote Control
Streaming Integration
Streaming Platforms Overview
OBS Studio Integration
Streamlabs Integration
XSplit Integration
Website Integration
Website Integration Overview
iFrame Integration
WordPress Integration
Shopify Integration
Wix / Squarespace
Custom HTML Websites
Advanced Features
Timer State & Persistence
Free vs. Premium Timers
FAQ & Troubleshooting
Common Questions
Known Issues
Contact Support
Help Center
/
Website Integration
/
WordPress Integration

Table of Contents

Method 1: WordPress Block Editor (Gutenberg)Method 2: Classic EditorMethod 3: Page Builder PluginsMethod 4: Widget Areas (Sidebar/Footer)Method 5: Shortcodes for ReusabilityPlugin CompatibilityTroubleshooting WordPress IntegrationWordPress MultisiteNext Steps

WordPress Integration

Information
WordPress is the world's most popular CMS, powering over 40% of all websites. Integrating gettickr.app timers into WordPress is straightforward with multiple methods available!

WordPress offers several ways to embed timers, from simple block-based approaches to custom HTML insertion. This guide covers all methods for both modern and classic WordPress installations.

Method 1: WordPress Block Editor (Gutenberg)

Modern WordPress uses the block editor (Gutenberg), which provides a visual interface for building pages and posts.

Step-by-Step Guide

Step 1: Create Your Timer

  1. Go to the Editor
  2. Design and configure your timer
  3. Copy the timer URL from the Renderer section
  4. Keep it handy for the next steps

Step 2: Create iFrame Code

Build your iFrame embed code using your timer URL:

<iframe
  src="https://gettickr.app/r/#YOUR-TIMER-ID"
  width="100%"
  height="400"
  style="border: none; max-width: 1200px; margin: 0 auto; display: block;"
  title="Countdown Timer"
>
</iframe>
Information
Replace YOUR-TIMER-ID with the actual ID from your timer URL. Adjust width and height to match your timer's design dimensions.

Step 3: Add Custom HTML Block

  1. Open the page or post where you want the timer
  2. Click the "+" button to add a new block
  3. Search for "Custom HTML"
  4. Select the "Custom HTML" block

Step 4: Paste Your Code

  1. Click inside the Custom HTML block
  2. Paste your complete iFrame code
  3. The block shows "Custom HTML" while editing
  4. Click "Preview" to see the timer in action

Step 5: Publish

  1. Click "Update" or "Publish" in the top-right
  2. View your page to verify the timer appears correctly
  3. Test on mobile devices or using responsive preview
Tip
You can add multiple Custom HTML blocks on the same page for multiple timers - perfect for comparison or multi-event countdowns!

Block Editor Tips

TipHowBenefit
Center TimerUse "Align Center" buttonProfessional appearance
Full WidthSelect "Full Width" alignmentMaximize impact
Add SpacingInsert Spacer blocks above/belowBetter visual separation
Group with ContentUse Group blockKeep timer with related content
Reusable BlockSave as Reusable BlockUse same timer on multiple pages

Method 2: Classic Editor

If your WordPress site uses the Classic Editor, you can add timers through the HTML editor.

Step-by-Step Guide

  1. Open Your Page/Post in the Classic Editor
  2. Click the "Text" Tab (switches from Visual to HTML mode)
  3. Find the Location where you want the timer in your HTML
  4. Paste Your iFrame Code at that location
  5. Switch to "Visual" Tab to preview (optional)
  6. Update/Publish your page
Warning
Always paste iFrame code in the Text tab, not the Visual tab. If you paste in Visual mode, WordPress will display the code as text instead of rendering the timer!

Classic Editor Code Example

<h2>Event Countdown</h2>

<iframe
  src="https://gettickr.app/r/#YOUR-TIMER-ID"
  width="800"
  height="400"
  frameborder="0"
  style="border: none; display: block; margin: 20px auto;"
>
</iframe>

<p>Join us for the event of the year!</p>

Method 3: Page Builder Plugins

Many WordPress sites use page builders for visual design. Here's how to add timers to popular page builders:

Elementor

StepAction
1Open page in Elementor editor
2Search for "HTML" widget in left panel
3Drag HTML widget to desired location
4Paste iFrame code into the HTML Code field
5Adjust widget width/alignment as needed
6Click "Update" to save

Elementor Pro Tip:

Use Elementor's "Custom Positioning" to overlay timers on images or sections
for creative hero designs!
Tip
In Elementor, you can apply animations to the HTML widget containing your timer for eye-catching entrance effects!

Divi Builder

StepAction
1Enable Visual Builder on your page
2Click "+" to add a new module
3Search for and select "Code" module
4Paste iFrame code in the code field
5Configure module spacing/alignment
6Click checkmark to save

WPBakery Page Builder

StepAction
1Open page in WPBakery editor
2Click "Add Element"
3Select "Raw HTML" or "Raw JS"
4Paste iFrame code
5Save and update page

Beaver Builder

StepAction
1Launch Beaver Builder on your page
2Open Modules tab
3Drag "HTML" module to your layout
4Paste iFrame code in HTML field
5Click "Done" and publish

Page Builder Comparison

Page BuilderModule NameCustom StylingResponsive ControlDifficulty
ElementorHTML Widget★★★★★★★★★★Easy
DiviCode Module★★★★★★★★★☆Easy
WPBakeryRaw HTML★★★☆☆★★★☆☆Easy
Beaver BuilderHTML Module★★★★☆★★★★☆Easy
OxygenCode Block★★★★★★★★★★Medium
Information
All major page builders support HTML/code modules, making timer integration universal regardless of which builder you use!

Method 4: Widget Areas (Sidebar/Footer)

For timers that appear across multiple pages (sidebars, footers, headers):

Step-by-Step Guide

  1. Go to Dashboard → Appearance → Widgets
  2. Find Target Widget Area (e.g., "Sidebar", "Footer")
  3. Click "+" to Add Block or "Add a Widget"
  4. Search for "Custom HTML"
  5. Add Custom HTML Widget
  6. Paste Your iFrame Code
  7. Add Title (optional, e.g., "Event Countdown")
  8. Click "Update" or "Save"
Tip
Using widgets for timers makes them appear site-wide without editing every page individually - perfect for limited-time promotions!

Widget Sizing Recommendations

Widget LocationRecommended WidthRecommended HeightNotes
Sidebar100%300-400pxCompact, vertical-friendly
Footer100%200-300pxWide, short format
Header100%150-200pxVery compact
Below Content100%400-600pxFull-featured display

Method 5: Shortcodes for Reusability

Create a custom shortcode to use the same timer across multiple pages easily.

Creating a Shortcode

Add to your theme's functions.php or create a custom plugin:

// Add to functions.php
function tickr_countdown_shortcode($atts) {
    $atts = shortcode_atts(array(
        'id' => '',
        'width' => '100%',
        'height' => '400',
    ), $atts);

    if (empty($atts['id'])) {
        return '<p>Please provide a timer ID</p>';
    }

    $output = '<iframe ';
    $output .= 'src="https://gettickr.app/r/#' . esc_attr($atts['id']) . '" ';
    $output .= 'width="' . esc_attr($atts['width']) . '" ';
    $output .= 'height="' . esc_attr($atts['height']) . '" ';
    $output .= 'style="border: none; max-width: 100%;" ';
    $output .= 'title="Countdown Timer">';
    $output .= '</iframe>';

    return $output;
}
add_shortcode('tickr', 'tickr_countdown_shortcode');

Using Your Shortcode

Once added, use the shortcode in any page, post, or widget:

Basic Usage:

[tickr id="YOUR-TIMER-ID"]

With Custom Dimensions:

[tickr id="YOUR-TIMER-ID" width="800" height="500"]

Multiple Timers:

<h3>Event 1</h3>
[tickr id="timer-1"]

<h3>Event 2</h3>
[tickr id="timer-2"]
Premium Feature
Premium users can update timer designs without changing shortcode - the shortcode always shows the latest version of your saved timer!

Shortcode Benefits

BenefitDescription
ReusabilityUse same timer on unlimited pages
Easy UpdatesChange code once, updates everywhere
Clean ContentSimple shortcode instead of long HTML
Parameter ControlCustomize dimensions per page
Non-technicalEasier for content editors to use

Plugin Compatibility

Common Plugin Issues

Plugin TypePotential IssueSolution
Security PluginsMay block iFramesWhitelist gettickr.app domain
Caching PluginsMay cache old timerExclude timer pages from cache
MinificationMay break iFrame codeExclude Custom HTML blocks
Lazy LoadMay delay timer loadingExclude timer iFrames
Warning
If your timer doesn't appear after adding it, check if security plugins like Wordfence, iThemes Security, or All In One WP Security are filtering iFrame code.

Allowing iFrames in Security Plugins

Wordfence:

  1. Go to Wordfence → Firewall → All Firewall Options
  2. Add gettickr.app to whitelisted domains
  3. Save settings

iThemes Security:

  1. Go to Security → Settings → Advanced
  2. Disable "Filter Suspicious Query Strings in the URL" for specific pages
  3. Or whitelist gettickr.app
Tip
Most modern security plugins don't block legitimate iFrames by default, but it's good to know where to adjust settings if needed!

Troubleshooting WordPress Integration

Timer Not Appearing

SymptomCauseSolution
Blank space where timer isIncorrect URLVerify timer URL is correct
Code appears as textPasted in Visual modeUse Text/HTML tab or Custom HTML block
Nothing at allSecurity plugin blockingWhitelist gettickr.app
Error messageTimer doesn't existCheck timer URL in browser

Display Issues

SymptomCauseSolution
Timer too smallWrong dimensionsIncrease width/height values
Timer cut offContainer too smallUse 100% width or larger container
Overlaps other contentMissing container divWrap in div with proper spacing
Not centeredNo centering CSSAdd margin: 0 auto; display: block;

Mobile Issues

SymptomCauseSolution
Too wide on mobileFixed pixel widthUse 100% width or max-width
Text too smallTimer design issueRedesign timer with larger fonts
Doesn't fit screenFixed height too largeUse responsive wrapper or media queries
Information
Use WordPress's built-in preview feature (Desktop/Tablet/Mobile icons) to test how your timer appears on different devices before publishing!

WordPress Multisite

For WordPress Multisite installations:

Information
Timer integration works the same on individual sites, but network administrators may need to enable HTML capabilities for site admins.

Network Admin Steps:

  1. Network Admin → Settings
  2. Enable "Unfiltered HTML" for site admins (if needed)
  3. Individual sites can then add timer iFrames normally

Next Steps

  • iFrame Integration - Detailed iFrame documentation
  • Customize Timer Design - Match your WordPress theme
  • Shopify Integration - WooCommerce is similar to Shopify
  • Remote Control - Control timers while managing your WordPress site
Tip
Save this guide to your browser bookmarks for easy reference when adding timers to WordPress in the future!
2026|Made by
ChangelogLegal NoticePrivacy PolicyCookie PolicyTerms