4090
Forum Replies Created
-
Likewise,I would like some help. https://www.travelideology.com is giving the same error I would like to fix.
Eliminate render-blocking JavaScript and CSS in above-the-fold content
Your page has 1 blocking script resources and 2 blocking CSS resources. This causes a delay in rendering your page.
Approximately 24% of the above-the-fold content on your page could be rendered without waiting for the following resources to load. Try to defer or asynchronously load blocking resources, or inline the critical portions of those resources directly in the HTML.
Remove render-blocking JavaScript:https://ajax.googleapis.com/ajax/libs/webfont/1.5.18/webfont.js
Optimize CSS Delivery of the following:https://fonts.googleapis.com/…800,+italic%7CCourgette:latin,+latin-ext
https://netdna.bootstrapcdn.com/…t-awesome/4.1.0/css/font-awesome.min.cssCan anyone tell me how to fix it.
thanks. It workedwell.
on my website https://www.sydney-tours.com.au
The Spanish version of the site has two versions
1. https://www.sydney-tours.com.au/es
2. https://www.sydney-tours.com.au/es/I need for there to be only one version (not a redirect) for SEO purposes.
The culprit is in the nav-bar
Can anyone tell me how to do so?
Forum: Themes and Templates
In reply to: [Appointment] Appointment BlueOK Sorted.
Used
.page-title-section {
display:none;
}Forum: Themes and Templates
In reply to: [Appointment] Appointment Blue with WoocommerceHave sorted this out.
Thanks
Forum: Plugins
In reply to: [WooCommerce] Woocommerce Category Title = first productI have tried this php code.
However, I am not sure if I am coding it incorrectly. This is what I have in the child theme functions.php
<?php
add_action( ‘wp_enqueue_scripts’, ‘appointment_blue_theme_css’,999);
function appointment_blue_theme_css() {
wp_enqueue_style( ‘parent-style’, get_template_directory_uri() . ‘/style.css’ );
wp_enqueue_style( ‘bootstrap-style’, get_template_directory_uri() . ‘/css/bootstrap.css’ );
wp_enqueue_style( ‘theme-menu’, get_template_directory_uri() . ‘/css/theme-menu.css’ );
wp_enqueue_style( ‘default-css’, get_stylesheet_directory_uri().”/css/default.css” );
wp_enqueue_style( ‘element-style’, get_template_directory_uri() . ‘/css/element.css’ );
wp_dequeue_style(‘appointment-default’,get_template_directory_uri() .’/css/default.css’);
}?>
<?php
// Change Shop page title
// code goes in functions.php for your child theme
// used for themes that use a product title for the shop page title
add_filter(‘post_type_archive_title’, ‘shop_page_title’ );
function shop_page_title( $title ) {
if( $title == __(‘Products’, ‘woocommerce’)) {
$shop_page_id = woocommerce_get_page_id( ‘shop’ );
$page_title = get_the_title( $shop_page_id );
return $page_title;
}
return $title;
}
?>I have also added the following code to the end of the styles.css
.archive #intro.option1 h1.page-title span {visibility:hidden}
.archive #intro.option1 h1.page-title:before {content:’Shop’}Any other ideas or have I implemented it incorrectly? Whilst I have programmed in HTML and javascript for a long time, I am new to wordpress and php.