Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • Same here! Can’t access any options after the Logs settings

    Hi. Thanks for the nice plugin. It works almost perfectly.

    I think, what thomas-andersen is refering to, is the non-protocoll-independent URIs for the background images. E.g. in the file advanced-responsive-video-embedder.php, line 1403:

    $maxres = 'http://img.youtube.com/vi/' . $id . '/maxresdefault.jpg';

    Which obviously would just work with sites that are http, not https. On https you’ll get the mixed content issue.

    Thread Starter Gerald

    (@painsicook)

    Sorry for the late reply. This is a very useful tip to show what’s happening under the hood 🙂 Thanks for that! The SQL from the query above is following:

    SELECT wp_posts.*
    FROM wp_posts
    JOIN wp_icl_translations t ON wp_posts.ID = t.element_id AND t.element_type = 'post_custom_type'
    JOIN wp_icl_languages l ON t.language_code=l.code AND l.active=1 WHERE 1=1  AND ( wp_posts.ID NOT IN (
    	SELECT object_id
    		FROM wp_term_relationships
    		WHERE term_taxonomy_id IN (36,289)
    	)
    ) AND wp_posts.post_type = 'game' AND (wp_posts.post_status = 'publish') AND t.language_code='en'
    GROUP BY wp_posts.ID
    ORDER BY wp_posts.post_title ASC

    Shouldn’t be the 282 term ID used somewhere?

Viewing 3 replies - 1 through 3 (of 3 total)