jnui
Forum Replies Created
-
Forum: Plugins
In reply to: [WebP Express] Compatibility issue with Master SliderHi John-pierre, I’m not affiliated with either plugin.
I just looked at your demo, and I see the html generated for the slide has 2 picture elements. The first picture element code is below.
<picture><source data-src="https://test.xenonis.nl/wordpress/wp-content/uploads/2012/10/121.jpg.webp" type="image/webp"><img src="https://test.xenonis.nl/wordpress/wp-content/plugins/master-slider/public/assets/css/blank.gif" alt="" title="" data-src="https://test.xenonis.nl/wordpress/wp-content/uploads/2012/10/121.jpg" class="webpexpress-processed"></picture>
note there is a source element that has the correct webp image, then there is an img element that has a blank gif file. When I changed the img tag to point at the correct webp image (within the code), then it displayed correctly in my browser.
i.e.
<picture><source data-src="https://test.xenonis.nl/wordpress/wp-content/uploads/2012/10/121.jpg.webp" type="image/webp"><img src="https://test.xenonis.nl/wordpress/wp-content/uploads/2012/10/121.jpg.webp" alt="" title="" data-src="https://test.xenonis.nl/wordpress/wp-content/uploads/2012/10/121.jpg" class="webpexpress-processed"></picture>
Forum: Plugins
In reply to: [Glossary] Activate Plugin: Page not FoundOk, now I flushed permalink and the pages are showing
Forum: Plugins
In reply to: [Glossary] Activate Plugin: Page not FoundI too have this.
Somehow this plugin was disabled (I don’t know how) , and now the glossary pages are all 404.
the slug i used was “information”
I changed it to glossary, but that was also 404
I changed it back to information (cleared all caches) and still 404.Forum: Plugins
In reply to: [W3 Total Cache] W3 total cache – Not flush and delete page cacheI have this same error, but that file does not exist
I have version 0.9.5.1- This reply was modified 8 years ago by jnui.
Forum: Plugins
In reply to: [Plugin: WooCommerce] Sidebar showing and can't get it to go awayI have the same problem, what was the resolotion?
Forum: Plugins
In reply to: [woocommerce] Override theme files doesn't workZach… you are correct, but it still does not work for me.
Forum: Themes and Templates
In reply to: Missing Template Selection on Page Attributes in WordPress 3.3.1same for me.
no template selectorForum: Plugins
In reply to: get_posts() , how do i mix category and tags?don’t worry, figured it out.
$args = array( 'numberposts' => 3, 'category_name' => 'news', 'tag'=>'madonna' ); get_posts($args);