Forum Replies Created

Viewing 1 replies (of 1 total)
  • ✅ Step-by-Step: Fix Blockify Theme Error

    1. Open the file:

    /wp-content/themes/blockify/patterns/utility/color-palette.php

    1. Find the function that looks like this:
      function color_palette_grid() {
      // function code here
      }
    2. Wrap it like this:

    if (!function_exists(‘color_palette_grid’)) {
    function color_palette_grid() {
    // function code here
    }
    }

    This prevents WordPress from declaring the same function twice if it’s accidentally included more than once.

Viewing 1 replies (of 1 total)