Forked from elimn/tribe_attachment_404_fix.php
Last active
September 23, 2022 03:23
-
-
Save andrasguseo/b3283cb4503c880a205448dbafc19f7b to your computer and use it in GitHub Desktop.
MT | TEC | Fix for Single Event 404s with attachment set in WP Query
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
* Possible solution for Single Event page 404 errors where the WP_Query has an attachment set | |
* IMPORTANT: Flush permalinks after pasting this code: http://tri.be/support/documentation/troubleshooting-404-errors/ | |
* Updated to work with post 3.10 versions | |
*/ | |
function tribe_attachment_404_fix () { | |
if (class_exists('Tribe__Events__Main')) { | |
remove_action( 'init', array( Tribe__Events__Main::instance(), 'init' ), 10 ); | |
add_action( 'init', array( Tribe__Events__Main::instance(), 'init' ), 1 ); | |
} | |
} | |
add_action( 'after_setup_theme', 'tribe_attachment_404_fix' ); |
I have WP installed in german and when I click on list view the url is exampl.com/.../liste/ instead of .../list/. I keep getting `post_type => attachement´ when I debug with the following code snippet:
https://gist.github.com/elimn/d3483854e8e9399e449e
Hi @cre-mer,
The issue you are having is not a 404 issue and not related to the above snippet. It is likely an issue with the plugin, which I believe should have been fixed with the latest release.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I get this message when I try to add this snippet to the functions.php in the child theme though the word press pannel:
No ha sido posible comunicar con el sitio para comprobar los errores fatales, así que el cambio de PHP se ha revertido. Tendrás que subir el cambio a tu archivo PHP por otros medios, como por ejemplo usando SFTP.
I don´t know how to do what its says.