In this article you can find the system placeholders for affiliate-toolkit template engine. Please note that you can use all php functions in blade engine and you are not limited to this list.
You can see the column "object". It's required that you are using the correct loop around your placeholder.
Please be sure that you are using this loop in your template:
<!--header-->
@foreach ($products as $product)
<!--product content-->
{{$formatter->get_title($product)}}
@endforeach
<!--footer-->
Please be sure that you are using this loop in your template:
<!--header-->
@foreach ($products as $product)
<!--product content-->
{{$formatter->get_title($product)}}
@foreach($formatter->get_offers($product, true) as $offer)
<!-- offer content -->
{{$formatter->get_offer_price($offer, $translator->get_price())}}
@endforeach
@endforeach
<!--footer-->
Please be sure that you are using this loop in your template:
<!--header-->
@foreach ($products as $product)
<!--product content-->
{{$formatter->get_title($product)}}
@foreach($formatter->get_images($product, true) as $image)
<!-- image content -->
{!!$formatter->get_image_mediumimage($product, $image)!!}
@endforeach
@endforeach
<!--footer-->