Viewing 11 replies - 1 through 11 (of 11 total)
  • hey tuurie, do you still need help? I can see that you’ve now taken down the page.

    Let me know, I think i’ve pretty much figured out this plugin. Cheers!

    Amandapiasta,

    Could you helmp me then ?

    I have one member I tried to edit and after that, the name and mail/phone textfields disappeared. And every attempt fails and it does not seem to save the text i put in ???

    I hope you can help me.

    Hi Sdoupi,

    By default the plugin sets the database to only accept 240 characters – maximum.
    Some fields are actually less than that.

    If your team members name is less than 240 characters, try inputing all of the fields at the same time and see if it updates on the front end. I’ve noticed that it is a bit strange like that sometimes, where you can update it and it will not show it on the backend, but it will show it on the front end.

    Let me know, I still have some tricks up my sleeve.

    No the names are not even more than 24 characters ?

    The untouched teammembers are all good, but once I edit them. Boom name and email/phone number vanish and go away. And after that it is impossible to save it again with name/mail/phone, It just keeps going away every time I try to update it.

    Something is seriously wrong, very strange of it to keep removing it and not being able to save it…

    The problem is, it goes directly to the front end and the only two field working are the “member’s description” and “description” fields.

    That makes it extra weird.

    I’ve had exactly the same problem today when I tried editing members on my homepage. Looking forward to hear the solution ??

    I’ve discovered that the images will not load properly if the file names have spaces in them. So for example, instead of “mr. john does photo.jpg” it should be something like “mr-john-does-photo.jpg”

    As for your emails and phone numbers not saving, can you check your database table to see if the value was input into the table?
    the table is called easy_team_manager_description

    If there is a value saved there, then we need to figure out why it is not grabbing the correct value. In this case, if you could provide the url to page where you’re trying to display it, we can see if it’s in the php or just a styling issue.

    //creating table upon activation
    global $wpdb;
    $table_name = $wpdb->prefix . “easy_team_manager_description”;
    if($wpdb->get_var(“show tables like ‘$table_name'”) != $table_name){

    $sql = “CREATE TABLE $table_name (
    id int NOT NULL AUTO_INCREMENT,
    name varchar(250),
    image varchar(50),
    ind_description varchar(300),
    position varchar(40),
    url varchar(40),
    email varchar(240),
    phone varchar(240),
    social_media varchar(500),
    p_num int,
    team_id int,
    PRIMARY KEY id (id)
    );”;
    }

    This is what it says in the index.php file of the plugin.

    Hi Sdoupi,

    that is the code that will create the sql table, but the question is, was the value you saved inserted into the table?

    The way to check this is you must login to your MySQL (usually it says MySQL Admin) and check in the table called easy_team_manager_description for the value that you are having trouble saving.

    Column: id / Type: int(11) / Value: 30
    Column: name / Type: varchar(250) / Value: a:2:{s:4:”name”;b:0;s:2:”sh”;b:0;} (name doesn’t save)
    Column: email / Type: varchar(240) / Value: a:2:{s:5:”email”;s:0:””;s:2:”sh”;b:0;} (email doesn’t save)
    Column: phone / Type: varchar(240) / Value: a:2:{s:5:”phone”;b:0;s:2:”sh”;b:0;} (phone doesn’t save

    I hope you can see what’s going on in here, because I can’t hahaha

    Anyone ??? Amandelpasta, do you see in the code I put in my last post what’s going on ?

    Hi Sdoupi,

    Sorry for the late reply… looks like your values are not being saved to the database properly.

    The problem would lie in the file: wp-content >> plugins >> easy team manager >> inc >> easy_team_manager_desc_edit.php

    my best suggestion is to delete the plugin and re-install because this file shouldn’t have anything wrong code in it.

    If that doesn’t work, rule out any compatibility issues by deactivating all other plugins and themes to see if it works.

    Cheers

Viewing 11 replies - 1 through 11 (of 11 total)
  • The topic ‘Problem with positions and name doesn't show up’ is closed to new replies.