Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • Also don’t forget to set the user as an author on your wordpress site. Have fun..this does give my site more credibility…Thank you Hannah 😉

    Hi everyone, The way i fixed this issue was; I added

    add_action( ‘show_user_profile’, ‘addENCtoForm’ );
    add_action( ‘edit_user_profile’, ‘addENCtoForm’ );

    function addENCtoForm(){ ; ?>
    <script type=”text/javascript”> window.onload = function(){
    document.getElementById(‘your-profile’).enctype = ‘multipart/form-data’;
    }
    </script> <?php
    }

    to the function.php file.The theme function file, not the wordpress one. I am using wp_Creatix theme.

    That was loading the picture box on the profile but not the picture. So i checked if my path to the folder was correct and it was wrong. (right clicking on picture should show where the server is looking). Dont change it manually. Use the form on the dashboard to change it. and last make sure the folder profile pic is chmoded to 777.

Viewing 2 replies - 1 through 2 (of 2 total)