To address the issue of broken internal links on a WordPress website, you can use several tools and plugins designed specifically for this purpose. Here are the steps you should follow: 1. Identify Broken Links First, confirm the broken links identified by Ahrefs. You can use additional tools to ensure you have a comprehensive list… Continue reading Fixing Broken Internal Links on Your WordPress Website: A Comprehensive Guid
Category: Coding Standard
Soliloquy A WordPress Slider Plugin
Soliloquy is a WordPress slider plugin that’s both easy and powerful, with 900,000+ downloads used by website owners, marketers, and developers. Soliloquy was built to adapt to the workflow of WordPress users to combat the bloated and confusing sliders out there. What are the features and benefits of Soliloquy? Upload and rearrange slides with an… Continue reading Soliloquy A WordPress Slider Plugin
How to fetch database version through terminal
Connect the mysql server with credentials mysql -u username -p Enter the password Choose the database and run the command. use yourdatabase; Run the query SELECT option_value FROM yourdatabase.wp_options WHERE option_name = ‘db_version’;
How to create a custom field on customer account information section in Adobe commerce
Use the data patch setup on AdobeC Create Setup -> Patch -> Data -> AddCustomAttribute.php <?php namespace JJCustomerNetsuiteFieldSetupPatchData; use MagentoEavSetupEavSetupFactory; use MagentoFrameworkSetupModuleDataSetupInterface; use MagentoFrameworkSetupPatchDataPatchInterface; use MagentoCustomerSetupCustomerSetupFactory; use MagentoCustomerModelCustomer; class AddCustomAttribute implements DataPatchInterface { private $eavSetupFactory; private $customerSetupFactory; private $moduleDataSetup; public function __construct( EavSetupFactory $eavSetupFactory, CustomerSetupFactory $customerSetupFactory, ModuleDataSetupInterface $moduleDataSetup ) { $this->eavSetupFactory = $eavSetupFactory; $this->customerSetupFactory =… Continue reading How to create a custom field on customer account information section in Adobe commerce
How to integrate with Magento
For the standard token based integration. Go to Magento Backend, system -> Integrations Create a new integration setup and generate the key and tokens. Use these for the integration.
UI Issue while zoom in
Issue: The header of the website is set as fixed. If the cart contains more items, the length of min-cart will have a height we provided. As the header is fixed at the top while scrolling, the ‘view cart’ button on the mini cart will be hidden. Solution: Provided a fixed height while zoom in… Continue reading UI Issue while zoom in
How to hide the eye from a password input in MS Edge
To hide the default hide/show password input field in the MS edge we need to disappears by using css property . The ::ms-clear is working and removes the little x where the user can clear the input. But the ::ms-reveal isn’t working. input[type=”password”]::-ms-reveal, input[type=”password”]::-ms-clear { display: none; } and input::-ms-reveal, input::-ms-clear { display: none; }
How to change the shipping cost in the order summary section and store that value in the custom field of the sales order
We can set the value and store in the transaction body field in the sales order by using suitescript . try { var canadaShipCost = Configuration.get(“shipcost.canada”); var unitedStates = Configuration.get(“shipcost.unitedstates”); … Continue reading How to change the shipping cost in the order summary section and store that value in the custom field of the sales order
How to resolve error: Cannot find module ‘node-sass’
This error is for node-sass is not present … to solve this just you want to run following command npm install node-sass npm install –save-dev node-sass npm rebuild node-sass –force sudo npm rebuild node-sass –force
iOS-Specific Display Issues in SuiteCommerce
Text Rendering Issues: iOS devices can render fonts differently. Ensure your CSS includes web-safe fonts and consider using font smoothing: -webkit-font-smoothing: antialiased; Handling Form Elements: Form elements can behave unpredictably on iOS. Use -webkit-appearance: none; to standardize the appearance: input, select, textarea { -webkit-appearance: none; } Smooth Scrolling: Enable smooth scrolling for a better user… Continue reading iOS-Specific Display Issues in SuiteCommerce