# fluent-cart/1.6.5/app/Hooks/Handlers/ShortCodes/Buttons/AddToCartShortcode.php

FluentCart A New Era of eCommerce – Faster, Lighter, and Simpler, version 1.6.5. 91 lines.

- Page: https://pluginprobe.com/plugins/fluent-cart/1.6.5/code/app/Hooks/Handlers/ShortCodes/Buttons/AddToCartShortcode.php
- Raw: https://pluginprobe.com/plugins/fluent-cart/1.6.5/raw/app/Hooks/Handlers/ShortCodes/Buttons/AddToCartShortcode.php
- Modified: 2026-07-17T12:50:44+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/fluent-cart/1.6.5/code/app/Hooks/Handlers/ShortCodes/Buttons/AddToCartShortcode.php#L10-L20`.

```php
<?php

namespace FluentCart\App\Hooks\Handlers\ShortCodes\Buttons;

use FluentCart\App\Hooks\Handlers\ShortCodes\ShortCode;
use FluentCart\App\Helpers\Helper;
use FluentCart\App\Models\Product;
use FluentCart\App\Models\ProductVariation;
use FluentCart\App\Modules\Templating\AssetLoader;
use FluentCart\App\Services\Renderer\ProductRenderer;
use FluentCart\Framework\Support\Arr;

class AddToCartShortcode extends ShortCode
{
    protected static string $shortCodeName = 'fluent_cart_add_to_cart_button';

    public function getStyles(): array
    {
        return [
            'public/buttons/add-to-cart/style/style.scss',
        ];
    }

    /**
     * Example:
     * [fluent_cart_add_to_cart_button
     *   button_text="Add to Cart"
     *   variation_id="123"
     * ]
     *
     * Supported attributes:
     * - button_text
     * - variation_id
     */
    public function render(?array $viewData = null)
    {
        $data = $viewData ?? $this->shortCodeAttributes ?? [];

        $buttonText  = Arr::get($data, 'button_text', __('Add to Cart', 'fluent-cart'));
        $buttonClass = trim(Arr::get($data, 'class', ''));
        $variationId = (int) Arr::get($data, 'variation_id', 0);

        if (!$variationId) {
            return '';
        }

        AssetLoader::loadSingleProductAssets();

        $rendererConfig = [];
        $product        = null;

        // 1) Try treating variation_id as the actual variation primary ID
        $variant = ProductVariation::query()->find($variationId);

        // 2) Fallback: treat variation_id as variation post_id
        if (!$variant) {
            $variant = ProductVariation::query()
                ->where('post_id', $variationId)
                ->first();
        }

        if ($variant) {
            /** @var Product|null $product */
            $product = Product::query()->find($variant->post_id);

            if ($product) {
                $rendererConfig['default_variation_id'] = $variant->id;
            }
        }

        if (!$product) {
            if (Helper::isAdminUser()) {
                return '<p class="fct-admin-notice">' . esc_html__('Invalid product/variant for Add to Cart button shortcode.', 'fluent-cart') . '</p>';
            }

            return '';
        }

        $atts = [
            'add_to_cart_text' => $buttonText,
            'is_shortcode'     => true,
        ];

        if ($buttonClass) {
            $atts['class'] = $buttonClass;
        }

        return (new ProductRenderer($product, $rendererConfig))->renderAddToCartButton($atts);
    }
}

```
