Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • That was quick, you’re on the ball ??

    K that makes sense, though I’m trying with png’s and jpg’s saved-to-web from photoshop with no luck at the mo.

    Yep just getting the blank box with ‘No image selected!’. Trying different image option to see if anything gets through.

    Plugin is exactly what I’m after but had the same problem as above I’m afraid.

    Just downloaded the latest version. In admin, after you have browsed for your watermark image, the page auto refreshes and removes your image.

    Thread Starter Mooshon

    (@mooshon)

    May as well post my outcome. No help forthcoming and there appears to be absolutely no standard solution to posts within multiple categories acting correctly in wordpress.

    To any weary traveller hitting this dead end – The only fudge workaround is to use: HTTP_REFERER. This code can detect which category you have come ‘from’ allowing you display a custom template, rather than WP just making your parent category the descendant parent with the lowest id. Combined with the technique to use custom single.php files for categories (and bespoke css to colourise your sections) you can consistently colourise your Post template page to match the section that you’re in:

    <?php
    if(strstr($_SERVER['HTTP_REFERER'],'xbox360')) {
    	include 'single-xbox360.php';
    } elseif (strstr($_SERVER['HTTP_REFERER'],'ps3')) {
    	include 'single-ps3.php';
    } else {
    	include 'single-plain.php';
    }
    ?>

    Nothing else works. Until WP changes the way it works there is no other solution regarding multiple category posts. Considering trawling through these here forums for the last week just uncovered tonnes of desperate people struggling with this for the last 5 years plus that’s pretty unlikely to happen.

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