8MB Upload Size Limit

Product:

WonderPlugin Gallery, WonderPlugin Slider, WonderPlugin Portfolio Grid Gallery

Question:

Is 8MB the largest upload size you offer with the WordPress portfolio grid gallery? I tried to add a video file but the video was way too large.

Answer:

8MB is a limit from your web server.

You need to change the web server PHP configuration file to change the limit. If you are using a shared web hosting, you need to contact your web hosting provider and ask them to make the change.

Or you can upload the video file to your web server via FTP client software, then add the video URL link directly to the plugin.

How to display Wistia video in Lightbox Popup

Product:

WonderPlugin Portfolio Plugin

Question:

I use Wistia to house video I wonder how to show the video in lightbox popup.

Answer:

In the plugin, step 1, Click Add Image button:

  1. Select an image for the grid
  2. Uncheck the option "Open current image in lightbox" then enter the Wistia iframe URL to the "click to open web link" field.
  3. Check the option "open web link in lightbox"
  4. You can also check the option "Set Lightbox Size"

wistia lightbox gallery

Display SoundCloud in the Lightbox Popup of WordPress Portfolio Gallery

Product:

WonderPlugin Portfolio Grid Gallery

Question:

Is there any way to display SoundCloud in the lightbox popup?

Answer:

1. Goto Soundcloud, the music, click Share button, then click Embed tab, copy the src value from the provided iframe code.

Do not use the whole iframe code, only copy the value of the src value.

soundcloud-embed

2. In WonderPlugin Portfolio Grid Gallery, Add/Edit Image dialog, enter the src value to the "Click to open web link" text box, check the option "Open web link in lightbox". You can also check the option "Set Lightbox Size".

SoundCloud Lightbox Gallery

Change thumbnail, title and description in WonderPlugin Gallery Showcase Skin

Product:

WonderPlugin Gallery

Question:

I’v just installed and set your Wonder Plugin Gallery commercial version5.4C.
I decided to use Showcase type with Playlist.
I want to enlarge the font-size of the title and desicription in playlist area.
And if possible, I want to enlarge the size of eye-catch image.
I tried to add CSS option, but not changed.
Please help me to change font-size and eye-catch image in playlist area.

Answer:

In the plugin, step 3, Options tab, Advanced Options, you can enter the following text to the Advanced Options box:

data-carouselheight=400
data-thumbheight=120
data-thumbtitlecss="{text-align:left; color:#ffffff; font-size:24px; line-height:24px; font-family:Arial,Helvetica,sans-serif; overflow:hidden; padding: 6px 0;}"
data-thumbdescriptioncss="{font-size:16px;}"

The first line changes the total height of the playlist. The following three lines change the size of the thumbnail image, the title and description CSS in the playlist.

Different texts for big screens and mobile devices

Product:

WordPress Slider Plugin

Question:

It isn't possible to have two different texts?

One that is long and works in "big screens" and one that works on phones etc?

Answer:

In your title, you can try to enter HTML code like following:

<span class="largescreen">This title is for large screen</span><span class="smallscreen">This title is for small screen</span>

Then in the plugin, step 3, Options tab, Advanced Options, enter the following text to the Custom CSS box:

.largescreen {
  display: block;
}
.smallscreen {
  display: none;
}

@media (max-width: 640px) {
  .largescreen {
    display: none;
  }
  .smallscreen {
    display: block;
  }
}

The above CSS code will hide the text of class largescreen and show the text of class smallscreen when the screen width is less than 640px.

YouTube video stays on top of tabs on iPad

Product:

WonderPlugin Tabs Plugin

Question:

I have some tabs in my homepage. When I tried it on an iPad whenever I tried to switch between tabs the content from the previous tab stayed there no matter what I did.

Answer:

I checked your webpage. It's not all contents from previous tabs. It's just the YouTube video iframe always stays on the top.

Currently, your iframe video code is as following:

<iframe width="560" height="315" src="https://www.youtube.com/embed/_mMKNw_Mlxs" frameborder="0" allowfullscreen></iframe>

To fix the problem, please add ?wmode=transparent to the end of the YouTube URL. For example:

<iframe width="560" height="315" src="https://www.youtube.com/embed/_mMKNw_Mlxs?wmode=transparent" frameborder="0" allowfullscreen></iframe>

WordPress Carousel Click Event

Product:

WonderPlugin Carousel

Question:

Is there anyway I can have the callback from every click on carousel item?

I want to trigger something after every click on carousel item.

Please advice.

Answer:

The carousel itself does not have an event.

But you can directly add click event to the items. For example:

jQuery(document).ready(function() {
  jQuery(".amazingcarousel-image img").click(function() {

    console.log("image clicked ");
  });

  jQuery(".amazingcarousel-hover-effect").click(function() {

    console.log("hover effect image clicked");
  });
});

The first code adds click event to the images, the second code adds click event to the hover effect image.

Show artist name in playlist

Product:

WordPress Audio Player

Question:

Is there a way to include the artist name, as well as the track title, in the playlist?

Answer:

In step 3, Options tab, click Advanced Options tab, then enter the following text to the Advanced Options box:

data-tracklistitemformat="%ID%. %ARTIST% - %TITLE% <span style='position:absolute;top:0;right:0;'>%DURATION%</span>"

How to play a Shoutcast streaming in WordPress audio player

Product:

Wonder Audio Player

Question:

I wonder how could I play a Shoutcast audio streaming with Wonder Audio Player? I tried to enter the address of the .pls file to the plugin, but it's not playing.

Answer:

For full instructions of how to create a Shoutcast live streaming player in WordPress, please view the tutorial: How to create a WordPress Shoutcast player.

The .pls file is actually a text file that contains a link or links to the audio streaming. You need to open the .pls file with a text editor, find the streaming URL and directly enter the streaming URL to the plugin.

If the streaming URL has a format like:

http://IP:port

You need to add a suffix ;&type=mp3 and enter the following URL to the plugin:

http://IP:port/;&type=mp3

Then in the plugin, step 1, Add Audio dialog, you can enter the streaming URL to the Mp3 URL box and check the option "This is a live streaming".

You can view the tutorials on the page:

https://www.wonderplugin.com/wordpress-audio-player/examples/wordpress-live-streaming-audio-player-id16/