Forum Replies Created

Viewing 30 posts - 31 through 60 (of 60 total)
  • Author
    Posts
  • in reply to: Layerslider Version 4.6.5 to 5.0 #233592

    By the way, I got a significant loading time improvement after using the new version of layerslider.

    • This reply was modified 10 years, 4 months ago by Imburr.
    in reply to: Request Minify Guide #229226
    This reply has been marked as private.
    in reply to: Request Minify Guide #228361

    That is what I use and you cannot just enable it with default settings, as it break jquery, Layerslider, icon list animations, progressbar sliders, and a whole slew of other stuff. Please do ask- You guys could just take a screenshot of the BWP Minify settings panel and what you have for the script order in heading, footer, etc.

    in reply to: Navigation Hover/Active Funkyness #227955

    Yeah I fixed that, was a permissions problem as I am doing a little back end work with this minify/cache.

    Check it now.

    in reply to: Layerslider Version 4.6.5 to 5.0 #222326

    What version of Layerslider is included in the theme, which was updated today?

    in reply to: Question about theme Z-Index #215148
    This reply has been marked as private.
    in reply to: Breadcrumb and Blog Title formatting #214848

    Ok, I did as you suggested and separated them back out then used your code. It pretty much works as intended, though the blog page itself still shows the full blog title in the breadcrumb- not a big deal, and I can live with it. Thanks for all of the work on this, was a huge help.

    in reply to: Breadcrumb and Blog Title formatting #214466

    I know this line of code is painful for you guys, and I apologize for being so dense. Your code works, but when I also add my other code to rename the breadcrumb it does not work. Here is the code I have now:

    
    if(!function_exists('avia_modify_blog_breadcrumb'))
    {
        function avia_modify_blog_breadcrumb($trail)
        {
    
        	if(get_post_type() === "post" && (is_single() || is_category() || is_archive() || is_tag()))
    		{
    			$blogid = 1010;
    			if($blogid)
    			{
    				$blog = '<a href="' . get_permalink( $blogid ) . '" title="' . esc_attr( get_the_title( $blogid ) ) . '">' . get_the_title( $blogid ) . '</a>';
    				array_splice($trail, 1, 0, array($blog));
    			}
    
    		}
    
            foreach($trail as $key => $data)
            {
                    $search = 'SEO Tools to Equip Your Business & #8211; Blog';
                    if(strpos($data, $search) !== false)
                    {
                                      $data = str_replace($search, "Blog", $data);
                                      $trail[$key] = $data;
                    }
            }
            return $trail;
        }
    
        add_filter('avia_breadcrumbs_trail','avia_modify_blog_breadcrumb');
    }
    

    This is a combination of both your above fix and the fix from the other thread which renames the blog breadcrumb title to “Blog”, and does not work. The end goal is to have the blog breadcrumb to be “You Are Here: Home / Blog” and a blog post to be “You Are Here: Home / Blog / Post Title Goes Here”. I hope this makes sense, and thanks for all of the help with this. A really neat feature would be a meta field box inside of the theme where you could manually set the breadcrumb text for each post. I used another theme recently that had that feature, maybe it was Jupiter or something.

    in reply to: GWT 404 errors #212320

    Thanks! you guys are amazing, really great support here. I am glad I went with you guys as a theme provider, the support on some of the other main providers is not nearly as comprehensive a here.

    in reply to: Rename Blog Title and Breadcrumb #212316

    Awesome thank you very much!!!!

    I have one more question. I have changed the blog a bit- it was set in theme options to a page, and this would not allow me to add content to it over the blog roll. So per your instructions on another post, I turned off the log page in theme options and instead set it up using the advanced editor, which let me also add a title.

    This has made the breadcrumb act funny. Perhaps you can explain what I need to do to fix it.

    Blog is root/blog
    Permalinks are set to custom /blog/
    Blog pages are coming up as root/blog/post which is what I want.

    One the blog page, the breadcrumb is set back to what it was before your hack from above. I am thinking this is because I changed the page from is_index to a single page. So, how can I now change this breadcrumb to also say Blog instead of the page title?

    Second, when I go to posts, the blog page is not in the breadcrumb. So instead of the breadcrumb being You Are Here: Home / Blog / Post it is reading You Are Here: Home / Post

    Is this something I can work with? I also read somewhere in here about having to fix my permalinks for some reason?

    • This reply was modified 10 years, 6 months ago by Imburr. Reason: Further Questions
    in reply to: Rename Blog Title and Breadcrumb #211878
    This reply has been marked as private.
    in reply to: Rename Blog Title and Breadcrumb #211630

    I moved it from the bottom to the top. No dice, no change.

    Any more ideas? I don’t mind a core hack if that is what is needed to make this work.

    in reply to: Rename Blog Title and Breadcrumb #210220

    Here is my code:

    
    // Change Breadcrumb
    
    if(!function_exists('avia_modify_blog_breadcrumb'))
    {
        function avia_modify_blog_breadcrumb($trail)
        {
    
            foreach($trail as $key => $data)
            {
                    $search = 'SEO Tools to Equip Your Business – Blog';
                    if(strpos($data, $search) !== false)
                    {
                                      $data = str_replace($search, "Blog", $data);
                                      $trail[$key] = $data;
                    }
            }
            return $trail;
        }
    
        add_filter('avia_breadcrumbs_trail','avia_modify_blog_breadcrumb');
    }
    

    And here is my unchanged blog title. Not sure what is going on here…

    http://cl.ly/image/1g3z2s1k3V1L

    I of course dumped all my cache and stuff. I dont know if it matter but the class of my span is trail-end, while the PHP looks like it calls for trail.

    in reply to: Rename Blog Title and Breadcrumb #208741

    I see what you are trying to do, but it unfortunately does not work. I have put the code in and nothing is changed.

    in reply to: Rename Blog Title and Breadcrumb #208091

    That changed the home text to blog.

    You can see an example here: https://www.virginiaseo.org/blog/seo-email-scam-artist-hurt-your-reputation/

    The breadcrumb should read:

    You are here: Home / Blog / SEO Tips / Post Title

    Right now it is reading: Blog / Full Blog Title / SEO Tips / Post Title

    in reply to: Admin Login Speed #207858

    I found a couple of plugins that significantly increased admin speed, the biggest one was a Pinterest for WP Pro plugin, which adds 5-7 seconds of load time. I have contacted the plugin author about it.

    I am using Enfold on another web site and it is so snappy- so it definitely has to be a plugin problem.

    Thanks

    Update- Just wanted to comment on this.

    Using Godaddy Delux Linux Shared Hosting it was taking 10-30 seconds to login.

    I migrated to BlueHost Standard VPS and login times are 3-5 seconds, which is pretty normal in my opinion.

    So in the end, it was an underpowered/overloaded server causing the issues.

    Thanks again!

    • This reply was modified 10 years, 6 months ago by Imburr. Reason: update
    in reply to: Admin Login Speed #207537

    And here it is with all plugins disabled:

    
    [10:52:48.958] POST https://www.virginiaseo.org/wp/wp-login.php [HTTP/1.1 302 Moved Temporarily 668ms]
    [10:52:49.633] GET https://www.virginiaseo.org/wp/wp-admin/ [HTTP/1.1 200 OK 1162ms]
    [10:52:50.965] GET https://www.virginiaseo.org/wp/wp-admin/load-styles.php?c=0&dir=ltr&load=dashicons,admin-bar,wp-admin,buttons,wp-auth-check&ver=3.9-alpha [HTTP/1.1 200 OK 155ms]
    

    I will now go through them one by one until I find the culprit. What a PITA.

    in reply to: Admin Login Speed #207525

    Same results with a freshly created admin user:

    
    [10:42:16.305] POST https://www.virginiaseo.org/login/ [HTTP/1.1 302 Moved Temporarily 1811ms]
    [10:42:18.125] GET https://www.virginiaseo.org/wp/wp-admin/ [HTTP/1.1 200 OK 16967ms]
    --
    [10:42:35.138] GET https://www.virginiaseo.org/wp/wp-admin/load-styles.php?c=0&dir=ltr&load=dashicons,admin-bar,wp-admin,buttons,wp-auth-check,media-views,wp-pointer,farbtastic&ver=3.9-alpha [HTTP/1.1 200 OK 391ms]
    
    in reply to: Admin Login Speed #207520

    I forced SSL in my wp-config.php file, thinking perhaps the server was straining to forward to HTTPS. I also removed about half of my admin dashboard widgets such as news and quick draft. Here are the results, same hang in same place.

    
    [10:37:14.025] POST https://www.virginiaseo.org/login/ [HTTP/1.1 302 Moved Temporarily 2441ms]
    [10:37:16.467] GET https://www.virginiaseo.org/wp/wp-admin/ [HTTP/1.1 200 OK 8218ms]
    --
    [10:37:24.822] GET https://www.virginiaseo.org/wp/wp-admin/load-styles.php?c=0&dir=ltr&load=dashicons,admin-bar,wp-admin,buttons,wp-auth-check,media-views,farbtastic&ver=3.9-alpha [HTTP/1.1 200 OK 332ms]
    

    I will try with a different user now.

    in reply to: Admin Login Speed #207510

    Here is a console debug of the login. there is a huge delay up front, then everything loads quickly once the hurdle is passed.

    
    [10:23:35.756] POST https://www.virginiaseo.org/login/ [HTTP/1.1 302 Moved Temporarily 1782ms]
    [10:23:37.539] GET https://www.virginiaseo.org/wp/wp-admin/ [HTTP/1.1 200 OK 22809ms]
    --
    [10:24:00.362] GET https://www.virginiaseo.org/wp/wp-admin/load-styles.php?c=0&dir=ltr&load=dashicons,admin-bar,wp-admin,buttons,wp-auth-check,media-views,farbtastic&ver=3.9-alpha [HTTP/1.1 200 OK 408ms]
    [10:24:00.363] GET https://www.virginiaseo.org/wp/wp-content/plugins/easy-social-icons/css/cnss.css?ver=1.0 [HTTP/1.1 200 OK 253ms]
    [10:24:00.364] GET https://www.virginiaseo.org/wp/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/assets/css/avia-media.css?ver=3.9-alpha [HTTP/1.1 200 OK 253ms]
    [10:24:00.364] GET https://fonts.googleapis.com/css?family=Open+Sans%3A300italic%2C400italic%2C600italic%2C300%2C400%2C600&subset=latin%2Clatin-ext&ver=3.9-alpha [HTTP/1.1 200 OK 44ms]
    [10:24:00.365] GET https://www.virginiaseo.org/wp/wp-content/plugins/campaign-monitor-dashboard/css/dashboard-widget.css?ver=3.9-alpha [HTTP/1.1 200 OK 261ms]
    [10:24:00.365] GET https://www.virginiaseo.org/wp/wp-includes/js/thickbox/thickbox.css?ver=20131201 [HTTP/1.1 200 OK 285ms]
    [10:24:00.366] GET https://www.virginiaseo.org/wp/wp-admin/css/colors.min.css?ver=3.9-alpha [HTTP/1.1 200 OK 262ms]
    [10:24:00.366] GET https://www.virginiaseo.org/wp/wp-content/plugins/akismet/akismet.css?ver=2.5.9 [HTTP/1.1 200 OK 253ms]
    [10:24:00.367] GET https://www.virginiaseo.org/wp/wp-content/plugins/woocommerce/assets/css/admin.css?ver=1.4.1 [HTTP/1.1 200 OK 274ms]
    [10:24:00.367] GET https://www.virginiaseo.org/wp/wp-content/plugins/subscriptions/css/admin.css?ver=1.4.1 [HTTP/1.1 200 OK 261ms]
    [10:24:00.368] GET https://www.virginiaseo.org/wp/wp-content/plugins/wordpress-https/admin/css/admin.css?ver=3.3.6 [HTTP/1.1 200 OK 285ms]
    [10:24:00.369] GET https://www.virginiaseo.org/wp/wp-content/plugins/wp-to-buffer/_modules/dashboard/css/admin.css?ver=3.9-alpha [HTTP/1.1 200 OK 285ms]
    [10:24:00.369] GET https://www.virginiaseo.org/wp/wp-content/plugins/wp-to-buffer/css/admin.css?ver=2.2 [HTTP/1.1 200 OK 254ms]
    [10:24:00.370] GET https://www.virginiaseo.org/wp/wp-content/themes/enfold/config-layerslider/LayerSlider/css/global.css?ver=4.6.5 [HTTP/1.1 200 OK 261ms]
    [10:24:00.370] GET https://ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/themes/smoothness/jquery-ui.css?ver=3.9-alpha [HTTP/1.1 200 OK 40ms]
    [10:24:00.371] GET https://www.virginiaseo.org/wp/wp-content/plugins/woocommerce/assets/css/menu.css?ver=3.9-alpha [HTTP/1.1 200 OK 288ms]
    [10:24:00.373] GET https://www.virginiaseo.org/wp/wp-admin/load-scripts.php?c=0&load%5B%5D=jquery-core,jquery-migrate,utils,json2,plupload,plupload-html5,plupload-flash,plupload-silverlight,plupload-html4&ver=3.9-alpha [HTTP/1.1 200 OK 252ms]
    [10:24:00.374] GET https://www.virginiaseo.org/wp/wp-content/plugins/easy-social-icons/js/cnss.js?ver=1.0 [HTTP/1.1 200 OK 257ms]
    [10:24:00.375] GET https://www.virginiaseo.org/wp/wp-content/plugins/akismet/akismet.js?ver=2.5.9 [HTTP/1.1 200 OK 274ms]
    [10:24:00.376] GET https://www.virginiaseo.org/wp/wp-content/plugins/pinterest-pin-it-button-pro/js/admin-pro.js?ver=3.1.0 [HTTP/1.1 200 OK 274ms]
    [10:24:00.376] GET https://maps.google.com/maps/api/js?sensor=false&ver=1 [HTTP/1.1 200 OK 45ms]
    [10:24:00.377] GET https://www.virginiaseo.org/wp/wp-content/plugins/wordpress-seo/images/yoast-icon.png [HTTP/1.1 200 OK 284ms]
    [10:24:00.377] GET https://www.virginiaseo.org/wp/wp-content/plugins/pinterest-pin-it-button-pro/assets/pinterest-icon-16.png [HTTP/1.1 200 OK 285ms]
    [10:24:00.378] GET https://www.virginiaseo.org/wp/wp-content/plugins/easy-social-icons/images/scc-sc.png [HTTP/1.1 200 OK 274ms]
    [10:24:00.378] GET https://www.virginiaseo.org/wp/wp-content/plugins/wp-to-buffer/images/icons/small.png [HTTP/1.1 200 OK 285ms]
    [10:24:00.379] GET https://www.virginiaseo.org/wp/wp-content/themes/enfold/config-layerslider/LayerSlider/img/icon_16x16.png [HTTP/1.1 200 OK 499ms]
    [10:24:00.380] GET https://secure.gravatar.com/avatar/4f5ae5de0427c2bb8c40dddd112f62cb?s=26&d=https%3A%2F%2Fsecure.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D26&r=G [HTTP/1.1 200 OK 328ms]
    [10:24:00.380] GET https://secure.gravatar.com/avatar/4f5ae5de0427c2bb8c40dddd112f62cb?s=64&d=https%3A%2F%2Fsecure.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D64&r=G [HTTP/1.1 200 OK 325ms]
    [10:24:00.381] GET https://www.virginiaseo.org/wp/wp-content/plugins/wp-to-buffer/_modules/dashboard/images/logo.png [HTTP/1.1 200 OK 311ms]
    [10:24:00.381] GET https://www.virginiaseo.org/wp/wp-content/plugins/woocommerce/assets/js/admin/jquery.flot.min.js?ver=1.0 [HTTP/1.1 200 OK 270ms]
    [10:24:00.382] GET https://www.virginiaseo.org/wp/wp-content/plugins/woocommerce/assets/js/admin/jquery.flot.resize.min.js?ver=1.0 [HTTP/1.1 200 OK 259ms]
    [10:24:00.382] GET https://www.virginiaseo.org/wp/wp-content/plugins/woocommerce/assets/js/admin/dashboard_sales.min.js?ver=1.0 [HTTP/1.1 200 OK 260ms]
    [10:24:00.383] GET https://www.virginiaseo.org/wp/wp-content/plugins/backwpup/assets/css/backwpup.min.css?ver=3.1.1 [HTTP/1.1 200 OK 296ms]
    [10:24:00.384] GET https://www.virginiaseo.org/wp/wp-admin/load-scripts.php?c=0&load%5B%5D=jquery-ui-core,jquery-ui-widget,jquery-ui-mouse,jquery-ui-sortable,hoverIntent,common,admin-bar,wp-ajax-response,jquery-color,wp&load%5B%5D=-lists,quicktags,jquery-query,admin-comments,postbox,dashboard,customize-base,customize-loader,thickbox,plugin-install,underscor&load%5B%5D=e,shortcode,media-upload,svg-painter,heartbeat,wp-auth-check,backbone,wp-util,wp-backbone,media-models,wp-plupload,media-views,m&load%5B%5D=edia-editor&ver=3.9-alpha [HTTP/1.1 200 OK 609ms]
    [10:24:00.384] GET https://www.virginiaseo.org/wp/wp-content/plugins/wp-to-buffer/_modules/dashboard/js/admin.js?ver=2.2 [HTTP/1.1 200 OK 278ms]
    [10:24:00.385] GET https://www.virginiaseo.org/wp/wp-content/plugins/wp-to-buffer/js/admin.js?ver=2.2 [HTTP/1.1 200 OK 260ms]
    [10:24:00.333] Error in parsing value for 'filter'.  Declaration dropped. @ https://ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/themes/smoothness/jquery-ui.css?ver=3.9-alpha:51
    [10:24:00.387] GET https://www.virginiaseo.org/wp/wp-content/plugins/wordpress-seo/js/wp-seo-admin-global.js?ver=1.4.22 [HTTP/1.1 200 OK 333ms]
    [10:24:00.551] Unknown property '-moz-border-radius'.  Declaration dropped. @ https://www.virginiaseo.org/wp/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/assets/css/avia-media.css?ver=3.9-alpha:12
    [10:24:00.551] Unknown property 'box-sizing'.  Declaration dropped. @ https://www.virginiaseo.org/wp/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/assets/css/avia-media.css?ver=3.9-alpha:196
    [10:24:00.551] Error in parsing value for 'background-image'.  Declaration dropped. @ https://www.virginiaseo.org/wp/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/assets/css/avia-media.css?ver=3.9-alpha:231
    [10:24:00.551] Unknown property '-moz-box-shadow'.  Declaration dropped. @ https://www.virginiaseo.org/wp/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/assets/css/avia-media.css?ver=3.9-alpha:236
    [10:24:00.556] Unknown property '-moz-border-radius'.  Declaration dropped. @ https://www.virginiaseo.org/wp/wp-content/plugins/easy-social-icons/css/cnss.css?ver=1.0:32
    [10:24:00.557] Unknown property '-moz-border-radius'.  Declaration dropped. @ https://www.virginiaseo.org/wp/wp-content/plugins/akismet/akismet.css?ver=2.5.9:1
    [10:24:00.565] Error in parsing value for 'background-image'.  Declaration dropped. @ https://www.virginiaseo.org/wp/wp-content/plugins/subscriptions/css/admin.css?ver=1.4.1:7
    [10:24:00.565] Unknown property '-moz-border-radius'.  Declaration dropped. @ https://www.virginiaseo.org/wp/wp-content/plugins/subscriptions/css/admin.css?ver=1.4.1:51
    [10:24:00.567] Unknown property '-moz-border-radius'.  Declaration dropped. @ https://www.virginiaseo.org/wp/wp-content/plugins/campaign-monitor-dashboard/css/dashboard-widget.css?ver=3.9-alpha:51
    [10:24:00.570] Error in parsing value for 'filter'.  Declaration dropped. @ https://www.virginiaseo.org/wp/wp-admin/css/colors.min.css?ver=3.9-alpha:1
    [10:24:00.570] Expected media feature name but found '-o-min-device-pixel-ratio'. @ https://www.virginiaseo.org/wp/wp-admin/css/colors.min.css?ver=3.9-alpha:1
    [10:24:00.570] Expected media feature name but found '-webkit-min-device-pixel-ratio'. @ https://www.virginiaseo.org/wp/wp-admin/css/colors.min.css?ver=3.9-alpha:1
    [10:24:00.571] Unknown property '-moz-border-radius'.  Declaration dropped. @ https://www.virginiaseo.org/wp/wp-content/plugins/woocommerce/assets/css/admin.css?ver=1.4.1:1
    [10:24:00.571] Unknown property '-moz-box-shadow'.  Declaration dropped. @ https://www.virginiaseo.org/wp/wp-content/plugins/woocommerce/assets/css/admin.css?ver=1.4.1:1
    [10:24:00.571] Error in parsing value for 'background-image'.  Declaration dropped. @ https://www.virginiaseo.org/wp/wp-content/plugins/woocommerce/assets/css/admin.css?ver=1.4.1:1
    [10:24:00.572] Unknown property 'box-sizing'.  Declaration dropped. @ https://www.virginiaseo.org/wp/wp-content/plugins/woocommerce/assets/css/admin.css?ver=1.4.1:1
    [10:24:00.572] Unknown property 'zoom'.  Declaration dropped. @ https://www.virginiaseo.org/wp/wp-content/plugins/woocommerce/assets/css/admin.css?ver=1.4.1:1
    [10:24:00.573] Error in parsing value for 'letter-spacing'.  Declaration dropped. @ https://www.virginiaseo.org/wp/wp-content/plugins/woocommerce/assets/css/admin.css?ver=1.4.1:1
    [10:24:00.573] Unknown property '-moz-border-radius-topleft'.  Declaration dropped. @ https://www.virginiaseo.org/wp/wp-content/plugins/woocommerce/assets/css/admin.css?ver=1.4.1:1
    [10:24:00.573] Unknown property '-moz-border-radius-topright'.  Declaration dropped. @ https://www.virginiaseo.org/wp/wp-content/plugins/woocommerce/assets/css/admin.css?ver=1.4.1:1
    [10:24:00.574] Expected media feature name but found '-webkit-min-device-pixel-ratio'. @ https://www.virginiaseo.org/wp/wp-content/plugins/woocommerce/assets/css/admin.css?ver=1.4.1:1
    [10:24:00.574] Expected declaration but found '*'.  Skipped to next declaration. @ https://www.virginiaseo.org/wp/wp-content/plugins/woocommerce/assets/css/admin.css?ver=1.4.1:1
    [10:24:00.574] Error in parsing value for 'filter'.  Declaration dropped. @ https://www.virginiaseo.org/wp/wp-content/plugins/woocommerce/assets/css/admin.css?ver=1.4.1:1
    [10:24:00.574] Unknown property '-moz-background-clip'.  Declaration dropped. @ https://www.virginiaseo.org/wp/wp-content/plugins/woocommerce/assets/css/admin.css?ver=1.4.1:1
    [10:24:00.574] Error in parsing value for 'background'.  Declaration dropped. @ https://www.virginiaseo.org/wp/wp-content/plugins/woocommerce/assets/css/admin.css?ver=1.4.1:1
    [10:24:00.575] Expected color but found 'top'.  Error in parsing value for 'background-image'.  Declaration dropped. @ https://www.virginiaseo.org/wp/wp-content/plugins/woocommerce/assets/css/admin.css?ver=1.4.1:1
    [10:24:00.575] Unknown property '-moz-border-radius-bottomleft'.  Declaration dropped. @ https://www.virginiaseo.org/wp/wp-content/plugins/woocommerce/assets/css/admin.css?ver=1.4.1:1
    [10:24:00.575] Unknown property '-moz-border-radius-bottomright'.  Declaration dropped. @ https://www.virginiaseo.org/wp/wp-content/plugins/woocommerce/assets/css/admin.css?ver=1.4.1:1
    [10:24:00.613] Error in parsing value for 'filter'.  Declaration dropped. @ https://www.virginiaseo.org/wp/wp-includes/js/thickbox/thickbox.css?ver=20131201:47
    [10:24:00.613] Unknown property '-moz-opacity'.  Declaration dropped. @ https://www.virginiaseo.org/wp/wp-includes/js/thickbox/thickbox.css?ver=20131201:48
    [10:24:00.613] Error in parsing value for 'height'.  Declaration dropped. @ https://www.virginiaseo.org/wp/wp-includes/js/thickbox/thickbox.css?ver=20131201:54
    [10:24:00.613] Unknown property '-moz-box-shadow'.  Declaration dropped. @ https://www.virginiaseo.org/wp/wp-includes/js/thickbox/thickbox.css?ver=20131201:67
    [10:24:00.613] Error in parsing value for 'margin-top'.  Declaration dropped. @ https://www.virginiaseo.org/wp/wp-includes/js/thickbox/thickbox.css?ver=20131201:75
    [10:24:00.613] Unknown property 'speak'.  Declaration dropped. @ https://www.virginiaseo.org/wp/wp-includes/js/thickbox/thickbox.css?ver=20131201:188
    [10:24:00.613] Unknown property '-moz-osx-font-smoothing'.  Declaration dropped. @ https://www.virginiaseo.org/wp/wp-includes/js/thickbox/thickbox.css?ver=20131201:191
    [10:24:00.615] Error in parsing value for 'background-image'.  Declaration dropped. @ https://www.virginiaseo.org/wp/wp-content/plugins/wp-to-buffer/_modules/dashboard/css/admin.css?ver=3.9-alpha:29
    [10:24:00.627] Expected media feature name but found '-webkit-min-device-pixel-ratio'. @ https://www.virginiaseo.org/wp/wp-content/plugins/woocommerce/assets/css/menu.css?ver=3.9-alpha:1
    [10:24:00.740] Error in parsing value for '-moz-transition'.  Declaration dropped. @ https://www.virginiaseo.org/wp/wp-admin/load-styles.php?c=0&dir=ltr&load=dashicons,admin-bar,wp-admin,buttons,wp-auth-check,media-views,farbtastic&ver=3.9-alpha:1
    [10:24:00.740] Unknown property 'box-sizing'.  Declaration dropped. @ https://www.virginiaseo.org/wp/wp-admin/load-styles.php?c=0&dir=ltr&load=dashicons,admin-bar,wp-admin,buttons,wp-auth-check,media-views,farbtastic&ver=3.9-alpha:2
    [10:24:00.741] Unknown property 'speak'.  Declaration dropped. @ https://www.virginiaseo.org/wp/wp-admin/load-styles.php?c=0&dir=ltr&load=dashicons,admin-bar,wp-admin,buttons,wp-auth-check,media-views,farbtastic&ver=3.9-alpha:2
    [10:24:00.741] Unknown property '-moz-osx-font-smoothing'.  Declaration dropped. @ https://www.virginiaseo.org/wp/wp-admin/load-styles.php?c=0&dir=ltr&load=dashicons,admin-bar,wp-admin,buttons,wp-auth-check,media-views,farbtastic&ver=3.9-alpha:2
    [10:24:00.741] Unknown pseudo-class or pseudo-element '-webkit-input-placeholder'.  Ruleset ignored due to bad selector. @ https://www.virginiaseo.org/wp/wp-admin/load-styles.php?c=0&dir=ltr&load=dashicons,admin-bar,wp-admin,buttons,wp-auth-check,media-views,farbtastic&ver=3.9-alpha:2
    [10:24:00.741] Unknown pseudo-class or pseudo-element '-ms-input-placeholder'.  Ruleset ignored due to bad selector. @ https://www.virginiaseo.org/wp/wp-admin/load-styles.php?c=0&dir=ltr&load=dashicons,admin-bar,wp-admin,buttons,wp-auth-check,media-views,farbtastic&ver=3.9-alpha:2
    [10:24:00.741] Error in parsing value for 'min-width'.  Declaration dropped. @ https://www.virginiaseo.org/wp/wp-admin/load-styles.php?c=0&dir=ltr&load=dashicons,admin-bar,wp-admin,buttons,wp-auth-check,media-views,farbtastic&ver=3.9-alpha:2
    [10:24:00.742] Unknown pseudo-class or pseudo-element '-webkit-search-decoration'.  Ruleset ignored due to bad selector. @ https://www.virginiaseo.org/wp/wp-admin/load-styles.php?c=0&dir=ltr&load=dashicons,admin-bar,wp-admin,buttons,wp-auth-check,media-views,farbtastic&ver=3.9-alpha:3
    [10:24:00.743] Unknown property 'user-select'.  Declaration dropped. @ https://www.virginiaseo.org/wp/wp-admin/load-styles.php?c=0&dir=ltr&load=dashicons,admin-bar,wp-admin,buttons,wp-auth-check,media-views,farbtastic&ver=3.9-alpha:3
    [10:24:00.743] Error in parsing value for 'filter'.  Declaration dropped. @ https://www.virginiaseo.org/wp/wp-admin/load-styles.php?c=0&dir=ltr&load=dashicons,admin-bar,wp-admin,buttons,wp-auth-check,media-views,farbtastic&ver=3.9-alpha:3
    [10:24:00.748] Error in parsing value for 'transition'.  Declaration dropped. @ https://www.virginiaseo.org/wp/wp-admin/load-styles.php?c=0&dir=ltr&load=dashicons,admin-bar,wp-admin,buttons,wp-auth-check,media-views,farbtastic&ver=3.9-alpha:3
    [10:24:00.748] Unknown property 'touch-action'.  Declaration dropped. @ https://www.virginiaseo.org/wp/wp-admin/load-styles.php?c=0&dir=ltr&load=dashicons,admin-bar,wp-admin,buttons,wp-auth-check,media-views,farbtastic&ver=3.9-alpha:3
    [10:24:00.749] Expected media feature name but found '-o-min-device-pixel-ratio'. @ https://www.virginiaseo.org/wp/wp-admin/load-styles.php?c=0&dir=ltr&load=dashicons,admin-bar,wp-admin,buttons,wp-auth-check,media-views,farbtastic&ver=3.9-alpha:3
    [10:24:00.749] Expected media feature name but found '-webkit-min-device-pixel-ratio'. @ https://www.virginiaseo.org/wp/wp-admin/load-styles.php?c=0&dir=ltr&load=dashicons,admin-bar,wp-admin,buttons,wp-auth-check,media-views,farbtastic&ver=3.9-alpha:3
    [10:24:00.749] Unknown property '-moz-box-shadow'.  Declaration dropped. @ https://www.virginiaseo.org/wp/wp-admin/load-styles.php?c=0&dir=ltr&load=dashicons,admin-bar,wp-admin,buttons,wp-auth-check,media-views,farbtastic&ver=3.9-alpha:3
    [10:24:00.750] Error in parsing value for 'background-image'.  Declaration dropped. @ https://www.virginiaseo.org/wp/wp-admin/load-styles.php?c=0&dir=ltr&load=dashicons,admin-bar,wp-admin,buttons,wp-auth-check,media-views,farbtastic&ver=3.9-alpha:6
    [10:24:00.751] Error in parsing value for 'padding'.  Declaration dropped. @ https://www.virginiaseo.org/wp/wp-admin/load-styles.php?c=0&dir=ltr&load=dashicons,admin-bar,wp-admin,buttons,wp-auth-check,media-views,farbtastic&ver=3.9-alpha:6
    [10:24:00.754] Unknown property 'speak'.  Declaration dropped. @ https://www.virginiaseo.org/wp/wp-content/plugins/backwpup/assets/css/backwpup.min.css?ver=3.1.1:1
    [10:24:00.754] Unknown property '-moz-osx-font-smoothing'.  Declaration dropped. @ https://www.virginiaseo.org/wp/wp-content/plugins/backwpup/assets/css/backwpup.min.css?ver=3.1.1:1
    [10:24:00.754] Error in parsing value for 'background-image'.  Declaration dropped. @ https://www.virginiaseo.org/wp/wp-content/plugins/backwpup/assets/css/backwpup.min.css?ver=3.1.1:1
    [10:24:00.754] Unknown property '-moz-border-radius'.  Declaration dropped. @ https://www.virginiaseo.org/wp/wp-content/plugins/backwpup/assets/css/backwpup.min.css?ver=3.1.1:1
    [10:24:00.754] Unknown property '-moz-box-shadow'.  Declaration dropped. @ https://www.virginiaseo.org/wp/wp-content/plugins/backwpup/assets/css/backwpup.min.css?ver=3.1.1:1
    [10:24:00.754] Expected media feature name but found '-webkit-min-device-pixel-ratio'. @ https://www.virginiaseo.org/wp/wp-content/plugins/backwpup/assets/css/backwpup.min.css?ver=3.1.1:1
    [10:24:01.038] GET https://maps.gstatic.com/intl/en_us/mapfiles/api-3/15/6/main.js [HTTP/1.1 200 OK 79ms]
    [10:24:01.087] Expected media feature name but found '-o-min-device-pixel-ratio'. @ https://www.virginiaseo.org/wp/wp-admin/:104
    [10:24:01.087] Expected media feature name but found '-webkit-min-device-pixel-ratio'. @ https://www.virginiaseo.org/wp/wp-admin/:105
    [10:24:01.613] GET https://www.virginiaseo.org/wp/wp-content/plugins/w3-total-cache/pub/img/w3tc-sprite.png [HTTP/1.1 200 OK 239ms]
    [10:24:01.613] GET https://www.virginiaseo.org/wp/wp-content/plugins/campaign-monitor-dashboard/assets/cm-icon-dashboard.png [HTTP/1.1 200 OK 263ms]
    [10:24:01.614] GET https://themes.googleusercontent.com/static/fonts/opensans/v7/u-WUoqrET9fUeobQW7jkRT8E0i7KZn-EPnyo3HZu7kw.woff [35ms]
    [10:24:01.614] GET https://themes.googleusercontent.com/static/fonts/opensans/v7/MTP_ySUJH_bn48VBG8sNSha1RVmPjeKy21_GQJaLlJI.woff [0ms]
    [10:24:01.375] Unknown property 'box-sizing'.  Declaration dropped. @ https://www.virginiaseo.org/wp/wp-admin/
    [10:24:01.723] GET https://themes.googleusercontent.com/static/fonts/opensans/v7/u-WUoqrET9fUeobQW7jkRT8E0i7KZn-EPnyo3HZu7kw.woff [HTTP/1.1 200 OK 125ms]
    [10:24:01.723] GET https://themes.googleusercontent.com/static/fonts/opensans/v7/MTP_ySUJH_bn48VBG8sNSha1RVmPjeKy21_GQJaLlJI.woff [HTTP/1.1 200 OK 95ms]
    [10:24:01.724] GET https://www.virginiaseo.org/wp/wp-includes/js/thickbox/loadingAnimation.gif [HTTP/1.1 200 OK 127ms]
    [10:24:01.891] GET https://www.virginiaseo.org/wp/wp-admin/admin-ajax.php?action=dashboard-widgets&widget=dashboard_primary&pagenow=dashboard [HTTP/1.1 200 OK 12311ms]
    [10:24:06.143] GET https://maps.gstatic.com/cat_js/intl/en_us/mapfiles/api-3/15/6/%7Bcommon,util,stats%7D.js [HTTP/1.1 200 OK 96ms]
    [10:24:06.205] Error in parsing value for 'background'.  Declaration dropped. @ https://www.virginiaseo.org/wp/wp-admin/
    [10:24:06.272] GET https://maps.googleapis.com/maps/api/js/AuthenticationService.Authenticate?1shttps%3A%2F%2Fwww.virginiaseo.org%2Fwp%2Fwp-admin%2F&5e1&callback=_xdc_._y00e9t&token=43073 [HTTP/1.1 200 OK 50ms]
    
    in reply to: Admin Login Speed #207038

    No it is only Enfold. I have tried a couple of different themes. I also run a different site off of the same hosting and have used a couple of themes and see no problems. Seems to be site specific.

    in reply to: Admin Login Speed #207022

    I have a sinking suspicion that GoDaddy is what is causing this problem, and I am considering moving the site elsewhere.

    in reply to: SEO #207021

    Thank you, works great!

    in reply to: SEO #205018

    I am trying to add other pages to your function, and it does not seem to be working- what would I need to do to use this same method to change the H1 to a strong on a single page- in this case if(is_page( ‘seo-pricing’ )).

    It would be nice to have this function be a theme option- on every page where you select the header, there might be an option to change it off of a H1 in case someone wants to use their own heading system.

    in reply to: SEO #205014

    Great tip, thanks!

    in reply to: SEO #204888

    A downside to changing the H1 to a P is that on special pages which d not have content control there is no H1 tag for SEO purposes. An example is a product category sub page such as https://www.virginiaseo.org/product-category/consulting-services/page/3/

    in reply to: Gravatar Alt Tag #203292

    I also had to change the image size to 81 from 75 to fully fill the gray circle background.

    in reply to: PageSpeed Performance, Minify, Async, Etc #203099

    The best results I have gotten, after about 15 hours of testing:

    W3 Total Cache setup for defaults will all minify settings disabled.

    Better WP Minify enabled with the beta differed plugin installed, which “async’s” the files.

    Under Better WP Minify settings, I set “Scripts to be minified and then printed separately” to contain:

    admin-bar
    jquery
    avia-compat
    avia-default
    avia-shortcodes
    avia-js-child-chart
    avia-js-child-options
    avia-js-child-mychart

    Without jquery in there everything breaks. Without the compat, default, and shortcodes in there the home page bars and buttons do not load. The child scripts are for a HTML5 chart I use, and are not really in the equation here.

    If I remove any of those items, things break. With these settings I see 72/100 on mobile and 90/100 on desktop.

    The blocking scripts are the ones I have listed above, though there is a different number for mobile and for desktop. It is almost as if there is a theme function setup to load scripts differently on mobile devices, and this overrides the Better WP Minify settings.

    in reply to: Page Builder Hung #175461

    The only error I can find on the page is:

    Use of getPreventDefault() is deprecated.  Use defaultPrevented instead.
    http://www.virginiaseo.org/wp/wp-admin/load-scripts.php?c=1&load%5B%5D=jquery-core,jquery-migrate,utils,plupload,plupload-html5,plupload-flash,plupload-silverlight,plupload-html4,json2&ver=3.6.1
    Line 4
    in reply to: Multiple different sized footer columns #164846

    Ahh, I feel dumb for asking that question now, I forgot about overriding your CSS, and was focused on changing the PHP. Thank you so much!

Viewing 30 posts - 31 through 60 (of 60 total)