Hello,
I use this L&L template card to display WordPress card:
<ul class="db_cards">
<Loop type=portfolio>
<li class="db_cards_item">
<div class="db_card">
<a href="{Field url}">
<div class="db_card_image">
<If field="image" exists>
<img src="{Field image_url size=medium}" alt="{Field image_alt}" >
<Else>
<img src="https://mysite.com/wp-content/uploads/2023/05/placeholder.jpg" alt="placeholder" >
</Else>
</If>
</div>
<div calss="db_card_content">
<h3 class="db_card_title"><Field title /></h3>
<p class="db_card_client">Client: <Field client /></p>
<p class="db-card_description"><Field excerpt auto=true /></p>
<button class="btn db_card_btn"><a href="{Field url}"></a>En savoir plus</button>
</div>
</a>
</div>
</li>
</Loop>
</ul>
It works very well, but I have encountered 6 warnings on the frontend:
āWarning: Undefined array key ātypeā in /home/clients/xco3x859x36816o68xax318011oxxx8d4/web/wp-content/plugins/tangible-loops-and-logic/vendor/tangible/template-system/loop/types/attachment/index.php on line 82.ā
I have been troubleshooting this issue for three days, but I still havenāt been able to identify the error. Can anyone help me, please?
I use the twenty twenty-three wordpress child themeā¦