Forum Replies Created

Viewing 3 replies - 31 through 33 (of 33 total)
  • Thread Starter matt84532

    (@matt84532)

    Thanks for the quick response! I’m looking forward to seeing the snippets and appreciate the help.

    2. The link to the site under development is: https://www.wabi.dreamhosters.com/ If you open the logo image in a new tab you’ll see it’s actually 675 X 687 pixels (I uploaded an oversized one as an experiment) but it’s rendering more in the 300 or less pixel range. Something in the CSS seems to be keeping the size of this logo down.

    5. Thanks! I am using a child theme, so I assume I just copy (for example) blue.css to the child theme and make changes there as I see fit?

    Thanks!

    Hmm. I made the change on line 55 and then on 99 replaced

    function check_request( $wp ) {

    if ( !array_key_exists(‘callback’, $wp->query_vars) )
    return;

    if ( $wp->query_vars[‘callback’] == ‘monoslideshow’) {
    require_once (dirname (__FILE__) . ‘/xml.php’);
    exit();
    }

    }

    with

    function check_request( $wp ) {
    if(strstr($_SERVER[“HTTP_REFERER”], “monoslideshow.swf”)){
    require_once (dirname (__FILE__) . ‘/xml.php’);
    exit();
    }
    else return;
    }

    But I am still getting the “something went wrong… slideshow doesn’t contain any items” error message. Am I missing something?

Viewing 3 replies - 31 through 33 (of 33 total)