Forum Replies Created

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter Arijuz

    (@arijuz)

    It 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.

    I 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
    Thread Starter Arijuz

    (@arijuz)

    @lokeshkalosiya… Thank you so much! That did the job…

    Thread Starter Arijuz

    (@arijuz)

    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?

Viewing 4 replies - 1 through 4 (of 4 total)