disable GUTENBERG by introducing plugin Disable Gutenberg.
custom field by Custom field Template are recovered on edit page.
disable GUTENBERG by introducing plugin Disable Gutenberg.
custom field by Custom field Template are recovered on edit page.
The following patch in the “post-template.php” was successful.
/* if ( $elements['page'] > count( $elements['pages'] ) ) { // if the requested page doesn't exist
$elements['page'] = count( $elements['pages'] ); // give them the highest numbered page that DOES exist
}
*/ //replaced by the following 2019/11/11 k.n.
if ( ! empty( $pages ) ) {
if ( $page > count( $pages ) ) // if the requested page doesn't exist
$page = count( $pages ); // give them the highest numbered page that DOES exist} else {
$page = 0;
}
//replace end
Spam acknowledging of ham at the inbound message of flaming does not seem to affect the ham thereafter.
1.Again work on jtg1.japantourguide:Akismet activated key 52beeb76581d
2. Experienced many times “cannot login”. They were kind of cleared by renaming plugins and themes using ftp.
3. Finally became in good shape by recovering appropriate themes adventure and adventure-child.
4. There remains: on mobile (at least my m03), contact form submit button barely accessed.
52beeb76581d;The following is not the actual process performed, rather organized or cleaned process.
1. Open new subdomain nakym2.tokyoguide-noriko.net
1.1 login to lolipop:
1.2 make subdomain: nakym2.tokyoguide-noriko.net
1.3 WP簡単インストール:
2. The following process is performed by FFFTP preferably on oldKiyoshi.
Source means 192.168.0.17/kblog/, target means nakym2.tokyoguide-noriko.net/.
2.1 In target: rename: wp-content -> wp-content.nakym2.org, wp-config.php->wp-config.php.nakym2.org
2.2 Copy wp-content, of source to target /. ( first download to local then upload to target)
2.3 download wp-config.php from source -> rename wp-config.org.php
2.4 download wp-config.nakym2.org ->rename to wp-config.php
2.5 Rewrite wp-config.php: change database prefix to the original source one; upload to target.
2.6 upload murasecret (better) or knsecret to target /
2.7 export database from source and import to target.
2.8 visit murasecret or knsecret at target site and perform necessary procedure.
2.9 Done!
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTP_HOST} ^jtg1\.japantourguide\.net$ [OR]
RewriteCond %{HTTP_HOST} ^www\.jtg1\.japantourguide$
RewriteRule (.*)$ http://jsst4.japantourguide.net/$1 [R=301,L]
</IfModule>
<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
Add this cssAdd this css
/* =Fixed Width——————————————————– */#container,#footer { width: 960px!important;}Add this php to the functions.php in the child theme
// Disable media queries<?phpfunction remove_media_queries() {wp_dequeue_style( ‘responsive-media-queries’ );}add_action( ‘wp_enqueue_scripts’, ‘remove_media_queries’, 20 );?>You may also need to remove or comment out the viewport meta data in your child theme’s header.php file.
Further info here