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>

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.

Display title at all times for WordPress Carousel Stylish skin

Question:

We are using your Stylish skin on one of our pages and we would like the titles to appear at all times.

Currently the titles of the slides only appear when you hover your mouse upon them.

Is there a code to make this happen?

Answer:
In step 3, Options tab, Skin CSS, find the following code:

#amazingcarousel-CAROUSELID .amazingcarousel-text {
	position:absolute;
	left: 0px;
	bottom: 0px;
	text-align:center;
	width: 100%;
	display: none;
}

And change the code display: none; to display: block;

#amazingcarousel-CAROUSELID .amazingcarousel-text {
	position:absolute;
	left: 0px;
	bottom: 0px;
	text-align:center;
	width: 100%;
	display: block;
}

The demo is as following:

Scroll image one by one in responsive WordPress Carousel Slider

Question:

In Responsive wordpress carousel slider , the three image scroll at a time. I want to scroll image one by one. https://www.wonderplugin.com/wordpress-carousel/

Answer:

In step 3, Options tab, Advanced Options, enter the following text to the Advanced Options field:

data-scrollmode="item"

The demo is as following:

Macro for link target in WordPress Carousel plugin

Question:

We are following the tutorial: https://www.wonderplugin.com/wordpress-carousel/add-weblink-in-wordpress-carousel-content-template/

Is there a macro for the link target field? There are somethings we want _self and there are somethings we want _blank.

Answer:

Please upgrade the plugin to Version 3.0. The version 3.0 adds a macro __TARGET__.

Then in step 3, Options tab, Content template, you can use the __TARGET__ for the link target value you defined for each slide in step 1.

<div class="amazingcarousel-image">__IMAGE__</div>
<div class="amazingcarousel-title">__TITLE__</div>
<p class="amazingcarousel-readmore"><a href="__HREF__" target="__TARGET__">Read More</a></p>

A demo is as following:

Moving WordPress hosting

Question:

We moved hosting for a website that we were using the WonderPlugin Carousel. The carousel information was lost in the transfer.

I still have access to the old server files. Is there a place where I can go and find the old carousel files and copy them over to the new host? Or am I screwed and have to rebuild all of them?

Answer:

The carousel information are saved in the WordPress database, the table name is wp_wonderplugin_carousel.

If you move your database together with your website files, then it's supposed to work fine.

Actually, WordPress is database driven. Most of your website content are saved in the WordPress database, for example, the posts and pages content. So if you move the hosting, you need to move the database together with the files.

You can view the official document about how to move WordPress: http://codex.wordpress.org/Moving_WordPress

Change Image Radius of WordPress Carousel

Question:

I need to change the picture radius value to get a perfect square…how do I have to get this. I am using the skin Simplicity.

Answer:

In Step 3, Options tab, click Skin Options button, then find the following code, and remove the red text:

#amazingcarousel-CAROUSELID .amazingcarousel-image img {
    display: block;
    width: 100%;
    max-width: 100%;
    border: 0;
    margin: 0;
    padding: 0;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

Change position of video play button in WordPress carousel

Question:

Is there way to place the play button not in the middle, but in some other place on the video?

Answer:

Yes. In step 3, Options tab, click the Advanced Option button, then enter the following CSS code to the Custom CSS:

.amazingcarousel-play-video {
    background-position: bottom left !important;
}

This will move the play video button to the bottom left.

A demo is as following:

Multiple jQuery loaded in WordPress

Question:

I have a website in progress, I used Wonderplugin for WordPress and as I came across on the development, I cannot get it working.

I already uploaded images and configured everything on WordPress.

I also copied the shortcode to the php page that I am working on. But the carousel does not show up.

Answer:

Normally this problem is that there are multiple jQuery files added to your WordPress.

You can view the HTML source code of your webpage, and check how many jQuery are added in your website. In Google Chrome, you can view the HTML source code with menu View -> Developer -> View Source, then search text "jquery" in the source code.

There should be only one jQuery in the webpage, which is added by the WordPress system.

Some plugins add their own jQuery to the website, and this is not correct. A plugin should always use the system installed jQuery, and the js files added from a plugin will be added after the system jQuery.

A jQuery will destroy all other jQuery functions that are added before it. So if a plugin adds its own jQuery, it may destroy other jQuery functions.

To fix the issue:

In the plugin, Setting menu, you can try to check the option "Add plugin js scripts to the footer". This option will place the plugin js file to the footer and will fix the problem in most cases.

If the above option is not working, you can try to disable all other plugins and see whether the WonderPlugin works. If it works, you can then enable the plugins one by one, and find the plugin that has caused the problem.

If WonderPlugin is still not working after you have disabled all other plugins, then the extra jQuery may have been added manually to the theme or the page, you need to find the code and remove it.

Add weblink in WordPress Carousel content template

Question:

I'm wondering if there is a __LINK__ var or else as there are are for TITLE and DESCRIPTION carrousel item
I'm trying to manage a specific content template and i would like to use such a variable.
Maybe it is available in the last carrousel version ?

Answer:

A macro variable __HREF__ is supported in the latest version 2.2.

For example, you can use the following code in step 3, Options tab, Content template:

<div class="amazingcarousel-image">__IMAGE__</div>
<div class="amazingcarousel-title">__TITLE__</div>
<p class="amazingcarousel-readmore"><a href="__HREF__" target="_blank">Read More</a></p>

A demo with the above template is as following: