QA Tips – Display Time in 12/24 Hours Clock Format

To display the time in 12 hours or 24 hours clock format, follow the steps below: 1. Navigate to Lists > Search > Saved Searches > New. 2. Select the entity record type. 3. Under the Criteria tab select the desired filters. 4. Under the Results tab select the desired fields then include a Formula (Text) field and enter the following in the FORMULA field: TO_CHAR({datecreated},’MM/DD/YYYY HH24:MI:SS’) For a 12… Continue reading QA Tips – Display Time in 12/24 Hours Clock Format

Aligning Common Elements to the Bottom with a Simple CSS Technique

For Example: To position a button at the bottom of each column and make them appear on the same line, you can use CSS flexbox or CSS grid, depending on your layout structure. Here are examples using both approaches: HTML <div class=”container”>   <div class=”column”>     <!– Column content –>     <button class=”bottom-button”>Button</button>… Continue reading Aligning Common Elements to the Bottom with a Simple CSS Technique

Published
Categorized as Wordpress Tagged

Usage of Any Font Plugin

Freedom of Font Choice: Enjoy the flexibility of using any custom font on your website without being limited to a predefined set. No CSS knowledge is required. Demo Available: Explore the working demo of Use Any Font to witness its capabilities firsthand. Easy Setup: Quick and straightforward setup without the need for CSS expertise or… Continue reading Usage of Any Font Plugin

How to Create price slider bar for filter section in react

In this article, we cover the topic of creating a slider in the filter section using react.js 1. Install ‘rc-slider”: we need to install therc-slider library, which provides customizable slider components for React. npm install rc-slider 2. Implement the Price Slider Component: Create a new component for the price slider. import React, { useState }… Continue reading How to Create price slider bar for filter section in react

Strong Testimonial WP Plugin

Collect and display testimonials on your WordPress site with the Strong Testimonials plugin. After activation, find a page with a guide link and a promotion for the paid version. A new Testimonials section will be added to the Dashboard. An unique feature allows you to remove all upsells by checking a box and saving the… Continue reading Strong Testimonial WP Plugin

What is Anonymous function and it’s typical use case in JavaScript

Here we are going to learn about the Anonymous functions with their examplaes. A function is a set of statements that take inputs, do some specific computation, and produce output. Basically, a function is a set of statements that performs some tasks or does some computation and then return the result to the user. The… Continue reading What is Anonymous function and it’s typical use case in JavaScript

How to create a Custom class to a WP page (Creating from Dashboard)

You can use the body_class function in your theme’s functions.php file to add custom classes to the body tag of your pages. function custom_body_classes($classes) {     // Add your custom class     $classes[] = ‘my-custom-class’;     return $classes; } add_filter(‘body_class’, ‘custom_body_classes’); After adding this code, every page will have the class ‘my-custom-class’… Continue reading How to create a Custom class to a WP page (Creating from Dashboard)

How to set the default shipping address country in SuitScript

We can set a default shipping address using suitescript. define(‘ContactUs.Model’, [   ‘SC.Model’,   ‘Configuration’,   ‘Application’,   ‘Models.Init’,   ‘Utils’ ], function ContactUs(   SCModel,   Configuration,   Application,   CommerceAPI ) {   ‘use strict’;     return SCModel.extend({     name: ‘ContactUs’,       configuration: Configuration.get(‘contactUs’),       create: function create(data) {       nlapiLogExecution(‘ERROR’, ‘Create fn’);       nlapiLogExecution(‘ERROR’, ‘Create fn data’, JSON.stringify(data));       data.country =”US”;       var response;       var responseCode;       var… Continue reading How to set the default shipping address country in SuitScript

In login register page how to make the address auto populate from shipping to billing address

In login register page we can display the list of countries in our billing address and can auto populate the same list in shipping address too instead of creating a new list. events: _.extend({}, RegisterView.prototype.events, {                         ‘change [data-action=”selectcountry”]’: ‘updateStates’,        … Continue reading In login register page how to make the address auto populate from shipping to billing address

How to display a youtube video related to product in PDP page

Here we can learn to display a YouTube video related to the product in whose PDP page we are currently present. define(‘JobinAndJismiITServices.ProductVideo.ProductVideos.View’, [     ‘jobinandjismiitservices_productvideo_productvideos.tpl’, ‘ProductVideoIframe’, ‘Utils’, ‘Backbone’, ‘jQuery’, ‘underscore’ ], function (     jobinandjismiitservices_productvideo_productvideos_tpl, ProductVideoIframe, Utils, Backbone, jQuery, _ ) {     ‘use strict’;     return Backbone.View.extend({      … Continue reading How to display a youtube video related to product in PDP page