diff --git a/assets/arrow-counterclockwise.svg b/assets/arrow-counterclockwise.svg
new file mode 100644
index 0000000..3d9ff62
--- /dev/null
+++ b/assets/arrow-counterclockwise.svg
@@ -0,0 +1,4 @@
+
\ No newline at end of file
diff --git a/assets/chat-dots-fill.svg b/assets/chat-dots-fill.svg
new file mode 100644
index 0000000..5f74345
--- /dev/null
+++ b/assets/chat-dots-fill.svg
@@ -0,0 +1,3 @@
+
\ No newline at end of file
diff --git a/assets/credit-card.svg b/assets/credit-card.svg
new file mode 100644
index 0000000..406233d
--- /dev/null
+++ b/assets/credit-card.svg
@@ -0,0 +1,4 @@
+
\ No newline at end of file
diff --git a/assets/truck.svg b/assets/truck.svg
new file mode 100644
index 0000000..72c5439
--- /dev/null
+++ b/assets/truck.svg
@@ -0,0 +1,3 @@
+
\ No newline at end of file
diff --git a/tpl/flex_4_column_business_blocks.tpl b/tpl/flex_4_column_business_blocks.tpl
new file mode 100644
index 0000000..9d8cff2
--- /dev/null
+++ b/tpl/flex_4_column_business_blocks.tpl
@@ -0,0 +1,7 @@
+
+
+
+ {{#acfOption flex_four_column_content}}
+
+
+
diff --git a/vendor/open-function-computers-llc/rad-theme-engine/src/RadThemeEngine.php b/vendor/open-function-computers-llc/rad-theme-engine/src/RadThemeEngine.php
index 77688ad..fb4db0c 100644
--- a/vendor/open-function-computers-llc/rad-theme-engine/src/RadThemeEngine.php
+++ b/vendor/open-function-computers-llc/rad-theme-engine/src/RadThemeEngine.php
@@ -103,6 +103,13 @@ class RadThemeEngine
};
}
+ public static function acfOption()
+ {
+ return function ($template, $context, $args, $source) {
+ return get_field($args, "options");
+ };
+ }
+
public static function count()
{
return function ($template, $context, $args, $source) {
diff --git a/vendor/open-function-computers-llc/rad-theme-engine/src/Site.php b/vendor/open-function-computers-llc/rad-theme-engine/src/Site.php
index 553d33b..8be7ee9 100644
--- a/vendor/open-function-computers-llc/rad-theme-engine/src/Site.php
+++ b/vendor/open-function-computers-llc/rad-theme-engine/src/Site.php
@@ -692,6 +692,7 @@ class Site
"length" => \ofc\RadThemeEngine::count(),
"paginationLinks" => \ofc\RadThemeEngine::pagination(),
"queryCount" => \ofc\RadThemeEngine::queryCount(),
+ "acfOption" => \ofc\RadThemeEngine::acfOption(),
];
foreach ($helpers as $name => $callback) {
$this->hb->addHelper($name, $callback);