Serj Komarov
Forum Replies Created
-
Forum: Plugins
In reply to: [Permalink Manager Lite] 404 in urls with numbers in the endHi @mbis!
Thanks a lot for a quick responce! Unfortunately this new release doesn’t help, so for now I decided to fix it over the code (added redirect if url ends with numbers). Also I noticed that on the page with numbers in the end of url I’m still getting correct uri from
get_permalink()
function.Forum: Plugins
In reply to: [Web Stories] Blank screen on frontend with Sage 10 themeFinally I’ve found out the source of issue, it was some custom code, of course ?? It was something like this:
add_filter('the_content', 'replace_blockquote', 9999); function replace_blockquote($content) { ... $content = preg_replace('/<blockquote(.*?)>/', '<blockquote $1>' . $icon, $content); ... }
By the way, issue with blank screen on frontend reproduced only in case then web story has no title, when I added title – all good.
Thanks for help!
Forum: Plugins
In reply to: [Web Stories] Blank screen on frontend with Sage 10 themeI’ve found the last working version of plugin for me, it’s 1.27.0, since 1.28.0 I see only white screen on front-end. Seems like filter_template_include() in Single.php does’t run from this version (because I can’t see any output information via var_dump() inside this function, for example), so because of this single-web-story.php doesn’t return there.
I tried to compare $this->context right after ‘single_template’ and ‘template_include’ in register() and there are some differences in these versions of plugin:
1. [“wp_customize”:”Google\Web_Stories\Admin\Customizer“:private]
1.27.0 = uninitialized(WP_Customize_Manager)
1.28.0 = NULL2. [“register_styles“:protected]
1.27.0 = array(0)
1.28.0 = [“web-stories-embed”]=>bool(true)
[“web-stories-block”]=>bool(true)3. [“register_scripts“:protected]
1.27.0 = array(0)
1.28.0 = [“web-stories-block”]=>bool(true)
Don’t know if it’s the reason, but I’m continuing to investigate this issue.Forum: Plugins
In reply to: [WP Telegram (Auto Post and Notifications)] Deprecated messages on PHP 8.1Great, thanks a lot!