Portfolio Slideshow Sliders Behaving Oddly When in jQuery Ui Tabs
Not sure what is causing the problem, you could try adding this to init.js (inside the click function, before fade in): $(“#portfolio-slideshow0”).css(“width”,”882px”);
Not sure what is causing the problem, you could try adding this to init.js (inside the click function, before fade in): $(“#portfolio-slideshow0”).css(“width”,”882px”);
Take a look at your code now that I have formatted it. You are opening <div class=”slide-caption”> inside the Loop but are not closing it until after the Loop, and you are missing two closing </div> tags altogether (though that may be a copy/paste error). That means the markup is going to be badly broken, … Read more
Are you adding the shortcode to the ACF custom field? If so, you have to run the content filter on it so that it parses shortcodes. Fortunately ACF has the option to do this with its WYSIWYG fields. Simply select “Run filter “the_content”?” in the field options.
You can most likely use Easy FancyBox plugin (and maybe plus NextGen gallery) to achieve the effect. The FAQ on the Easy FancyBox documents different things you can do: http://wordpress.org/plugins/easy-fancybox/faq/ For example, you can call lightbox of an hidden image with text link: <a href=”#hidden_image_id” class=”fancybox”>Castle abc</a> <div style=”display:none”><img id=”hidden_image_id” src=”hidden_image_url.jpg”></div> So you’d apply this … Read more
Have you checked the documentation? It’s right in there, in the jQuery Plugin Usage section: $(‘#slider’).nivoSlider({ manualAdvance: false, // Force manual transitions });
From the GPP Slideshow description: The GPP Slideshow plugin for WordPress allows you to create minimalist image slideshows… This plugin is built to only handle image slideshows, so I seriously doubt it could easily handle non-image content such as videos. You’re much better off moving on to a slideshow that is built to handle multiple … Read more
If the purpose of the ID is just to set the order of the slides you are better off using the order attribute. Add page-attributes to the array for the supports argument in $feature_args Then in your loop you can specify &orderby=menu_order&order=ASC Then you can show it as a column you can refer to this … Read more
You can most probably reuse the loop and run it twice. The first time to display the queried post and the second time to display the rest // Get the current post id being viewed $current_post_id = get_queried_object_id(); // Define your query and query arguments $args = [ // All your arguments ]; $q = … Read more
The problem was jquery conflict (error $ is not a function). All custom scripts should be running in no-conflict mode. I’ve used jQuery(…) instead of $().
You could look into a plugin that let’s you add slides from backend (eg. Slider Revolution) and then you simply add the slider shortcode in a “Home” page, that you set as the front page through Settings > Reading, or run the slideshow from your index.php or header.php, depending how/where you want it. Or you … Read more