Product:
Question:
I created custom post types with the plugin WP Types. It also allows me to create custom fields for the elements… so I used it to create an image field where the user can select a logo to upload.
Recently Asked Questions and WordPress Tutorials
Product:
Question:
I created custom post types with the plugin WP Types. It also allows me to create custom fields for the elements… so I used it to create an image field where the user can select a logo to upload.
In this tutorial, we will show you how to create a WooCommerce products carousel. You can select products from a category or multiple categories, or you can select best selling product, featured products or products on sale. You can add product image, title, description, price, star ratings, total sales and Add To Cart button to the carousel, link the carousel image to the product page.
You can view the demos created with this tutorial:
Product:
WonderPlugin Slider, WonderPlugin Carousel, WonderPlugin Portfolio
Tutorial:
This tutorial will guide you how to fix the issue of the lightbox effect not working in the WordPress theme Salient.
Continue reading
This tutorial will guide you how to open an audio player created with WonderPlugin Audio Player in a WordPress lightbox popup. We use the plugin WonderPlugin Carousel to create the carousel and the lightbox.
Continue reading
Product:
Question:
I am using the FLIP skin (which is why I bought it) - I really need the title of the post to appear in the carousel.
At the moment it’s used in the title property of the photo when flipped, but I need it to appear below the photo within the carousel, so people know what they are flipping.
Answer:
In the plugin, step 3, Options tab, Content template, add the following line to the end of the existing text:
Product:
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.
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:
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:
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:
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