Google has just launched a new desktop search design that makes it easier to identify sites listed in both search results and ads. Like mobile search, the updated desktop layout will now display favicons and site names to help users find websites that they are interested in. Adding a favicon to your website is important… Continue reading Google Introduces Updated Desktop Search Design
Month: May 2023
How to setup URL Forwarding
Any domain, free or paid, can be forwarded to any URL you’d like, by using Freenom’s URL Forwarding Service. To set up URL forwarding for your domain: Go to My Domains: https://my.freenom.com/clientarea.php?action=domains Click on Manage Domain Click on Management Tools Click on URL Forwarding Enter the destination address in the URL Forwarding box. Press Set URL DONE! There are two different… Continue reading How to setup URL Forwarding
How to add footer links in wordpress
Create a widget in your custom theme. To add widgets in the dashboard, register sidebar function in the page functions.php. function arphabet_widgets_init(){register_sidebar( array(‘name’ => ‘Footer Sidebar 1’,‘id’ => ‘footer-sidebar-1’,‘description’ => ‘Appears in the footer area’,‘before_widget’ => ”, ‘after_widget’ => ”,‘before_title’ => ‘ ‘, ‘after_title’ => ”,) );…….…..…}add_action(‘widgets_init’,’arphabet_widgets_init’); This will give a widget in the dashboard.… Continue reading How to add footer links in wordpress
imagecolorsforindex(): Argument #2 ($color) is out of range when running bin/magento catalog:images:resize
I basically changed the default image adapter configuration of “Image Processing Settings” in Configuration>Advanced>Developer>Image Processing Settings from PHP GD2 to ImageMagick, and ran catalog:images:resize again after flushing image cache
N/query module overview.
Understanding N/query module NetSuite, a leading cloud-based ERP platform, offers a robust set of tools and modules to help businesses streamline their operations. The N/query module is especially important for querying and manipulating data within NetSuite. In this article, we will look at the N/query module, and its key features, and provide a live example… Continue reading N/query module overview.
Get the Current Date with Time Zone and Preferred Format Using SuiteScript
The user can use SuiteScript to get the current date or time by using the supplied code. It helps format dates in emails, printed forms, and other editable text.
To update the Current Net Book Value of the newly imported Fixed Assets
The Cumulative Depreciation and Net Book Value fields were not populated after importing new Asset Records. Upon checking the Asset Values List, Asset Value Records were not created for the Asset imported. Solution The missing values usually happen when the Run Server SuiteScript and Trigger Workflows are not marked under the Advanced Options during the CSV import… Continue reading To update the Current Net Book Value of the newly imported Fixed Assets
Bill payment window emails
Send emails when bill payments are done throw the pay bill window.
To fetch the post count based on all user roles in WordPress
get_editable_roles() function to retrieve an array of all user roles and their details. We then iterate through each role and perform a user query for that specific role. Inside the loop, we display the role name as a heading.
Get Time Format From Set Preferences Page via SuiteScript
User wants to get the Time Format from the Set Preferences page using SuiteScript 2.X