You have the same username as the plugin author? o.O
The error comes from line 444:
There’s two characters between ?>
and the next <?php
Change:
add_action( 'admin_menu','business_hours_menu' );
?>
<?php
add_action( 'widgets_init', 'lordlinus_businesshour_load' );
To:
add_action( 'admin_menu','business_hours_menu' );
add_action( 'widgets_init', 'lordlinus_businesshour_load' );
Related Posts:
- No Error Log File, no debug info
- How should one implement add_settings_error on custom menu pages?
- Prevent notice and warnings in error_reporting?
- How to log plugin errors to plugin error_log file
- Catch own Exceptions
- Throw 403 in a plugin [duplicate]
- why don’t I get error messages in admin when developing?
- WP_Error handles errors, but how can I show success with a message?
- Settings API – Undefined Index when unchecking checkbox
- Error : “Updating failed: The response is not a valid JSON response” with custom shortcode
- How can I display an error message after post has been saved?
- Execution limit and Memory limit errors even i changed to 1024M and 600(cache.php,load.php)?
- Proper way to pass credentials in a custom login form to avoid “headers already sent”
- Two functions utilizing registration_errors filter
- How can I gracefully escape an error condition?
- WordPress debug messages not displaying
- Custom Post Type Object – Undefined Variables
- Reporting errors in a shortcode plugin
- What might be the reason of Couldn’t fetch mysqli_result on another domain?
- Plugin can’t be activated [closed]
- How do I debug an error that a plugin is causing?
- Need Help Determining Where Header Error is Happening
- “Rendering of admin template [path to template] failed”
- Is there any way to pass messages from a script to a redirect target in a hidden fashion?
- Import images remotly run through timeout error
- Error code when migrate
- WPGut – Updating failed and shortcode?
- GET request return value as error instead of success
- WP_Fatal_Error_Handler OR WP_Error OR try/catch
- Custom Plugin activation error in Multisite
- Warning: Illegal string offset – on homepage
- Not able to Update database while creating a custom module
- Plugin error on activation – breaks page encoding and prints the code of plugin php files
- Trying to build a plugin – Cannot modify header information
- Should I use spl_autoload_register() in my plugin?
- function deactivate_plugins does not exist
- what’s the meaning of the field wp_capabilities in table wp_usermeta
- What is wrong with using add_option with Multisite instead of add_blog_option in a plugin
- Getting wrong relationship value in $args in wp_Query?
- wp_schedule_event in a class
- custom XMLRPC method plus authentication of user & WooCommerce order
- How to extend LINK TO functionality in ATTACHMENT DISPLAY SETTINGS
- How do I Make a Theme “plugin-ready”?
- WordPress Terminology Options Vs. Settings
- How to modify post content before writing to database?
- Display only certain posts based on visitor’s country?
- Plugin Sidebar is not Saving Meta Attribute to Post/Page after “Update”
- Possible to preset a widget’s contents via a plugin script?
- $wp_filesystem returns NULL. What are the dependencies?
- Synchronize custom post type tags with WordPress default post type tags
- What for the tables ending with the meta used in database of wordpress?
- How to create custom field in worpdress default widgets?
- Ensure function has completed before allowing another Ajax call
- Loading scripts with wp_register_script and wp_enqueue_script
- WordPress is automatically linking plain text email addresses
- Is Using WordPress Supplied WYSIWYG Advisable?
- How do I add a filter to wp_list_categories() to make links nofollow?
- How to hook into publish post events in wordpress 4.7.5
- What is the best way to embed an JS App in a WordPress Page?
- add_rewrite_rule works in themes function php but when moved into plugin it stops working
- $reverse_top_level works the opposite way according to Codex?
- How to serve different thumbnails/images depending on users browser/platform
- Plugin development – How to use a specific wp_options into the real rendered code in the front end?
- Show disclaimer with accept button before redirecting to the payment gateway website
- Why is the temporary upload always 4.1K
- Problem with dinamic add_rewrite_rule()
- Add Minimum Dimensions Text to Featured Image
- Is disabling test_form in wp_handle_upload a security concern?
- How to connect my wordpress plugin to a remote database securely?
- How to create a backend for a custom theme?
- admin_post equivalent for guest user?
- When echoing my own shortcode, it keeps adding a 1 at the end of my blogpost
- WooCommerce change Tax Class programmatically when Recalculating an existing Order [closed]
- How to redirect home page to another page after login for all user?
- add_filter img_caption_shortcode not implemented
- How to overwrite iris color pallates from theme to plugin
- in_array function Problem
- Best practice for plugin: always detect admin-ajax call?
- How to hide page links from theme menu
- Thickbox in Plugin settings page?
- How to add text editor in plugin menu?
- Console errors in 6.0-RC1 Widget screen
- Information and Page from WordPress Plugin
- How to control ajax calls without effecting memory of server?
- Can’t upload image via submitting custom post from frontend
- Need Help to make a logic for editing posts in Frontend
- PHPUnit Testing and woocommerce Constant
- WordPress Query doesn’t return the correct value
- Uncaught Error: Call to undefined function wp_get_current_user() in
- wp_ajax function return the html page
- How to force download a plugin generated file?
- Upload images to custom database table in admin backend
- Adding admin for specific users
- Developing a plugin where users can edit entries saved in database
- Attach an image to new posts
- Pass results of custom query to loop – when writing a plugin
- user can login from single account detail from multiple locations(computer) at the same time [closed]
- WP Cron registers hook without any action (does not call the function)
- Call API on post save/update and show the result in admin area
- Is there any other ways to replicating changes on live from staging without pushing from git