flyflyshi
Forum Replies Created
-
Forum: Plugins
In reply to: [Multi Order for WooCommerce] Split order with several productsI also appreciate if the feature comes out
Forum: Fixing WordPress
In reply to: an warning about call_user_func_arrayI modifed hc_buffere_end to izt_buffer_end, it worked. Thank you.
You know it’s not easy to use google service from China.Forum: Fixing WordPress
In reply to: an warning about call_user_func_arrayI added this content as below in the file ./wp_includes/functions.php
##
function hc_cdn_callback($buffer) {
return str_replace(‘ajax.googleapis.com/ajax/libs/jqueryui/1.8.2/themes/smoothness/jquery-ui.css?ver=5.4.2’, ‘cdn.bootcss.com/jqueryui/1.12.1/jquery-ui.min.css’, $buffer);
}
function hc_buffer_start() {
ob_start(“hc_cdn_callback”);
}
function izt_buffer_end() {
ob_end_flush();
}
add_action(‘init’, ‘hc_buffer_start’);
add_action(‘shutdown’, ‘hc_buffer_end’);
##
That is to replace the google link to another link. It’s resolved by deleting the last line.Forum: Fixing WordPress
In reply to: product permalinkThe content of the .htaccess is below
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule># END WordPress