kanabi
Forum Replies Created
-
Problem solved – there is a conflict with AddThis tools plugin. I recommend removing it completely.
Forum: Fixing WordPress
In reply to: Embedded audio file – play/pause button not workingPS. On both themes I’ve used the same code to embed the mp3:
<?php echo do_shortcode('[audio preload="auto" src=""]'); ?>Forum: Fixing WordPress
In reply to: Embedded audio file – play/pause button not workingDone. All plugins are off and the player on my theme still not working. But it is on the Twenty Fourteen theme.
What puzzles me is that both players look different, although I haven’t been styling any of them in any way. See screenshots below:
Twenty Fourteen theme:
http://zywabibliotekapodkowa.pl/wordpress/wp-content/uploads/2014/05/mp3-2014.pngMy theme:
http://zywabibliotekapodkowa.pl/wordpress/wp-content/uploads/2014/05/mp3-my-theme.pngWhat causes this behavior?
Forum: Plugins
In reply to: [Skitter Slideshow] How to display category name?I’m refreshing my query.
How can I show the category name of the post that is being currently displayed on the Skitter?
All I can get so far is the array of category names of all posts in the Skitter. No matter if I use
the_category()orget_the category()…Please help!
Ok, I turned off all plugins and was enabling them again one by one to check which one may causes the conflict and somehow the problem solved itself. All plugins are on (including the old User Avatar plugin) and the featured images’ upload is back to normal.
Cheers.
I am experiencing the same problem. The plugin makes it impossible to set a featured image of the edited post.
Which is a pity, because apart from that it is an excellent plugin…
Thank you in advance for any hint how to fix that.
kanabi
PS. Yes, I do have the most recent version – both the plugin and WP.
Forum: Plugins
In reply to: [Skitter Slideshow] [Plugin: Skitter Slideshow] How to exclude category?Yes, this is how it works for me now. However in previous versions (below 2.0) the working code would look like this:
$query_posts = 'cat='.$category.'&cat=-3&cat=-4&posts_per_page='.$wp_skitter_slides;Forum: Plugins
In reply to: [Skitter Slideshow] Skitter slideshow and WPML Multilanguage plugin conflict?Hi Harshad,
There was a minor conflict with other jquery script (the dropdown menu), that I didn’t notice before. Now I’m pretty sure that the Skitter Slider is 100% compatibile with the WPML, thus worth recommending to other users of your great translation plugin!
Anyway, thank you for your reply.
Regards,
kanabiForum: Fixing WordPress
In reply to: Two jQuery/javascript errors after update to 3.5Ok, already done! Everything’s up and running now:) Here’s the solution to my last problem:
Forum: Fixing WordPress
In reply to: Two jQuery/javascript errors after update to 3.5Ok, thank you, I will. Meanwhile I managed to resolve the Skitter Slideshow plugin problem. One of the scripts in the plugin folder needed to be upgraded – jquery.animate-colors.min.js. The newest code is available here – http://www.bitstorm.org/jquery/color-animation/.
Still working on the smooth scrolling problem though…
<!-- Top smooth scrolling --> <script type="text/javascript"> $(document).ready(function(){ $(window).scroll(function(){ if ($(this).scrollTop() > 100) { $('.top').fadeIn(); } else { $('.top').fadeOut(); } }); $('.top').click(function(){ $("html, body").animate({ scrollTop: 0 }, 600); return false; }); }); </script>Forum: Themes and Templates
In reply to: Change the first class if post page is 1Ok, I’ve worked out my own solution. Up and running:
function first_paragraph($content) { $page = get_query_var('page'); if ($page < 2) { return preg_replace('/<p([^>]+)?>/', '<p$1 class="lead">', $content, 1); } else { return $content; } } add_filter('the_content', 'first_paragraph');Forum: Themes and Templates
In reply to: Change the first class if post page is 1Thank you for your reply, but it’s not the issue. I just want to make the above script change the “lead” class (which is already defined) whenever I’m on the first page of a post divided by the <!–nextpage–> tag and leave it unchanged on the other pages of a given post.
Please help! I’m pretty sure the others would be interested in this solution as well.
Ok, I got this. It’s in the file gce-event.php. Hope it’ll help anyone with the same issue. Peace.
Another question, related to the problem described above – how to remove completely all records made by the plugin from the mySQL database using phpMyAdmin? What are the tables/rows names?
I’ve tried reinstalling the plugin but it keeps the old data. Thanks in advance for any response.
Forum: Plugins
In reply to: [Skitter Slideshow] [Plugin: Skitter Slideshow] How to exclude category?OK, I just did it.
In file wp-skitter-slideshow.php:
$query_posts = 'cat='.$category.'&posts_per_page='.$wp_skitter_slides;>
$query_posts = 'cat='.$category.'&cat=-11&posts_per_page='.$wp_skitter_slides;Piece of cake. Hope to save some other ppls time.