wielebenwir / commonsbooking

CommonsBooking is an open source Wordpress plugin for sharing items with users. This is the NEW CommonsBooking (starting at version v2.0.0). Please install plugin via Wordpress plugin directory.
https://commonsbooking.org
GNU General Public License v2.0
47 stars 15 forks source link

Frontend: 404-Error bei Klick auf Jetzt buchen #397

Closed chriwen closed 3 years ago

chriwen commented 3 years ago

Nach Neuinstallation landet man auf 404-Seite bei Klick auf jetzt buchen.

Workaround: die Permalink-Seite aufrufen. Dann funktionierts.

chriwen commented 3 years ago

we need to add flush_rewrite_rules()


add_action( 'init', 'my_custom_post_type' ); function my_custom_post_type() { $args = array( 'public' => true, 'label' => 'Board Games' ); register_post_type( 'boardgames', $args ); }

function myplugin_flush_rewrites() { my_custom_post_type(); flush_rewrite_rules(); }

register_activation_hook( FILE, 'myplugin_flush_rewrites' );