• Resolved Roel

    (@commerwel)


    Hello,
    After the update of WordPress to version 4.9 it isn’t possible anymore to switch from visual to text editor. Are there more people who are dealing with this problem? Would like to have suggestions how to correct this.
    Thanks

Viewing 2 replies - 16 through 17 (of 17 total)
  • Plugin Author Josh

    (@josh401)

    You should definitely be able to still switch between visual and text modes in the editor. Do you not see the tabs? Or are you just not able to click it?

    • This reply was modified 6 years, 7 months ago by Josh.
    Plugin Author Josh

    (@josh401)

    Hello again, Carrie,

    WP Edit definitely works with the latest version of WordPress. The appearance -> editor screen is not part of WP Edit; it is part of WP core functionality. If it is not working properly for you; then it suggests you have an issue with server configuration not letting you edit server files.

    You never want to modify core WP files. Whenever you update WordPress; you will lose any modifications and have to add them in again. Instead, we use a child theme to keep customizations.

    You will want to use a custom function from your child theme to add the Amazon affiliate stuff. I’ll try to give you an example here; but not knowing your exact needs, we may need to adjust.

    
    function add_amazon_to_footer() {
    
        ?>
        // Your Amazon script goes here
        
        <?php
    }
    add_action( 'wp_footer', 'add_amazon_to_footer' );
    

    Please feel free to reach out with any questions.

    • This reply was modified 6 years, 7 months ago by Josh.
Viewing 2 replies - 16 through 17 (of 17 total)
  • The topic ‘WP Edit not working properly after update WP to 4.9’ is closed to new replies.