Now, chrome is blocking it as well…. I dont think this is a server problem.
I checked showcasecarpet.com.ph on chrome and it’s all good..
firefox and chrome were cache cleared… Still getting this problem.
Can someone check the site admin?
Now, chrome is blocking it as well…. I dont think this is a server problem.
I checked showcasecarpet.com.ph on chrome and it’s all good..
firefox and chrome were cache cleared… Still getting this problem.
Can someone check the site admin?
Hello Olga,
If this was a server setting why showcasecarpet.com.ph are working fine?
They addressed the CORS problem. This is there answer.
Hello,
Please contact your theme’s developer and have them look into whether the issue with CORS is addressed with the changes that were made.
Should you have further questions or concerns, please feel free to update this ticket.
Regards,
Trevor
I dunno what’s happening here. I need to launch the site this june i want this to be fixed soon..
Just an update.
Firefox still blocks the font.
Not sure what is really happening.
The live site doesn’t have problem with regards to font on the theme.
Why i’m still getting this on the dev site?
wow! that was quick!
Added on Theme Custom CSS! Works awesome again! Thank you!!!!!!!
Will make a new topic if i found out some problem. Right now waiting for my host to fix the font issue!
Thanks again guys!
Hello. contacted them. They added htaccess on the site itself..
Will keep you updated.
Thank you! Works great!
works great! thanks
works perfectly! thanks
ok. i tried restoring the old theme function for the childtheme to no avail…
it works then it gets back to the default text.
we don’t have problem with showcasecarpet on both firefox and google.
settings on both site are almost identical!
i’ll put the old codes and see what happens..
old childtheme functions
<?php
add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles' );
function theme_enqueue_styles() {
wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css', array('bootstrap'));
if ( is_rtl() ) {
wp_enqueue_style( 'rtl-style', get_template_directory_uri() . '/rtl.css');
}
wp_enqueue_style( 'child-style',
get_stylesheet_directory_uri() . '/style.css',
array('parent-style', 'bootstrap')
);
function sv_remove_product_page_skus( $enabled ) {
if ( ! is_admin() && is_product() ) {
return false;
}
return $enabled;
}
add_filter( 'wc_product_sku_enabled', 'sv_remove_product_page_skus' );
}
/* Change Description Tab Title & Heading To Product Name
* http://gerhardpotgieter.com/2013/09/04/woocommerce-change-description-tab-title-heading-product-name/
*/
// Change the description tab heading to product name
add_filter( 'woocommerce_product_description_heading', 'wc_change_product_description_tab_heading', 10, 1 );
function wc_change_product_description_tab_heading( $title ) {
global $post;
return $post->post_title . ' Audio Sample';
}
// Add action to hook into the approp
add_filter( 'woocommerce_placeholder_img_src', 'growdev_custom_woocommerce_placeholder', 10 );
/**
* Function to return new placeholder image URL.
*/
function growdev_custom_woocommerce_placeholder( $image_url ) {
$image_url = 'http://onthecornermanila.com/images/placeholder.png'; // change this to the URL to your custom placeholder
return $image_url;
}
// To Move price underneath title use code
remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_price', 10 );
// remove action which show Price on their default location
add_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_price', 20);
// add action with Priority just more than the woocommerce_template_single_title ;
add_filter('woocommerce_single_product_image_thumbnail_html','wc_remove_link_on_thumbnails' );
// Change the Single Product Image Click
function wc_remove_link_on_thumbnails( $html ) {
return strip_tags( $html,'<img>' );
}
Might be a code problem with the codes you gave me? is it possible to check the childtheme functions?
just realised. i don’t think it’s a server problem since showcasecarpet were hosted on the same server… the site doesnt have any problem rendering text.
by the way, the other site that i’m managing has xstore and also hosted on the same server. Why only this website? http://prntscr.com/13g5oud please see the link.
showcasecarpet is working well. it has almost the same text/font settings with the other site that we are developing. why we are getting this problem at onthecorner?
Hi Olga,
Contacting them now. But this also occurs repeatedly on Chrome and Firefox.
Will add this to Theme Custom Css > Global Css?
hello, this is very weird. now both firefox and chrome doesnt render my font properly… what seem to be the problem?
i tried this on firefox…. text different
google chrome works ok now but firefox……
Hello, that one is the old one i forgot to delete. link in the private contecnt area.
before it was possible to do this with elementor right? You can change the layout/etc on each devices?
This is weird. It gets back to the other text afterwards.. What is happening? LOL
I tried to delete again the font folder. publish then the text on firefox changed again haha
YAY this fixed the problem. THANKS!!!!
Hello olga,
I updated the childtheme functions with the code you gave me.
Not sure what is happening on the dev site. The preview when editing the site looks fine on the text used (Montserrat) but when rendering the whole site on google chrome and firefox. Text used wan’t working.
Please check this
Right look for the site.
The text rendered on the browser isn’t Montserrat FYI. what do you think messing the css text on the dev site?
Thanks
Just want to confirm. There are a few other codes in the child theme functions.php
I don’t want to mess the other settings..
Please see all the code..
<?php
add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles' );
function theme_enqueue_styles() {
wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css', array('bootstrap'));
if ( is_rtl() ) {
wp_enqueue_style( 'rtl-style', get_template_directory_uri() . '/rtl.css');
}
wp_enqueue_style( 'child-style',
get_stylesheet_directory_uri() . '/style.css',
array('parent-style', 'bootstrap')
);
function sv_remove_product_page_skus( $enabled ) {
if ( ! is_admin() && is_product() ) {
return false;
}
return $enabled;
}
add_filter( 'wc_product_sku_enabled', 'sv_remove_product_page_skus' );
}
/* Change Description Tab Title & Heading To Product Name
* http://gerhardpotgieter.com/2013/09/04/woocommerce-change-description-tab-title-heading-product-name/
*/
// Change the description tab heading to product name
add_filter( 'woocommerce_product_description_heading', 'wc_change_product_description_tab_heading', 10, 1 );
function wc_change_product_description_tab_heading( $title ) {
global $post;
return $post->post_title . ' Audio Sample';
}
// Add action to hook into the approp
add_filter( 'woocommerce_placeholder_img_src', 'growdev_custom_woocommerce_placeholder', 10 );
/**
* Function to return new placeholder image URL.
*/
function growdev_custom_woocommerce_placeholder( $image_url ) {
$image_url = 'http://onthecornermanila.com/images/placeholder.png'; // change this to the URL to your custom placeholder
return $image_url;
}
// To Move price underneath title use code
remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_price', 10 );
// remove action which show Price on their default location
add_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_price', 20);
// add action with Priority just more than the woocommerce_template_single_title ;
add_filter('woocommerce_single_product_image_thumbnail_html','wc_remove_link_on_thumbnails' );
// Change the Single Product Image Click
function wc_remove_link_on_thumbnails( $html ) {
return strip_tags( $html,'<img>' );
}
Checking the childtheme functions. I can only see these codes.
<?php
add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles' );
function theme_enqueue_styles() {
wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css', array('bootstrap'));
if ( is_rtl() ) {
wp_enqueue_style( 'rtl-style', get_template_directory_uri() . '/rtl.css');
}
wp_enqueue_style( 'child-style',
get_stylesheet_directory_uri() . '/style.css',
array('parent-style', 'bootstrap')
);
function sv_remove_product_page_skus( $enabled ) {
if ( ! is_admin() && is_product() ) {
return false;
}
return $enabled;
}
I noticed theres an update. should i still put those codes on the childthemes? Thanks guys
Should i put this on each child theme (live and dev site?)
RThanks
Yes we have cache installed.. Will double check it again.. Thanks
working on it right now. trying to find the problem will keep you guys update. im testing the update on the dev site first before proceeding to the live site.
I know how to update plugins etc… But your theme when we update xstore it always messes up the site!
I’ve backed up the .dat file for the theme settings. even doing this the site after the update changed. The css change. Very frustrating.
Can you just check it? I’ve tried updating all the plugins etc on the dev site but the CSS changed.. This is frustrating! Everytime we need to update the theme. the site messed up. Good thing i have a dev site (which has license) to test before doing it to the live site.
the theme option needs to be save before updating the theme right?
upgrading the theme to new version without saving any files would ruin the site isnt it?
are you saying i should do this?