• Resolved kike0128

    (@kike0128)


    Hi
    I have the Event Calendar plugin installed and it presents these two problem logs
    I copy the index lines of each of them

    1
    Notice: Undefined variable: bare_url in …../wp-content/plugins/event-calendars/index.php on line 35
    Notice: Undefined variable: comment_id in …../wp-content/plugins/event-calendars/index.php on line 35

    34 function Total_Soft_EvCal_Admin_Menu(){
    35 $complete_url = wp_nonce_url( $bare_url, ‘edit-menu_’.$comment_id, ‘TS_EvCal_Nonce’ );

    2
    Notice: Undefined variable: comment_id in ……/wp-content/plugins/event-calendars/Includes/Event-Calendar-New.php on line 75

    function Total_Soft_Product_Cal_Ev()
    {
    require_once(dirname(__FILE__) . ‘/Includes/Total-Soft-Products.php’);

    Event Calendar 1.0.4 + WordPress 5.3.2 + PHP 7.3 + Elementor Pro 2.8.3 + Theme Astra Pro 2.2.4

    A solution of you is possible
    Thanks
    Enrique

    • This topic was modified 5 years, 2 months ago by kike0128.

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Plugin Author totalsoft

    (@totalsoft)

    Hello, dear kike0128.

    To solve your problem, edit the index.php plugin file. Please delete the code on the 35 line.

    function Total_Soft_EvCal_Admin_Menu(){
    $complete_url = wp_nonce_url( $bare_url, ‘edit-menu_’.$comment_id, ‘TS_EvCal_Nonce’ );

    and write here like this:

    function Total_Soft_EvCal_Admin_Menu(){
    $bare_url = “”;
    $comment_id = “”;
    $complete_url = wp_nonce_url( $bare_url, ‘edit-menu_’.$comment_id, ‘TS_EvCal_Nonce’ );

    Thank you.

Viewing 1 replies (of 1 total)
  • The topic ‘Event Calendar Error Index.php’ is closed to new replies.