Change “logged in as a ” link in comments form

We could try to rebuild the HTML through the comment_form_logged_in filter, where the HTML is constructed by default as: ‘<p class=”logged-in-as”>’ . sprintf( /* translators: 1: edit user link, 2: accessibility text, 3: user name, 4: logout URL */ __( ‘<a href=”https://wordpress.stackexchange.com/questions/276188/%1$s” aria-label=”%2$s”>Logged in as %3$s</a>. <a href=”%4$s”>Log out?</a>’ ), get_edit_user_link(), /* translators: %s: user … Read more

Insert user register into my own user table instead of wp own user

I figured it out myself I needed $wpdb and a , after the db_name Here is the result. $user_id = $wpdb->INSERT( ‘wp_fisker’, array ( ‘fisker_fornavn’ => apply_filters(‘pre_user_first_name’, $fisker_fornavn), ‘fisker_efternavn’ => apply_filters(‘pre_user_last_name’, $fisker_efternavn), ‘password’ => apply_filters(‘pre_user_user_pass’, $password), ‘telefon’ => apply_filters(‘pre_user_telefon’, $telefon), ‘zip’ => apply_filters(‘pre_user_zip’, $zip), ‘by_navn’ => apply_filters(‘pre_user_by_navn’, $by_navn), ’email’ => apply_filters(‘pre_user_user_email’, $email) ) ); if( … Read more

Custom User Page

Try this : // The first part // add_filter(‘author_rewrite_rules’, ‘no_author_base_rewrite_rules’); function no_author_base_rewrite_rules($author_rewrite) { global $wpdb; $author_rewrite = array(); $authors = $wpdb->get_results(“SELECT user_nicename AS nicename from $wpdb->users”); foreach($authors as $author) { $author_rewrite[“({$author->nicename})/page/?([0-9]+)/?$”] = ‘index.php?author_name=$matches[1]&paged=$matches[2]’; $author_rewrite[“({$author->nicename})/?$”] = ‘index.php?author_name=$matches[1]’; } return $author_rewrite; } // The second part // add_filter(‘author_link’, ‘no_author_base’, 1000, 2); function no_author_base($link, $author_id) { $link_base = … Read more

To save user info on the same page by form submiting

I’m pretty sure you should add the page url (don’t hard-code it) under the form “action” attribute. So assuming you have access to the_permalink(), you should do the following: action=”<?php the_permalink(); ?>” Check if that saves into the $_POST array by adding the following somewhere in that file and try submitting the form: <?php var_dump($_POST);?>