korbball
Forum Replies Created
-
Hi Savvas
I had to made something like a work around, because If I remove the spdetails_div it “forgot” the details after updateing an event or team.
Howerver, this is the workaroud I’m using now:
1. Uncheck boxes for the “unnessesary” metaboxes
2. Hide the “Screen Options” for spesific users// Funktion w?hlt alle Metaboxen aus, die Verdeckt werden sollen. // Function choose all metaboxes which shall disappear add_filter('hidden_meta_boxes', 'hide_meta_box_attributes', 10, 2); function hide_meta_box_attributes( $hidden, $screen) { $hidden = [ 'pageparentdiv', //Seitenatribute 'sp_detailsdiv', //Team Details 'postimagediv', //Team Logo 'sp_staffdiv', //Stafflist 'sp_listsdiv', //Playerlist 'postexcerpt', //Excerpt (Auszug) 'slugdiv', //Titelform ]; return $hidden; } // Hide Screen Options for all users without "manage_options" capability // Ansicht anpassen wird für alle ausgeblendet ausser für Benutzer die manage_options haben. add_filter('screen_options_show_screen', 'remove_screen_options'); function remove_screen_options(){ if(!current_user_can('manage_options')) { return false; } return true; } // Entfernt Editor und Titel bei Teams für Mannschaftsführer // Removes editor and title on team pages (team manager shall not change this data!) add_action('admin_init', 'sp_team_hide_editor'); function sp_team_hide_editor() { if (!current_user_can('manage_options')) remove_post_type_support('sp_team', 'title'); remove_post_type_support('sp_team', 'editor'); }
The code is in the functions.php file of the child theme. Using Code Snippets would work too.
Maybe you have another and better solution.
best regards
korbball- This reply was modified 5 years, 6 months ago by korbball.
Hi Savvas
I it is possible to hide the wit AAM but when I hide the Detail – ist not possible for the usere for example to select a league table and Show it on the Team page. so it disable this Funktion too. It is not a Problem of the capabilities.
I’ve tried this codes from plugintests.com
function plt_hide_sportspress_metaboxes() { $screen = get_current_screen(); if ( !$screen ) { return; } //Hide the "Details" meta box. remove_meta_box('sp_detailsdiv', $screen->id, 'side'); } add_action('add_meta_boxes', 'plt_hide_sportspress_metaboxes', 20);
But it doesnt work. I’dont know why it is not possible to hide this meta.
I’d like to have a Code snipet to insert in the funktions.php file.best regards
korbballForum: Plugins
In reply to: [Events Manager - OpenStreetMaps] Wodpress fatal issue with 2.8.0When will you fix the update?
My site crashed too and I had to remove the plugin!But nice plugin, aslong it works ??
Forum: Plugins
In reply to: [Shariff Wrapper] Anomalie mit Favorites PluginHallo Jan-Peter
Perfekt. a) hat funktioniert.
Gruss Korbball
Forum: Plugins
In reply to: [Favorites] [user_favorites] issueIssue does not appear on home, only on subpages like
https://korbball.tgtv.ch/team/Best Regards
Korbball- This reply was modified 5 years, 7 months ago by korbball.
Forum: Plugins
In reply to: [Shariff Wrapper] Whatsapp – Link konnte nicht ge?ffnet werdenHallo Jan-Peter
Vielen Dank für deinen Einsatz! Ich war mir nicht sicher ob es etwas mit dem SuperPWA Plugin zu tun haben k?nnte.
Nochmals Vielen Dank.
Gruss KorbballForum: Plugins
In reply to: [Shariff Wrapper] Whatsapp – Link konnte nicht ge?ffnet werdenHallo Jan-Peter
Der zweite Link von dir
https://api.whatsapp.com/send?text=Ich%20bin%20an%20der%20Wohnung%20interessiert
Funktioniert bei mir mit Android und Galaxy S7
Gruss Korbball
Forum: Plugins
In reply to: [Max Mega Menu] Menu appearance internet explorerWorks perfect, thank you
Korbball
Forum: Plugins
In reply to: [SportsPress - Sports Club & League Manager] Shift FixturesHi @savvasha
Genearly the plugin works, but now i have the problem that also the time get shifted.
I only wanna shift the date of e.g. 8 fixtures at the same evening and they have 4 different starting times, I dont wanna change the time.Is there a solution for it?
Forum: Plugins
In reply to: [SportsPress - Sports Club & League Manager] Calendar Feed ProblemsHi Savvass
I replaced the
feeds/ical.php
file with the one you showed me
ical.phpI also readded the calendar on google, i also deleted the calendar and make a new one. nthing changed.
Still only works on Outlook. Google doesnt work…
Thank you for your Help
korbball
Forum: Plugins
In reply to: [SportsPress - Sports Club & League Manager] Calendar Feed ProblemsHi Roch
Thanks for your reply. As I said before, when I open the google link, google shows no Events inside this calendar, just shows an empty calendar.
Do you see any events?
Forum: Plugins
In reply to: [SportsPress - Sports Club & League Manager] Calendar Feed ProblemsHi Roch
These are the three links are provided by sportspress when you enter calender in wp-admin.
webcal://korbball.tgtv.ch/calendar/eggethof-1-calendar?feed=sp-ical
webcal://korbball.tgtv.ch/calendar/eggethof-1-calendar?feed=sp-ical
Only the outlook one is working! Google feed shows no events.
Idk why.
Thanks
Forum: Plugins
In reply to: [SportsPress - Sports Club & League Manager] Shift FixturesHi Savvas
Perfekt! The bulk edit publish date works great.
Thank you
Forum: Plugins
In reply to: [SportsPress - Sports Club & League Manager] Countdown change LanguageDone ??
Forum: Plugins
In reply to: [SportsPress - Sports Club & League Manager] Countdown change LanguageHi
Thank you. The issue was, that I have choosen german switzerland. I changed to German only and it worked. Thx.