Elementor

Show Elementor Pop Up For Only Certain Products Based on iMember360 Conditionals – Works for dynamic Upsell offers

Build a pop up in Elementor. Create an iMember360 Conditional that evaluates to TRUE when the product you’re targeting is in the cart. For help creating other iMember360 Conditionals using ChatGPT, click here: https://wiki.trueproductions.com/article/chatgpt-prompt-for-creating-imember360-conditionals-in-php/ This inline conditional will evaluate to true if product ID 9192 is in the cart. To adapt for other uses, swap […]

Elementor Font issue When Migrating Sites

Just FYI, I was able to find a forum that explained that it might be helpful to rename the “elementor” folder in /wp-content/uploads/ and force Elementor to create a new one. They suggested this might rebuild/redownload the fonts.  Looks like it worked.

Create a Direct Link to a Toggle Box/Tab/Accordion Content in Elementor – 2024 and forward

Elementor Open Specific Tab, Toggle or Accordion on Link Click Script is in this word doc: https://wiki.trueproductions.com/wp-content/uploads/2025/08/script-for-accordion-links.docx Add the script in an HTML block close to the accordion or tab. Add a CSS element under the title of the tab or accordion item that you’ll use in your anchor tag. Link to the specific tab […]

Add Custom Shortcode to Generate Current Year as Merge Field for Copyright in Footer

Use this code snippet in the functions.php file to create a shortcode that works in elementor.   // Create current year shortcode function current_year_shortcode() { $year = date(‘Y’); return $year; } add_shortcode(‘current_year’, ‘current_year_shortcode’);’   Anywhere you add [current_year], it will populate the year. For example:   @[current_year] Home Centered Care Institute will display as @2025 […]

Text Stroke Animation CSS

EDIT & COPY THIS FROM TEXT FIELD — :root{ –myText : ‘your text here’; –textColor: #2CFF99; –textStroke: 2px; –anDuration: 6s; } selector{ -webkit-text-stroke: var(–textStroke) var(–textColor); display: table; width: -moz-fit-content; width: -webkit-fit-content; width: fit-content; text-align: center; margin: 0 auto } selector .elementor-heading-title::before{ content: var(–myText); color: var(–textColor); position: absolute; top: 0; width: 0%; height: 100%; text-align: left; […]

Smooth Fade Flip Box Hover Effect in Elementor

1. Add the Flip Box WidgetDrag and drop the Flip Box widget into your container or section. This will be the base of your effect. 2. Clean Up the Front SideWe’re going for a minimal front face, so: Remove all content from the Front Side tab. Go to the Style > Background settings and choose […]

How to Disable Automatic Plugin Updates in WordPress

How to Turn Off Automatic WordPress Core Updates 1. Access your wp-config.php file in order to add this snippet: define( ‘WP_AUTO_UPDATE_CORE’, false ); To access the file, you’ll need to either use FileZilla (or another  File Transfer Protocol (FTP) solution) or the file manager in your web host’s cPanel. Once you have access, move to […]