Profiles

  • Member Since: May 20th, 2017
  • Website: www.no.com
  • Find me on:
  • Posted a reply to Error while logging in and editing page with with elementor, on the site WordPress.org Forums:
    Update or downgrade php version. Or try this, this worked for me. https://wordpress.org/support/topic/wp-4-9-5/

  • Posted a reply to Error while logging in and editing page with with elementor, on the site WordPress.org Forums:
    Yes its old plugin but still works. I had same problem. Check the forum here…

  • Posted a reply to Display specific value of a custom field, on the site WordPress.org Forums:
    Solution. Go to phpmyadmin -> wordpress -> find "wp_prflxtrflds_user_field_data" Just print it out with mysql/sql/php…

  • Created a topic, What file default template?, on the site WordPress.org Forums:
    In what file can i edit default template?

  • Posted a reply to User1 send something to user2, on the site WordPress.org Forums:
    That plugin is not active since 2012

  • Created a topic, User1 send something to user2, on the site WordPress.org Forums:
    Im trying to find a solution where users can send stuf…

  • Posted a reply to Auto disable, expire or close comments at specific time?, on the site WordPress.org Forums:
    @stevejburge nice. Loading...

  • Posted a reply to WordPress 5.7.1 Compatible, on the site WordPress.org Forums:
    Well this plugin still works. Some people get a problem installing it but there is…

  • Created a topic, Activate between this time and this time, on the site WordPress.org Forums:
    Can this mode be on 15:00 and off 16:00? Activated on…

  • Posted a reply to How to test send email, on the site WordPress.org Forums:
    Thanks!

  • Posted a reply to Comment author user id, on the site WordPress.org Forums:
    Solved! I used this code to help solve my problem. $comment->comment_author_email;

  • Posted a reply to Comment author user id, on the site WordPress.org Forums:
    Well i tried what you wrote but it seems it this function disalows php code…

  • Created a topic, Comment author user id, on the site WordPress.org Forums:
    Im trying to get comment authors user id how do i do t…

  • Posted a reply to Manipulating comments section what file?, on the site WordPress.org Forums:
    Also found great info here: https://developer.wordpress.org/reference/functions/get_comment_author/ File: wp-includes/comment-template.php

  • Posted a reply to How to test send email, on the site WordPress.org Forums:
    Thanks @gappiah i got this error. What can i do to fix it? ITs local…

  • Created a topic, How to test send email, on the site WordPress.org Forums:
    I have a email plugin on my site. It notifies users on…

  • Posted a reply to Can’t install plugin, on the site WordPress.org Forums:
    Upload directly to your FTP problem solved.

  • Posted a reply to WP query sticky is not sticky, on the site WordPress.org Forums:
    Well i added this query in home.php and i get the issue that the sticky…

  • Posted a reply to WP query sticky is not sticky, on the site WordPress.org Forums:
    @joyously i removed the line "'ignore_sticky_posts' => -1" didnt help.

  • Created a topic, WP query sticky is not sticky, on the site WordPress.org Forums:
    Im showing posts from specific category on my home pag…

  • Posted a reply to If current user is contributor, on the site WordPress.org Forums:
    Correct solutions was. <?php if ( current_user_can( 'contributor' ) ) { echo "1"; } else…

  • Posted a reply to If current user is contributor, on the site WordPress.org Forums:
    Solved. <?php if ( current_user_can( 'edit_posts' ) ) { echo "1"; } else { echo…

  • Posted a reply to If current user is contributor, on the site WordPress.org Forums:
    Your code just gets user id. Not what i was looking for.

  • Created a topic, If current user is contributor, on the site WordPress.org Forums:
    What the correct code for "contributor role"? I want …

  • Posted a reply to Is post by current user, on the site WordPress.org Forums:
    It's solved i posted the code which solved my problem.

  • Posted a reply to Is post by current user, on the site WordPress.org Forums:
    I solved it like this. <?php if ( is_user_logged_in() && get_the_author_meta( 'ID' ) === get_current_user_id()…

  • Posted a reply to Is post by current user, on the site WordPress.org Forums:
    Didn't work inside loop atleast.

  • Posted a reply to How to hide css borders in categories?, on the site WordPress.org Forums:
    Solved! I should use more specific css like body .category-name1 { border: 5px solid #2f9e79…

  • Posted a reply to If category, on the site WordPress.org Forums:
    Ok so i now what the problem is. The category page is missing <?php post_class();…

  • Posted a reply to If category, on the site WordPress.org Forums:
    @bcworkz also when you click a category which lists all posts in a category?

  • Posted a reply to If category, on the site WordPress.org Forums:
    So how do i fix it? This is the complete code. function add_contributert_class_to_single_post( $classes )…

  • Posted a reply to Can’t visit site anymore, on the site WordPress.org Forums:
    Solved!

  • Posted a reply to Can’t visit site anymore, on the site WordPress.org Forums:
    Solved. My internal ip adress changed.

  • Created a topic, Can’t visit site anymore, on the site WordPress.org Forums:
    Wordpress installed locally with wordpress portable. E…

  • Created a topic, Plugin buy user roles, on the site WordPress.org Forums:
    Is there a plugin where people can buy user roles with…

  • Posted a reply to If category, on the site WordPress.org Forums:
    @janet4now it should do something and it does in home front page single page search…

  • Posted a reply to If category, on the site WordPress.org Forums:
    @janet4now So when i click on a category lets say category named "birds" what condition…

  • Created a topic, If category, on the site WordPress.org Forums:
    So i have a function in functions.php but it doesn-t w…

  • Posted a reply to If post by specific role different style or css, on the site WordPress.org Forums:
    Solution: https://wordpress.stackexchange.com/questions/384748/if-post-by-specific-role-different-css-to-everyone

  • Posted a reply to How to hide css borders in categories?, on the site WordPress.org Forums:
    @sterndata can-t show link cause its private site and i can-t delete link later as…

  • Created a topic, How to hide css borders in categories?, on the site WordPress.org Forums:
    This is how it looks on front page or home page: https…

  • Posted a reply to Click author show all posts?, on the site WordPress.org Forums:
    This was the solution: <a href="<?php echo get_author_posts_url( get_the_author_meta( 'ID' ) ); ?>"><?php the_author(); ?></a>

  • Created a topic, Click author show all posts?, on the site WordPress.org Forums:
    Where can i find information about this: When i click…

  • Posted a reply to Manipulating comments section what file?, on the site WordPress.org Forums:
    Found the file. Its in /wp-includes class-walker-comment.php

  • Posted a reply to Author post count from specific category, on the site WordPress.org Forums:
    Solved. $user_id = get_the_author_meta('ID'); $args = array( 'author' => $user_id, 'category_name' => 'category_slug_name', ); $my_query…

  • Posted a reply to Author post count from specific category, on the site WordPress.org Forums:
    Ok so this code works now but why does it prints all posts in that…

  • Posted a reply to Manipulating comments section what file?, on the site WordPress.org Forums:
    My theme just have this part "allmost" in comments.php So i think comments section my…

  • Created a topic, Manipulating comments section what file?, on the site WordPress.org Forums:
    Where is the default comments section file in wordpres…

  • Posted a reply to Author post count from specific category, on the site WordPress.org Forums:
    So i got this code but it prints result 0 why? $user_id = get_the_author_meta('ID'); $args…

  • Posted a reply to If post by specific role different style or css, on the site WordPress.org Forums:
    Will try. I will comeback if i run into issues.