gonowp-org
Forum Replies Created
-
Forum: Plugins
In reply to: [Multipage] Can I change the navigation label string and TOC header string?I would like to be able to change it flexibly without using translation files.
I wrote the code myself. It seems to work fine, but can you check it just in case?
// Change Multipage String function change_mpp_strings($content){ $old_toc = '<h2>Contents<\/h2>'; $new_toc = '<div>Index</div>';//Replace "div" & "Index" with your tag & string. $old_toc_intro = '/(<a href=.*?">)Intro(<\/a>)/'; $alt_toc_intro = 'Overview';//Replace "Overview" with your string. $old_nav_f = '<div class="nav-links">Continue:'; $new_nav_f = '<div class="nav-links">Next:';//Replace "Next" with your string and post-fix. $old_nav_b = '<div class="nav-links">Back to:'; $new_nav_b = '<div class="nav-links">Previous:';//Replace "Previous:" with your string and post-fix. $pattern = array("/$old_toc/","/$old_nav_f/","/$old_nav_b/"); $replace = array($new_toc, $new_nav_f, $new_nav_b); $content = preg_replace($pattern, $replace, $content); $replace_intro = '$1'.$alt_toc_intro.'$2'; $content = preg_replace($old_toc_intro, $replace_intro, $content); return $content; } add_filter('the_content', 'change_mpp_strings', 999);
Forum: Plugins
In reply to: [Multipage] Subpage block does not load (404 error mpp-editor-blocks.js)Thank you for updating.
This is a great plugin!Thank you for the screenshots.
* Subpage slug doesn’t seem to be implemented yet.
* The fourth screenshot file is broken?Forum: Plugins
In reply to: [Multipage] Subpage block does not load (404 error mpp-editor-blocks.js)Thank you for your reply.
by the way, I suggest posting an image of the Subpage block in the screenshot section of the plugin detail page. (For block editor users)
Thank you.
Does the keyword work if I specify a string in the URL?
I have added another keyword, “pagead” (without the s).
It seems to be used for the “Matched content” unit and the “Link Ads” unit.I’ll see if this setting solves the problem for a day or two.
Note. The display language of my Admin screen is usually Japanese.I temporarily switched to English.
OK,
I have submitted your login information.My rental server usually restricts access to the Admin screen from abroad, so please let me know the time required for confirmation. It is currently accessible.
Note: You may see the Cloud Flare Challenge screen.An example of a page where each ad unit is located.
h t t p s:// my-site-url /difference-olcom-ol/thank you for helping me.
I sent my URL from your site.
For your validation, I have only enabled this plugin for one hour from now.The number of times ads from a linked publisher account (Adsense, Google Ad Manager) were clicked on your site.
Google Analytics Help – Publisher Clicks
Thank you for your reply.
The Dropbox link below is a screenshot of Google Analytics.
screen shotPublisher Click surged from the day that the plugin was activated (January 10), and returned after it stopped.
Forum: Plugins
In reply to: [WP Last Modified Info] Stop output of author’s URLHi Sayan,
Thank you for your quick support. It worked well.