Oetzie / SocialMedia

MODX Revolution Social Media Component
http://www.oetzie.nl
0 stars 1 forks source link

Ophalen van posts zonder content #2

Closed sdrenth closed 7 years ago

sdrenth commented 7 years ago

In sommige gevallen wil je bijv. wel posts ophalen zonder content (bijv. instagram posts). Momenteel is dit nog niet mogelijk.

In ons geval moesten posts van Instagram zonder content wel getoond worden, dit heb ik als volgt opgelost:

$c->where(
    array(
        'active' => 1
    )
);

$c->where(
    array(
        array(
            'content:!=' => '',
            'source:!='  => 'instagram',
            array(
                'OR:source:='   => 'instagram'
            )
        )
    )
);
Oetzie commented 7 years ago

Fixed in 1.1.1 aan de hand system setting per source