ibertrix
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Main Menu disappearedI checked the source code of your website and I found that in some CSS you have defined this:
.navigation-wrapper { /* display: none; */ }
if you remove that display:none or that entry you will see the menu again on the top of the webpage
Forum: Fixing WordPress
In reply to: Main Menu disappearedYes, that′s what I meant. Did you try to change the menu back and forth and save it again?
Forum: Fixing WordPress
In reply to: Main Menu disappearedHi Daniela,
Make sure under Apperance -> Customize in the menu section you see that menu is applied
Forum: Fixing WordPress
In reply to: Failed to open stream. No such file or directory…The line 34 in wp-admin/admin.php should be:
require_once dirname( __DIR__ ) . '/wp-load.php';
double check it is that way and your wp-load.php file exists on your home folder of your WordPress installation. If it doesn′t exist, copy that file from any other WordPress site or download the zip file from your WordPress version and upload those two files.
Forum: Fixing WordPress
In reply to: My website isn’t workingYou can try to change in your wp-config.php file and these two entries while you fix your database:
define('WP_HOME', 'https://infinitree.mym'); define('WP_SITEURL', 'https://infinitree.my');
Forum: Fixing WordPress
In reply to: GTM AND PERFORMANCE OF PAGESPEEDWhich of the two are loaded? The noscript part is loading the code in the body part while the other part loads in the header part.
What I do normally is create a child theme from my theme and modify the header.php directly, loading all Google, Facebook and other stuff right before the </head> tag.
Have you checked only with PageSpeed? Have you tried other services like GTmetrix or webpagetest.org? They give you a more insightful feedback
Forum: Fixing WordPress
In reply to: WordPress recovery mode redirects to installWhen you are redirected to install.php is because for any reason the wp-config.php is not correct. Maybe the database connection is not working. Double check with your hosting to see if the database is right and check logs to get more information
Forum: Fixing WordPress
In reply to: How to replace the links http to httpsSubjected code is located in header.php of used theme.
Plugins, like Better Search Replace, work with database only.I know. I didn′t check the URL sent by the OP since It didn′t much sense to try to reach as you say and old url that doesn′t work anymore ??
Forum: Fixing WordPress
In reply to: problems with menuGreat! Glad that It worked
Forum: Fixing WordPress
In reply to: How to remove breadcrumb on just homepage using CSS?You are welcome too ??
Forum: Fixing WordPress
In reply to: How to remove breadcrumb on just homepage using CSS?try then:
breadcrumb-area.pt-35.pb-35.bg-gray-3{ display: none; }
- This reply was modified 4 years, 6 months ago by ibertrix.
Forum: Fixing WordPress
In reply to: How to remove breadcrumb on just homepage using CSS?As mentioned here, you seem to have a woocommerce site.
there in that link you can find this solution mentioned:
.post-type-archive-product h1.woocommerce-products-header__title.page-title { display: none; }
Forum: Fixing WordPress
In reply to: Carflow checkout place order buttonI′d have asked for support in the woocommerce support area in the forums.
Have you configured any payment in the wooocommerce payments section? I′d enable debug mode in wp-config.php or check your logs to see if there is anything wrong.
Forum: Fixing WordPress
In reply to: problems with menuHi,
I′d disable wp optimize or any cache plugin first. It is wiser to enable any cache plugin once your website is finished.
Also if you use any page builder like Elementor, it uses shortcodes that only are understood by Elementor. If you use another page builder those shortcodes won′t work and your pages won′t be seen, you will have to start again. So you will have to choose which page builder works better with your theme. I′d recommend you ask your theme support first for advice in case it′s your first time building a site with this theme.
Hope this helps,
Forum: Fixing WordPress
In reply to: Unable to get to wp-admin after disabling all of the pluginsEnable debug mode in wp-config.php to get a handler of what is happening:
define(‘WP_DEBUG’, true);