jsjs
Forum Replies Created
-
Forum: Reviews
In reply to: [SV Tracking Manager] Unfortunately not compatible with PHP 8.2.One more thing: Your plugin is recommmended by Usercentric as “Plugin from out partner straightvision”: https://usercentrics.com/de/knowledge-hub/wordpress-und-usercentrics/
I`m a usercentric customer, and installed the plugin. And my local wordpress was completely broke because of the deprecation notice and the wordpress admin asset thing. So even if this is open source plugin: That didn’t look to me like a plugin that a single developer put his free time into. It looked like a plugin from a commercially active company where im a paying customer. Perhaps one more reason why I quickly switched to bad rating.
Just that you can understand my perpective a bit more 🙂- This reply was modified 1 year, 10 months ago by jsjs.
Forum: Reviews
In reply to: [SV Tracking Manager] Unfortunately not compatible with PHP 8.2.Hi Matthias,
i`m sorry. I searched for the suport forum and did not find it. Link was more prominent in the past and I did not see another possibility of creating a bug report. Please do not overjudge this as a general failure culture thing. I was just in a rush and wanted to report the problem.
I created a topic with my issues
https://ww.wp.xz.cn/support/topic/deprecation-warning-in-php-8-2-and-incompatibility-with-roots-sage/
Sorry again,Johannes
Forum: Plugins
In reply to: [Custom Post Type UI] Incompatibility with BuddyBossUnfortunately it causes real problems:
- I can`t edit the “has archive” value – There is just no control where the dropdown normally is in wp admin
- Archive does not show up. Even not if I disable the BuddyBoss pro Plugin, save the post type (without errors) and activate the BuddyBoss Plugin again. And then save Permalink settings – /post-type-slug is just a 404. /post-type-slug/my-post is visible
- BuddyBoss, BuddyBossPro and Custom Post Type UI are the only activated plugins
- If I disable BuddyBoss Pro, everything works fine. No Warning, archive is shown like expected
Forum: Hacks
In reply to: WordPress add_rewrite_rule problems when rewriting to startpageHi bcworkz,
thank you for your detailed answer. In the meantime, I found the solution by myself. It was the canonical redirect, which can be disabled by the following code:
function disable_canonical_redirect_for_front_page( $redirect ) { if ( is_page() && $front_page = get_option( 'page_on_front' ) ) { if ( is_page( $front_page ) ) $redirect = false; } return $redirect; } add_filter( 'redirect_canonical', 'disable_canonical_redirect_for_front_page' );Forum: Hacks
In reply to: WordPress add_rewrite_rule problems when rewriting to startpageBut I don’t want to only get the tags variable: I want the user (and search engines) to see /mypath/tag1,tag2,tag3/ as URL in the Browser.
Can nobody tell me, what is happening there, and how I can avoid it?