Gustav
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Steam Auth] Error while logging in and editing page with with elementorUpdate or downgrade php version.
Or try this, this worked for me.
Forum: Plugins
In reply to: [WP Steam Auth] Error while logging in and editing page with with elementorYes its old plugin but still works. I had same problem. Check the forum here i know there is a solution.
You need to change http to https in some file.
Browse the forum and look if you find something about edit file and *http* *https*.
Solution.
Go to phpmyadmin -> wordpress -> find “wp_prflxtrflds_user_field_data”
Find user id, and print out the row you want to display.
Just learn how to print from mysql and your problem is solved,
- This reply was modified 2 years, 10 months ago by Gustav.
Forum: Fixing WordPress
In reply to: User1 send something to user2That plugin is not active since 2014
No support for +7 years- This reply was modified 3 years, 1 month ago by Gustav.
@stevejburge nice. Loading…
Forum: Plugins
In reply to: [WP Steam Auth] WordPress 5.7.1 CompatibleWell this plugin still works.
Some people get a problem installing it but there is a solution gor that. Somewhere here. Something about http and https.
But yeah it still works just 0 updates.
Forum: Localhost Installs
In reply to: How to test send emailThanks!
Forum: Developing with WordPress
In reply to: Comment author user idSolved!
I used this code to help solve my problem.
$comment->comment_author_email;
Forum: Developing with WordPress
In reply to: Comment author user idThe file i try to manipulate is wordpress own comment file.
wp-includes/commment-template.phpWell i tried what you wrote but it did’t work.
Forum: Developing with WordPress
In reply to: Manipulating comments section what file?Also found great info here: https://developer.www.ads-software.com/reference/functions/get_comment_author/
File: wp-includes/comment-template.php
Forum: Localhost Installs
In reply to: How to test send emailThanks @gappiah i got this error. What can i do to fix it? ITs local installed wordpress.
The email was not sent. WordPress provided this reason: Could not instantiate mail function.
Forum: Localhost Installs
In reply to: Can’t install pluginUpload directly to your FTP problem solved.
Forum: Developing with WordPress
In reply to: WP query sticky is not stickyWell i added this query in home.php and i get the issue that the sticky post is not at the top anymore.
When i run default home.php without this query then the sticky post is at the top.
Forum: Developing with WordPress
In reply to: WP query sticky is not sticky@joyously i removed the line “‘ignore_sticky_posts’ => -1” didnt help.
Forum: Developing with WordPress
In reply to: If current user is contributorCorrect solutions was.
<?php if ( current_user_can( 'contributor' ) ) { echo "1"; } else { echo "2"; } ?>