GJK
Forum Replies Created
-
Forum: Plugins
In reply to: [Print-O-Matic] Print dialog in IE isn't opening in 1.7.5 or 1.7.6aI’m having the same problem with IE11. Currently we’re using version 1.7.6.c.
The print window disappears right when it pops up. Did you get around to replicating the issue?Forum: Themes and Templates
In reply to: hello Guys I Really need help pls help someoneWhen you create a menu you can add the third level menu by dragging it right underneath the second level menu item.
So for example you have:Home
Devices
Redmi
Grandchild item
Grandchild item
Moto
Grandchild item
Grandchild item
Tips & Tricks
Contact MeI tested it with the Travalify theme, it should work.
Hello Angelo,
I installed WordPress in my language. Works fine now.
Thanks for the advice!Forum: Plugins
In reply to: [SKT Skill Bar] JQuery animation doesnt work (bar mode)I downloaded version 1.1. Works like a charm! Thanks..
Forum: Plugins
In reply to: [SKT Skill Bar] JQuery animation doesnt work (bar mode)Chrom Dev Console at sominheo.com/about/ reports jQuery not defined for a number of js files.
I think adding array(‘jquery’) to the sbar_register_scripts function in sktskillbar.php file might do the trick.
So it would look like this:function sbar_register_scripts() { if ( !is_admin() ) { wp_register_script('bar_script', plugins_url('skill_bar/bar/jquery.appear.js', __FILE__), array('jquery')); wp_enqueue_script('bar_script'); wp_register_script('circle_script', plugins_url('skill_bar/circle/jquery.easy-pie-chart.js', __FILE__), array('jquery')); wp_enqueue_script('circle_script'); wp_register_script('circle_custom_script', plugins_url('skill_bar/circle/custom.js', __FILE__), , array('jquery')); wp_enqueue_script('circle_custom_script'); wp_register_script('gage_script', plugins_url('skill_bar/gage/justgage.1.0.1.min.js', __FILE__), , array('jquery')); wp_enqueue_script('gage_script'); wp_register_script('gage_raphael_script', plugins_url('skill_bar/gage/raphael.2.1.0.min.js', __FILE__), , array('jquery')); wp_enqueue_script('gage_raphael_script'); } }
Forum: Plugins
In reply to: [SKT Skill Bar] JQuery animation doesnt work (bar mode)I encountered the same problem with my bar chart (downloaded it about 2 hours ago).
Figured out that the problem lays within the ‘appear’ plugin.
I removed the if statements from the sbar function (sktskillbar.php, around line 64) and that made it work.case 'bar': $wrapCode = '<div id="skillbar_straight" style="padding:10px 0;">'.do_shortcode($content).'<div style="clear:both;"></div></div>'; $wrapCode .= '<script> function sbar(){ jQuery(".skillbar").each(function(){ jQuery(this).find(".skillbar-bar").animate({ width:jQuery(this).attr("data-percent") },3000); }); } if ( jQuery("#skillbar_straight").next().is(":appeared") ){ sbar(); } else { jQuery( window ).scroll(function() { if ( jQuery("#skillbar_straight").next().is(":appeared") ){ sbar(); } }); } </script>'; break;
Only problem now is that the animation starts on pageload.
Any ideas on how to solve this?
Thanks in advance
Forum: Themes and Templates
In reply to: [Spun] Moving top bar to the left sideForum: Plugins
In reply to: [Breadcrumb NavXT] taxonomy issueThanks, works perfect now!