There are several ways to avoid algorithmic penalties and maintain top rankings for your website. Some are automatic, while others are manual. In either case, you’ll need to check your keyword and brand name rankings for any signs of penalty. There are also several methods you can use to reclaim your rankings. Anchor text One… Continue reading How to Avoid SEO Penalties in Algorithm-Stricken Industries
Month: October 2022
The Importance of Accurate Keyword Difficulty Scores
In order to achieve the top rankings on the SERP, digital marketers need to create highly targeted and effective content. In addition, they need to reach out to potential customers. In order to achieve this goal, keyword difficulty is an essential SEO metric. By using an accurate keyword difficulty score, marketers can better target their… Continue reading The Importance of Accurate Keyword Difficulty Scores
How Do Videos Help Your SEO Strategy?
Videos are a powerful tool for search engine optimization, boosting traffic and conversions. When done correctly, they can help you outperform your competitors. Depending on how you use them, videos can support your content strategy or stand alone. Whether you use them to boost conversions, increase traffic, or boost engagement, videos can boost your SEO… Continue reading How Do Videos Help Your SEO Strategy?
Is AMP A Google Ranking Factor?
If you’re wondering if AMP is a ranking factor in Google’s search results, you’re not alone. More websites are using AMP to boost their page speed and improve the user experience. AMP pages have a distinct advantage over non-AMP pages in mobile searches. Besides improving user experience, AMP is also better for visibility and page… Continue reading Is AMP A Google Ranking Factor?
Pull All the Currencies Associated with a Customer/Vendor
The user wants to get the currencies associated with a customer or Vendor if more than one currency is entered in their customer record. To get all the currencies, in the Results section of the saved search select Vendor Currency Balance Fields and select Currency from the drop-down. This is applicable for both Customer and… Continue reading Pull All the Currencies Associated with a Customer/Vendor
Printing a JSON array from Magento 2.4.4
Usually, the JSON can be printed using a simple logger but from Magento 2.4.4 onwards this will not print the array. For that, we have to use $logger->info(print_r($params,true)); (print_r($jsontobeprinted, true)) Var_dump can be also used for printing the contents in the variable.
:: Before,:: after properties not supporting in input type in Mozilla firefox.
:before and :after should only work on the element which can act as a container of content. <input> cannot contain any content so it should not support those pseudo-elements. Chrome supports it because it does not follow the spec (or bug?). Reference : https://stackoverflow.com/questions/37653706/before-with-input-in-firefox
Create a new tab for contact us in My account
To create a new tab in my account we have to create the extension for that and copy the below code in javascript file 2. after creating the tab in myaccount we have to create the router so that a new page for contact us page will get created so, to do this copy the… Continue reading Create a new tab for contact us in My account
Ad hoc Testing
Ad hoc TestingĀ is an informal or unstructured software testing type that aims to break the testing process in order to find possible defects or errors at an early possible stage. Ad hoc testing is done randomly and it is usually an unplanned activity which does not follow any documentation and test design techniques to create… Continue reading Ad hoc Testing
Using Client Script, auto populate division field in the item line of Purchase Order record corresponding to the Projectcode in the item line.
/** @NApiVersion 2.x @NScriptType ClientScript @NModuleScope SameAccount/ define([‘N/record’, ‘N/runtime’, ‘N/search’], /* @param{record} record @param{runtime} runtime @param{search} search*/function(record, runtime, search) {function setDiv(sublist,recobj){var divvar projectcode= recobj.getCurrentSublistValue({sublistId:sublist,fieldId:”custcol_cseg13″})console.log(“projectcode”,projectcode)if(projectcode) {var customrecord_cseg13SearchObj = search.create({type: “customrecord_cseg13”,filters:[[“internalid”, “anyof”, projectcode]],columns:[search.createColumn({name: “custrecord_ref_projectrecord”, label: “Project Record Ref”}),search.createColumn({name: “custentity8”,join: “CUSTRECORD_REF_PROJECTRECORD”,label: “Div/Unit”})]});var searchResultCount = customrecord_cseg13SearchObj.runPaged().count;log.debug(“customrecord_cseg13SearchObj result count”, searchResultCount);customrecord_cseg13SearchObj.run().each(function (result) {// .run().each has a limit of 4,000 resultsdiv =… Continue reading Using Client Script, auto populate division field in the item line of Purchase Order record corresponding to the Projectcode in the item line.