kg69design
Forum Replies Created
-
Thanks to thomask – the solution about breadcrumbs works!
Forum: Fixing WordPress
In reply to: Cant edit posts through the Text editor“kk Star Ratings” plugin fixed this in Version 2.2
Forum: Fixing WordPress
In reply to: Cant edit posts through the Text editorThe reason of that issue in my case was “kk Star Ratings” plugin.
Forum: Fixing WordPress
In reply to: Cant edit posts through the Text editorI have the same situation.
Everything is possible but in this case I don’t know the solution.
Forum: Plugins
In reply to: [JJ NextGen JQuery Carousel] carousel not visible?!?This plugin have some addition issues like it does not crop images and just use from NGGallery “as is”, but there are topics about it here with the explanation how to fix it.
Forum: Plugins
In reply to: [JJ NextGen JQuery Carousel] carousel not visible?!?You can add it to your site:
1. as a widget
2. as a shortcode direct in your post, something like this:
[jj-ngg-jquery-carousel html_id=”jcarousel_1″ gallery=”1″ width=”141″ height=”141″ visible=”5″ scroll=”1″ auto=”7″ gap=”5″ wrap=”both” max_pictures=”10″]All parameters are described in plugin official page here.
Thanks for the reply and for cool plugin!
Also I found some issues (but I’m not sure about it) and some suggestions, may be they can help you:
1. In file “js.js” variable “disable” is always “false”. May be the reason is that we do not send “star” variable (in case of “Unique based on User IP”) that is checked in index.php at lines~389:if($stars) ...
2. In admin section on “Reset” page it is some sort of inconvenience if you have 100+ posts because there is no pagination or something.
3. It will be cool to have option to edit each review number, not just “delete all”Not really sure, but seems that “schema/rich snippet” issue does not implement correctly in this plugin according to google docs that says:
Don’t add a separate hidden text block to specify the rating. Hidden content will not be displayed. link
And this plugin actually did that:
<span style="display:none;"> <div xmlns:v="https://rdf.data..."> ... </span>
Also it will be better not to include css and script files on those pages where we set to disable rating (home page etc.)
For those, who have some trouble with the script above, I posted a modified version (link above to the tutorial) that works fine if your theme use jQuery.noConflict() somewhere (WordPress by default include it in jquery.js).
Hmmm… It is very strange because the link above works fine for me. This is it again: link to “Upload-attach multiple files” tutorial
Hi, MrMarkNeil
You can write to me by email, that you can find on my site (link above to cf7-multiple-files tutorial).To megstaz
1. The first pieces of code you have to put in plugin’s admin section, where you generate input fields and so on.
2. The second pieces of code you can put directly in footer.php in your theme’s folder (but then you need to wrap the code above with <script type=”text/javascript”>…code…</script>) or you can make a separate js-file and include it in footer.php or in header.php or even in functions.php with wp_enqueue_script() function.I also wrote a little article with some screenshots, may be it can be helpful to you – cf7-multiple-files tutorial.
I did the implementation of this task, but with the limitation on amount of files. All you need to do is to predefined some set of inputs[type=”file”] in plugin’s admin, something like these:
<p class="hide">[file file-01]</p> <p class="hide">[file file-02]<a class="del_file" href="#">del</a></p> <p class="hide">[file file-03]<a class="del_file" href="#">del</a></p> <p class="hide">[file file-04]<a class="del_file" href="#">del</a></p> <p class="hide">[file file-05]<a class="del_file" href="#">del</a></p> <a href="#" class="add_file">Add file</a>
As you can see, we have 5 inputs and a links to add and delete. Also I added some markup. Then we need to make some functionality with the help of jQuery. Something like these:
jQuery(document).ready(function(){ //hide all inputs except the first one $('p.hide').not(':eq(0)').hide(); //functionality for add-file link $('a.add_file').on('click', function(e){ //show by click the first one from hidden inputs $('p.hide:not(:visible):first').show('slow'); e.preventDefault(); }); //functionality for del-file link $('a.del_file').on('click', function(e){ //var init var input_parent = $(this).parent(); var input_wrap = input_parent.find('span'); //reset field value input_wrap.html(input_wrap.html()); //hide by click input_parent.hide('slow'); e.preventDefault(); }); });
Working example you can see here (form to add auto).
It seems like you upload an mp3 file but didn’t add it to playlist in playlist-manager or something, because I see “media_id=0” in plugin script on your site.