David
Forum Replies Created
-
Forum: Plugins
In reply to: [Yoast SEO] Multisite settings remoed after plugin updateThe error was caused by another plugin giving a js error.
Forum: Plugins
In reply to: [Yoast SEO] Multisite settings remoed after plugin updateHello Moderator,
the other topic wasn’t a duplicate so i’ll explain it again:
No settings show up if i try to access the settings pages from a subsite. See this screenshot:
https://www.dropbox.com/s/f77qk9nj0fqacvu/yoast_settings.png?dl=0
The issue described above is about the multisite settings page. seems like the settings get flushed after someone registers and a new subsite is created.
Best,
DavidForum: Plugins
In reply to: [WP Activity Log] Deregister Dashboard WidgetHi @wpwhitesecurity,
thank you for your reply!
I know about the settings and i am looking for something like this:
remove_action('wp_dashboard_setup','wp_security_audit_log');
thanks!
Forum: Plugins
In reply to: [Yoast SEO] Multisite settings remoed after plugin updateI’ve figured out, that these settings get flushed if i create a new subsite (or a new user signs up) and the settings won’t apply to the created subsite!
[Moderator Note: No bumping, thank you.]
Forum: Plugins
In reply to: [Polylang] call pll_get_term(); from a non-category page?Sure,
thanks again!Forum: Plugins
In reply to: [Polylang] call pll_get_term(); from a non-category page?Got it working:
echo get_category_link(pll_get_term(162));
Thanks!
Forum: Plugins
In reply to: [Polylang] call pll_get_term(); from a non-category page?Hey Chrystl,
thanks for your reply! It works until i get to a 404 in a different language, how to translate the link? Don’t know what i am doing wrong here.
Best,
DavidForum: Plugins
In reply to: [Qtranslate Slug] Problem with Category SlugsHey Pedro,
there i am again ??
i now tried to display my posts on pages instead of using categories. I could just hide the categories from being displayed in search-engines but:
lets say i have created the categories (and added a subcategory) above as pages.
this would be the main-url:
https://www.mysite.com/spanish-cat-as-page/spanish-sub-cat-as-page/
these urls are (but shouldn’t be) accessable:
note: main site is spanish and languages are displayed like this mysite.com/en/ for english and mysite.com/fr/ for french for example)mysite.com/english-cat-as-page/english-sub-cat-as-page/ (can be opened even without /en/ after mysite.com)
while:
mysite.com/en/spanish-cat-as-page/spanish-sub-cat-as-page/ gives out a 404 (means it works)another one:
mysite.com/spanish-cat-as-page/english-sub-cat-as-page/ can be opened while:
mysite.com/en/english-cat-as-page/spanish-sub-cat-as-page/ gives out a 404 (works).I hope that helps! ??
Best,
DavidForum: Plugins
In reply to: [Qtranslate Slug] Problem with Category SlugsHey Pedro,
thank you for your fast response!
Exactly! In this example, spanish is the standard language and your url would bring out a 404.
No problem, just wanted to report the issue. In my case this would kill my SEO while indexing pages which shouldn’t exist. The Sitemap (Yoast) is working fine and the categories are showing up properly there by the way! ??
Best,
DavidForum: Plugins
In reply to: [qTranslate X] bbPress Forum descriptions not translatedBUMP ??
Forum: Plugins
In reply to: [qTranslate X] bbPress Forum descriptions not translatedForum: Plugins
In reply to: [qTranslate X] bbPress Forum descriptions not translatedI just added a little jQuery to hide my new Support Status from non-admins:
// Remove Planned From non-Admins if(!current_user_can('Administrator')) { add_action('wp_footer','my_custom_bbpress_jquery'); function my_custom_bbpress_jquery() { $output='<script type="text/javascript">jQuery(".support-select-status option[value=3]").remove();</script>'; echo $output; } }
Forum: Plugins
In reply to: [qTranslate X] Integration | Multisite Network Plugin SettingsHey @john,
thank you for your reply! You are right, sometimes the translation is working, sometimes not – i will check that. I think it depends on textareas and normal text input fields, but i am not sure.
I’ll keep you updated! I will also try to use Integration via class and id.
Best wishes,
DaveForum: Plugins
In reply to: [qTranslate X] bbPress Forum descriptions not translated