Add space after gallery and left align carousel

Product:

Question:

I am using WonderPlugin Portfolio Grid Gallery Commercial Version 6.0C and WordPress 4.4

I need to add space between your plugin and the text below. I've tried adding it in your skin css and in my style.css and have not been able to figure out how to do it either way. Can you tell me how to make that work?

Similarly, with WonderPlugin Carousel Commercial Version 7.0C, I need to move the vertical carousel to the left.

Answer:

1. In the post/page editor, switch to Text mode, then add the following HTML code after the gallery shortcode:

<p style="margin-top:100px;"></p>

The above code will add 100px gap after the gallery.

2. You could add the following HTML code around the carousel shortcode:

<div style="float:left;">
[[wonderplugin_carousel id="2"]]
</div>
<div style="clear:both;"></div>

Only 5 videos in YouTube playlist gallery

Product:

WonderPlugin Gallery Plugin

Question:

I'm very interested in the YouTube playlist gallery you offer. I have tested it out and I love the functionality but I also noticed there is only 5 videos from each playlist I can scroll through. I was wondering if there is a way to include all the videos from a given playlist?

Answer:

In the "Add YouTube Playlist" dialog, enter a large value, for example, 50, to the field "Maximum results (optional, default is 5)".

If you don't enter any value, it will only get 5 videos from the Youtube playlist.

Do not auto play next track in WordPress audio player plugin

Product:

WonderPlugin Audio Player Plugin

Question:

I have a quick question, can the play lists be set to not auto play the next track?

I need the play list to only play a track when i click on it.

Answer:

In the plugin, step 3, Options tab -> Skin Options, change the Loop Mode to No loop.

Then in Options tab -> Advanced Options, enter the following text to the Advanced Options box:

data-noncontinous="true"

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.