Forum Replies Created

Viewing 8 replies - 1 through 8 (of 8 total)
  • I’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?

    When 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 Me

    I tested it with the Travalify theme, it should work.

    Thread Starter GJK

    (@gjk)

    Hello Angelo,

    I installed WordPress in my language. Works fine now.
    Thanks for the advice!

    I downloaded version 1.1. Works like a charm! Thanks..

    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');
    	}
    }

    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

    Hello Shar,

    You can move the navigation to the left by changing the float from right to left on:

    main-navigation
    main-navigation li

    Make sure you use a child-theme so you don’t lose the changes you make to your theme’s styling.

    Thread Starter GJK

    (@gjk)

    Thanks, works perfect now!

Viewing 8 replies - 1 through 8 (of 8 total)