• Resolved vodtoday

    (@vodtoday)


    Hi, great plugin! I have a few questions though.

    1: is it possible to show screenshots using the thumbnails, but with the screenshots showing up when you hover over them with the mouse? Right now, they appear below the thumbnails which leaves a blank space tht i don’t like so much. Is there a way to do this?

    2: For apps that provide screenhots for both iPhone and iPad, i would like to show just the iPhone screenshots, because it’s more clean and often the screenshots of iPhone and iPad are the same, so there’s no need to have them double. How do i do this?

    Thanks a lot

    http://wordpress.org/extend/plugins/wp-app-store-connect/

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Pirate0815

    (@pirate0815)

    1.

    You would have to edit the css (style.css), specifically all entries for “wpasc_pics”. There you could fix vertical and horizontal offest (left: … and top: …).

    2.

    lines 545 and 546 of wp-appstore-connect.php make the screenshots for ipad:

    —> original:

    if (isset($itunes_data["results"][0]["ipadScreenshotUrls"]))
       {$screenshothtml .= $this->make_ImageGallery($itunes_data["results"][0]["ipadScreenshotUrls"], "galleryiPad", $data['%APPNAME%'], $options['gallerytype'], $options);}

    –> should work with

    if ( isset($itunes_data["results"][0]["ipadScreenshotUrls"]) && !(isset($itunes_data["results"][0]["screenshotUrls"]) )
       {$screenshothtml .= $this->make_ImageGallery($itunes_data["results"][0]["ipadScreenshotUrls"], "galleryiPad", $data['%APPNAME%'], $options['gallerytype'], $options);}

    Thread Starter vodtoday

    (@vodtoday)

    Hi!

    Thanks for the quick reply, i figured out how to remove the iPad screenshots, but now i have another question:

    Im using the cunstom html option to show my screenshots, but how can i get a them to show up with space between each screenshot? Right now they’re all pushed together, i’d like them to have a little room between each that i can adjust. How do i do this?

    Plugin Author Pirate0815

    (@pirate0815)

    In this case you would have to alter the css-code (.css).

    Hello,

    I like to capture only the iPhone or iPad, and I’ve only tried what you mentioned and it does not work.

    Here’s the code of the plugin version:

    # app screenshots
    				if (isset($itunes_data["results"][0]["screenshotUrls"]))
    					{$screenshothtml .= $this->make_ImageGallery($itunes_data["results"][0]["screenshotUrls"], "galleryiPhone", $data['%APPNAME%'], $options['gallerytype'], $options);}
    				if (isset($itunes_data["results"][0]["ipadScreenshotUrls"]))
    					{$screenshothtml .= $this->make_ImageGallery($itunes_data["results"][0]["ipadScreenshotUrls"], "galleryiPad", $data['%APPNAME%'], $options['gallerytype'], $options);}

    What I have to change to show only images of a device?

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Question about screenshots’ is closed to new replies.