Benjamin Lu
Forum Replies Created
-
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Jetpack PortfolioHello Daniel, this for the input. I did however figure out, I had to go back to my old theme and look at the priority. It seems like the order of execution were wrong.
So if anyone need to customize or change location of the section, settings, or controls. You could just use the following
add_action( 'customize_register', 'function_callback', 11 );
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Jetpack Portfolioon top of this, did a basic code so see if this works, but nope!
function setup() { add_theme_support( 'jetpack-portfolio', array( 'title' => true ) ); } add_action( 'after_setup_theme', 'setup' ); function customize( $manager) { $manager->get_section( 'jetpack_portfolio' )->title = 'this doesn't work'; } add_action( 'customize_register', 'customize' );
This a simple code that should work but it does throw this error for some reason.
Warning: Creating default object from empty value in /srv/www/benjlu/public_html/wp-content/themes/rejuvenate/functions.php on line 13
Forum: Installing WordPress
In reply to: Error establishing a database connection New InstallI see, did your host provider resolve this issue with the multistite DB.
Forum: Fixing WordPress
In reply to: There has been a critical error on your websitethis sounds like then a php version issue. are you on PHP 7.4, 8.0 or 8.1
WordPress is currently not fully compatibile with PHP 8.0 or 8.1 try php 7.4
Forum: Fixing WordPress
In reply to: Need help to login to my accountHello, the username and password should be the WordPress username and password when you first sign up and should eventually sends your credentials to your email address and not the Bluehost username and password.
Forum: Fixing WordPress
In reply to: Site reverts back to older plugins everydayIn the Plugins tab in the dashboard, there’s an option for Automatic Updates where yu can automatically update plugin or disable automatic updates.
I hope that helps.
- This reply was modified 2 years, 6 months ago by Benjamin Lu.
Forum: Fixing WordPress
In reply to: There has been a critical error on your websitehello, this sounds like a theme issue, have you tried to disable the plugin and change to another theme. If other themes don’t have issues, then the theme you were trying may have issues.
Forum: Installing WordPress
In reply to: Error establishing a database connection New InstallHello there!
I would recommend contacting Bitnami Customer Service regarding this issue.
Forum: Fixing WordPress
In reply to: Custom Image Sizes not apppearing.Hello,
You will need to use
<?php the_post_thumbnail( 'mysiteLandscape' ); ?>
to display on your site and replace mysiteLandscape with mySitePortrait or mySiteThumbnail. etcForum: Fixing WordPress
In reply to: There has been a critical error on your website.It sounds like it could be the theme itself. if you have access to your ftp/ssh server.. you can navigate to the themes /wp-content/themes/folder and delete it and do a refresh on the original site.
Forum: Installing WordPress
In reply to: Error establishing a database connectionI haven’t really played with FreeBSD, but typical installation seems correct, have you also install php74-mysqli, it may be different too. This just allows wordpress connect properly.
phpmyadmin is also a pretty good tool to login with mysql8, just allows you to see which user and database you are using.
Forum: Installing WordPress
In reply to: docker wordpress 5.2 nginx php 7.3Hello, it sounds like you’re missing MariaDB or MySQL container if you are using Docker.
Forum: Fixing WordPress
In reply to: WordPress not rendering css? (not sure)hello
When you install the latest version of WordPress comes with Twenty Nineteen which is the theme that you are using at your website ( https://trainmanegucci.tk ).
the comparsion that you were seeing is one is Twenty Nineteen and the other one is Twenty Seventeen so the themes are different.
does that help.
Forum: Fixing WordPress
In reply to: Admin log in issuehello,
you are welcome, glad to help, if you can, select the topic as resolved. ?? if you need other help, please do create a new topic
Forum: Localhost Installs
In reply to: local copy under WAMP – cannot loginhi
when you install WordPress, did you download and copy the files to localhost/wordpress, if you did, you would have seen a 5 minutes install and it should asked you to enter an username and password for you to able to log in.