gotgotf
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Change visibility of out of stock items in WooCommerceIn your code, you have <li class=”disabled
The “disabled” class adds a red cross.I think this is customizable from your woo varation swatches plugin.
If not, add that in your css :
li.disabled .variable-item-contents::after {
display: none !important;
}
li.disabled .variable-item-contents::before{
display: none !important;
}Forum: Fixing WordPress
In reply to: fatal error script-loader.phpDo you have the “wp_enqueue_block_style()” function in your function.php file or elsewhere?
To be sure, you can load the default WP theme and check if you still have the error.
It’s strange, there is no “wp_enqueue_block_style()” function in blocks.php normally.
Source :
https://github.com/WordPress/WordPress/blob/master/wp-includes/blocks.php#L1206Forum: Fixing WordPress
In reply to: 410 Gone ErrorI think it’s a problem with your host. The site is disabled.
Forum: Fixing WordPress
In reply to: Limiting Number of Post Revision causes HTTP 500Forum: Fixing WordPress
In reply to: 403 error<figure> <figcaption>Listen to the T-Rex:</figcaption> <audio controls src="/media/cc0-audio/t-rex-roar.mp3"> Your browser does not support the <code>audio</code> element. </audio> </figure>
Forum: Fixing WordPress
In reply to: Edit Woo Core function wc_setcookie() for SameSiteIt is not possible to send cookies to an Iframe from a web page.
Forum: Fixing WordPress
In reply to: Limiting Number of Post Revision causes HTTP 500Forum: Plugins
In reply to: [PDF.js Viewer] Microsoft Edge – unsafe contentHello,
I find a strange solution…Rename viewer.php (/pdfjs/web) by vv.php
Change on function pdfjs_generator (/inc/embed)
$viewer_base_url = plugin_dir_url( __DIR__ ) . ‘pdfjs/web/viewer.php.php’;
by
$viewer_base_url = plugin_dir_url( __DIR__ ) . ‘pdfjs/web/vv.php’;Forum: Themes and Templates
In reply to: Custom header for certain page – PHP helpinsert it in header.php,
Forum: Fixing WordPress
In reply to: Internal Server Error/ can access to adminchmod 644 in wp-admin
Forum: Fixing WordPress
In reply to: Homepage not displaying (including default theme)url ?
Forum: Themes and Templates
In reply to: My wordpress errorjust an erreur 500…
or rename your theme from FTP, and past default theme.Forum: Themes and Templates
In reply to: My wordpress errorremove .htacess from your FTp, and test it
Forum: Fixing WordPress
In reply to: How do I embed a quicktime .MOV file?post your mov in You Tube
Forum: Fixing WordPress
In reply to: Remove sidebar from Fifteen theme posts/pagesyes