Extra Text in Home URL

Thanks for the above responses. I did not have opencart installed, and those were the only similar answers I could find. I ended up just installing the “Redirection” plugin which seemed to solve my problem. I added a simple redirect which redirected the target URL back to the homepage. I could have eventually found a … Read more

Support Gallery link to pages

What about using Page Links To? Install this plugin, go to the edit screen of the post “Project Management” and then link that post to any page you want. That way you can redirect the post to any page you want. Not a perfect solution but may work for your setup.

Rest API does not work after changing WordPress Theme

I manage to solved it by adding this code (at the bottom) to the YOUR BLOG THEMES my path : wp-content/themes/MYWPTHEME/function.php function ws_register_images_field() { register_rest_field( ‘post’, ‘images’, array( ‘get_callback’ => ‘ws_get_images_urls’, ‘update_callback’ => null, ‘schema’ => null, ) ); } add_action( ‘rest_api_init’, ‘ws_register_images_field’ ); function ws_get_images_urls( $object, $field_name, $request ) { $medium = wp_get_attachment_image_src( get_post_thumbnail_id( … Read more