Alor Web
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Getting error in plugin add pageHi @mdbadshahansari,
Try enabling the debug mode on the WordPress file using the FTP client.
See the article for reference: https://www.ads-software.com/documentation/article/debugging-in-wordpress/.
This will help you better understand what causes the issue on your website.Let me know if you have any further questions.
Thanks
Forum: Fixing WordPress
In reply to: Mobile menu opens to own page and all whiteHi @flatword,
When you tap the mobile menu, it’s pretty common for it to take center stage, covering the entire page with an overlay background color. This behavior is expected in many mobile menu implementations. When the mobile menu is triggered, it often overlays the entire page, preventing scrolling until a menu item is selected or the close button is clicked. It’s all by design, aiming to give users a focused and immersive navigation experience on their mobile devices.
I’m not sure what you really wanted to troubleshoot here, and maybe you can explain further so that we can better look at the issue.
I have some suggestions that you might want to try. You can still show the page while opening the mobile menu. We can reduce the opacity of the background overlay color.
Just add this CSS code to your Appearance > Customize > Additional CSS.
#modal-2 { background: rgba(255,255,255, 0.9) !important; }
Let me know how it goes.
Thanks
Forum: Fixing WordPress
In reply to: Missing Dashboard Menu OptionsHi @phana333,
Note: Please make sure to have the latest backup of your website before making changes to your WordPress files for future purposes.
You can try the following steps:
- Try to access your website files on your web hosting account or using an FTP client.
- Copy and paste the code below into your wp-content.php file.
define('DISALLOW_FILE_EDIT', false); define('DISALLOW_FILE_MODS', false);
- Save your changes.
- Go back to your WordPress dashboard and refresh it.
- You should be able to use the plugin option.
- You can also delete this code anytime you’d like.
Let me know how it goes.
Thanks
Forum: Fixing WordPress
In reply to: Can’t change page slugHi @arencreative,
You can try these steps:
- Go to your WordPress dashboard.
- Go to All Pages. See image: https://prnt.sc/8Pog7DSON0_y.
- Search your page and hover your mouse over it.
- You will see the additional options.
- Click on the Quick Edit option. See image: https://prnt.sc/fXSO26VTRi8Y.
- Next, remove the “-2” on the slug field and just make it “whoiam”. See image: https://prnt.sc/F-RUzxA-4nKQ.
- Click Update to save your changes.
- View the page on the front end and check your slug. It should work correctly.
Please let me know how it goes.
Thanks
Forum: Fixing WordPress
In reply to: Home Page not displaying correctlyHi @dougakolson,
I opened your website here on my end, and I have noticed that your site is not secured yet. See image: https://share.zight.com/nOuJwGYK.
You need to activate the SSL certification for your domain, fielderchoiceak.com. You may need to contact your hosting provider for SSL certificate assistance. They can surely help set it up for you.
Thanks
Forum: Fixing WordPress
In reply to: Inconsistent interface between log-in and non log-in usersHi @joyfy,
Can you share a screenshot of the issue or a link to your website so that we could better investigate the problem?
ThanksForum: Fixing WordPress
In reply to: error when using widgetsHi @drloanle,
I understand the frustration you’re facing. It seems like there might be a conflict between the wp-editor script and the new widget editor.
Note: Please make sure to have the latest backup of your website before modifying your theme’s file.
To resolve this, I would like to share a PHP code that will make your widget page work again. This code will revert to the old widget editor, but you can still manage it. I have tried this before, and it works on my end. Just follow the steps below:
- Go to the WordPress Dashboard.
- Go to Appearance > Theme File Editor.
- Edit your functions.php file.
- Copy and paste the code in the functions.php file.
// deactivate new block editor function phi_theme_support() { remove_theme_support( 'widgets-block-editor' ); } add_action( 'after_setup_theme', 'phi_theme_support' );
- Click the Update file.
- Now refresh your admin page and go to Appearance > Widgets.
- You should be able to access this page.
Recommendation: Using a child theme for your website is a great help. Please try the following suggestion and let me know how it goes.
Warm regards,
Jerry
Forum: Fixing WordPress
In reply to: Page not formatted in Chrome but other browsers are goodHi @flatword,
You can also try to add a CSS code to the elements that have had an issue before. Here are my suggestions.
#wp-block-themeisle-blocks-advanced-column-1c168b74, #wp-block-themeisle-blocks-advanced-column-01f96e0c, #wp-block-themeisle-blocks-advanced-column-d251ad96 { border:1px solid #000 !important; } @media only screen and (min-width: 960px) { .wp-block-themeisle-blocks-advanced-columns { display:flex !important; } }
- Copy the CSS code above
- Go to your WordPress dashboard
- Go to Appearance > Customize.
- On the customizer, find the option for Additional CSS.
- Paste the CSS code in the Additional CSS field.
- Click Publish to save your changes.
In that way, your layout will have a fixed border, and it won’t flush to the left side.
Warm regards,
Jerry
Forum: Fixing WordPress
In reply to: Using Neve Template- picture under blog titleHi @travelsevenseas,
I understand that navigating through the complexities of this website can be frustrating especially when things don’t go according to plan and I will try me best to help you.
For your concerns:
1. I really would like someone to help me figure out how to link my blog posts to the blog page.
- Go to your WordPress dashboard.
- Navigate to Setting > Reading.
- on your homepage displays > Choose Static Page.
- On your Post page, choose your blog page.
- See image: https://share.zight.com/Z4u2PoRK.
- Click Save Changes.
- See article to know more: https://www.ads-software.com/documentation/article/settings-reading-screen/
2. I also can’t figure out how to have a picture underneath the blog title.
- Edit one of your post.
- Add featured image on your post. See image: https://share.zight.com/Jru5N4Jq.
- Upload your image or choose from your recent uploads.
- Click Set Featured Image.
- Click Update to save your changes.
- See article to know more: https://www.wpbeginner.com/beginners-guide/how-to-add-featured-image-or-post-thumbnails-in-wordpress/
Please try the recommended suggestions and let me know how it gioes.
Thanks
Forum: Fixing WordPress
In reply to: All links loads homeepageYou can enable debug mode to check what is causing the issue on your website.
Just add the codes below to your wp-config.php file.
define( 'WP_DEBUG', true); define( 'WP_DEBUG_LOG', true);
When set to true, the log is saved to debug.log in the content directory (usually wp-content/debug.log) within your site’s filesystem.
There you can check for error logs, and if you are unsure how to troubleshoot it, you can send us a screenshot of the very latest error log date so that we can better look at it.
Let me know if you have any questions or clarifications.
Thanks
Forum: Fixing WordPress
In reply to: All links loads homeepageHi @loochar,
Can you share with us the link to your website so that we can better look at it?
Thanks
Forum: Fixing WordPress
In reply to: My website showing bot verification in every pageForum: Fixing WordPress
In reply to: How do I enable the “Sync” feature when creating a pattern?I have found some documentation that might help you.
https://developer.www.ads-software.com/block-editor/reference-guides/block-api/block-patterns/
Let me know if this helps.
ThanksForum: Fixing WordPress
In reply to: How do I enable the “Sync” feature when creating a pattern?Hi @devpandaking,
There are two options for the pattern to be edited (a visual editor and a code editor). See image: https://share.zight.com/QwuXDOD8.
Are you looking for a different option besides these two?
ThanksForum: Fixing WordPress
In reply to: Page showing full width in editor but in reality it’s notHi @browmaniac,
Try checking out this article from Elementor, and maybe this could help.
https://elementor.com/help/using-elementors-full-width-page-template/
I hope this will resolve the issue.
Thanks.