Islamic finance is a type of financing activity that must comply with Sharia. The common practices of Islamic finance and banking came into existence along with the foundation of Islam. Nowadays, the Islamic finance sector grows at 15%-25% per year, while Islamic financial institutions oversee over $2 trillion. Though only a blooming industry by market terms, representing a 1.5% of the… Continue reading Islamic Finance
Month: November 2023
Restock Drop Ship Sales Returns using RMA
Scenario User would like to know how an Item marked as Drop Ship can become part of Inventory once a customer returns that Item Solution On the Sales Order page, click the Authorize Return button. In the Return Authorization page, users have the option to set it to either Pending Receipt or Pending Approval. The Drop Shipment Column will automatically be checked when users click the Authorize Return on the Sales Order page. If… Continue reading Restock Drop Ship Sales Returns using RMA
Core Administrator Permission
The Full Access role has been inactivated for all users. The Full Access role no longer appears in the list of roles available for users who had this role assigned. The Core Administration Permissions checkbox is available on the role configuration page on Setup > Users/Roles > Manage Role and edit one role. This is created… Continue reading Core Administrator Permission
Send Transactions Email to Customers Only With Invoices
1. Update Customer Record – Navigate to Lists > Relationships > Customers – Edit any customer– In the Preferences tab, uncheck Email next to Send Transactions Via– Click Save 2. Update Custom Form– Navigate to Customization > Forms > Transaction Forms– Edit your preferred Invoice Form– Go to Screen Fields tab> Communication:Messages tab– In the To be E-mailed, mark the Default checkbox– Click Save
How can I show the announcement section in the next.js frontend with ACF in the WordPress backend?
At first, install react-modal using the code “npm i react-modal”At the backend, create two fields as shown below: write the code in the announcement.js:code: When clicking on the announcement section on the website a new pop-up will shown with the details of the announcements.
Redirect or move to another page in Next. js
import { useRouter } from ‘next/router’; //Import from module const goBack = () => { const router = useRouter(); router.back(); };
How to set tooltip for a lottie in Nextjs
Adding tooltips to interactive elements, such as Lottie animations, can significantly enhance the user experience by providing context and guidance. In our Next.js project, you can add the necessary dependencies and set up theme switching. // pages/index.jsimport React, { useState, useEffect } from ‘react’;import { useTheme } from ‘next-themes’; export default function Home() {const {… Continue reading How to set tooltip for a lottie in Nextjs
How to fetch list of Authors from WordPress
WordPress provides a robust set of functions to interact with user data, and one such function is wp_list_authors. This function allows us to retrieve and display a list of all authors on the site with various customization options. Parameters in wp_list_author wp_list_authors accepts an array or string of arguments ($args) to tailor the output according… Continue reading How to fetch list of Authors from WordPress
Styling in Next.js(React Js)
Styling in Next.js offers flexibility, and you can choose from various approaches. There exist 2 popular approach. CSS-in-JS with styled-components and traditional CSS with CSS modules 1.CSS-in-JS with Styled-Components: // components/Button.js import styled from ‘styled-components’; const StyledButton = styled.button`padding: 10px 15px;font-size: 16px;color: white;background-color: ${(props) => (props.primary ? ‘blue’ : ‘green’)};border: none;border-radius: 5px;cursor: pointer; &:hover {background-color:… Continue reading Styling in Next.js(React Js)
How to Force a Page Refresh in Next.js
To force a page refresh in Next.js, we can utilize the next/router module to programmatically navigate to the current page with different query parameters. This triggers a full reload of the page. Here’s an example of how we can achieve this: import { useRouter } from ‘next/navigation’;const MyComponent = () => {const router = useRouter();const handleRefresh =… Continue reading How to Force a Page Refresh in Next.js