Arijuz
Forum Replies Created
-
Forum: WordPress Mobile App
In reply to: Error loading/manage pluginsIt occurs that when entering the plugins button on the starting page is clicked. Just saying an error occurred while loading the plugins. Same when I then hit the manage link on top of the screen. All this while using the dashboard and then plugins inside the app works fine.
Edit: sry for my english, but it is wiered that plugins get well loaded via the dashboard but not when I use the plugins link on the starting page of the app
- This reply was modified 1 year, 7 months ago by Arijuz.
Forum: Themes and Templates
In reply to: [Neve] Remove breadcrumbsI use Breadcrumbs NAVXT with Neve and here you are…
function hide_breadcrumbs_everywhere( $input ) { return false; } add_filter( 'neve_show_breadcrumbs', 'hide_breadcrumbs_everywhere', 10, 1 );
Now what it does is to simply return false whenever ‘neve_show_breadcrumbs’ is called.
So… no more breadcrumbs but still able to use breadcrumbs wherever you want when using e.g. the breadcrumbs navxt widget…
- This reply was modified 3 years, 1 month ago by Arijuz. Reason: missed a word
@lokeshkalosiya… Thank you so much! That did the job…
Short edit…
Got a quick solution, but..
I’m not happy with the solution i use right now:Copied the ical.php to mytheme/plugins/events-manager/templates and added
if (!is_user_logged_in()) { wp_redirect( 404 ); exit(); }
to the top of the page.
But… i would like to have a solution that keeps “mydomain.com/events.ics” in the webbrowsers url-line, so really noone recognizes the manipulation.
With the posted solution the url-line of the browsers displays “mydomain.com/404″… unlike other 404-redirects where the wrong url is still displayed after the redirect.
Any solution to make my events manager ical-plugin stealthy to non-members?