Adejoke Haastrup
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Error establishing a database connectionThank You @sterndata.
Forum: Everything else WordPress
In reply to: Buy Now button appearing only on mobileYou can use your desktop, using chrome or firefox, your desktop screen size can be reduced to phone size then you use inspect to check the issue with the CSS
Forum: Everything else WordPress
In reply to: Buy Now button appearing only on mobileHello @prashant271189,
what theme are using?
is it a woocommerce site?This issue you are having looks like a CSS issue so you have to inspect element and use additional CSS in your appearance and edit the CSS
I hope this helps.
Regards,
AdejokeForum: Fixing WordPress
In reply to: Error establishing a database connectionHello @ahsanmani,
If you changed your database name it means you have to change it in your code too where your db name is declared.so go to your wp root directory and find your wp-config.php file
// ** MySQL settings – You can get this info from your web host ** //
/** The name of the database for WordPress */
define( ‘DB_NAME’, ‘your_db_new_name’ );/** MySQL database username */
define( ‘DB_USER’, ‘root’ );/** MySQL database password */
define( ‘DB_PASSWORD’, ‘your_db_new_password’ );I hope this helps.
Regards,
AdejokeI want to be able to add a section on the submission page of each form.
it will include a drop-down and a button to post the information on each form to an API.I am building a custom addon for forminator, is there a hook I can use to display a button on forminator submission admin page?