Skip to content

Instantly share code, notes, and snippets.

View Anxiro's full-sized avatar
🏃‍♂️
idkfa

Frank W. Anxiro

🏃‍♂️
idkfa
  • Denmark
View GitHub Profile
@noelboss
noelboss / page_tsconfig.txt
Created November 21, 2013 14:18
How to configure gridelements for Typo3 purely with TypoScript and TSconfig and thus living in files. Based on this article: http://www.networkteam.com/blog/post/gridelements-professionell-nutzen.html
# Page TSConfig:
tx_gridelements.setup {
# ID of Element
1 {
title = Two Columns
config {
colCount = 2
rowCount = 1
rows {
1 {
@tegansnyder
tegansnyder / find-products-without-images.sql
Created January 16, 2014 21:58
Magento - finding products without images. Raw SQL.
SELECT *
FROM `catalog_product_entity` AS a
LEFT JOIN `catalog_product_entity_media_gallery` AS b ON a.entity_id = b.entity_id
WHERE b.value IS NULL