Questions tagged [customization]

Modifying the default state of an application to suit a user's preferences or to address the unique requirements of a particular objective.

An app that supports customization may allow users to change default values, colors, or settings and persist those changes for the next time the user runs the app.

Customization can also refer to modifying configuration settings or modifying source code to make a "prepackaged" software product meet a requirement that is unique to a particular customer or environment. For example, if an app needs to fetch data from a server, the specific details of how the app should connect to the server (URL, protocol, credentials) are usually externalized in a configuration file so they can be easily customized without requiring code modifications.

4611 questions
1
vote
0 answers

Wordpress : Can you put a width condition on add_image_size()

I just started to optimize the auto-scaling of images i upload on my wordpress (via Media tool). I added the desired set of custom sizes, which are working just fine. In example : add_image_size( 'og', 400, 9999 ); add_image_size( 'xxl', 300,…
abicatian
  • 11
  • 3
1
vote
0 answers

Display payment list in drop-down on checkout page in Magento 2

I am working on customization of checkout page in Magento 2. My Magento version is 2.3.2 Currently I am stuck at display payment methods list in Magento 2. Here is what displaying currently. Here is what I want to achieve. Note: I have overridden…
1
vote
0 answers

Can I make my android phone automatically factory reset if the pin is entered incorrectly too many times?

I am traveling overseas in a region where I would prefer my contacts and emails not be accessed if I am forced to unlock my phone. I would like to set up my android (Pixel 3a) phone to automatically perform a factory reset if I entered the pin…
Aibo
  • 11
  • 1
1
vote
1 answer

How to implement a single hidden layer containing neurons with different activation functions?

I'm trying to create a custom neural network model in TensorFlow 2.0. I am aware that it's been repeatedly advised in the TF2.0 community that custom models should be built with the existing modules in the Functional API as much as…
1
vote
5 answers

Error in JSON array comparison customization(sky-screamer)

I have below two JSONs to compare, expected json: [ { "id": 1, "code": 1, "createdOn": null, "lastModifiedOn": null }, { "id": 2, "code": 1, "createdOn": null, "lastModifiedOn": null } ] actual json [ { …
Praveen Kumar Mekala
  • 628
  • 1
  • 10
  • 26
1
vote
1 answer

Symfony 4 - Customize KnpPaginator pagination template?

I'm looking to customize a KnpPaginator paging template to look like this: It is a simple template normally, I just want to display the range in which I am located, with the max and a previous and next button. I saw that it was possible to make our…
eronn
  • 1,690
  • 3
  • 21
  • 53
1
vote
1 answer

TestNG - How to avoid console output headers when increasing verbose level?

I need to keep verbose level at 2, but now the TestNG console output includes: [RemoteTestNG] detected TestNG version 6.14.3 ... ... TestNG 6.14.3 by Cédric Beust (cedric@beust.com) ... I've already tried creating my own listener which extends…
TGandhi
  • 93
  • 1
  • 5
1
vote
1 answer

How to make an app like VEVO?

The VEVO app on iPhone sets a great sample for video oriented apps. I'm working on something similar, and I want to now how to customize the video controller as VEVO does. My current app is based on the built-in controller. It's OK, but I want to…
Allen Hsu
  • 3,515
  • 3
  • 25
  • 38
1
vote
0 answers

Custom color map in matplotlib

I'm trying to create a colormap to use with matplotlib for value ranges with different sizes. For example, the first range is from 0 to 0.7, the second from 0.7 to 0.9 e the last to 0.9 to 1. I have specific colors for each of the points (0, 0.7,…
Danilo
  • 21
  • 3
1
vote
1 answer

I want to add sign in form of magento 2 checkout step

I want to add sign in form of magento 2 to my checkout step and want to show sign in form when checking out how to call template of sign in form in my custom checkout step.
1
vote
1 answer

Customizing Buttons in QML

I am new to QML development. I would like to customize the QML button for our requirement. In some QML sample projects, the customization is done as Button.QML by drawing a rectangle and implementing mouse area onclick() events. example, import…
QML Developer
  • 11
  • 1
  • 3
1
vote
0 answers

How do you control the size and position of new controls when customising CFileDialog?

I'm customising a CFileDialog "Save As" dialog, using the built in tools. I'm simply adding a new text label (AddText or StartVisualGroup) and a new combo box (AddComboBox). It all works fine, but I don't like the positioning and sizing of the new…
Kyudos
  • 625
  • 4
  • 18
1
vote
0 answers

field_to_name_array - Take second-level related data

I'm in a custom module; in editview. Thanks to this https://stackoverflow.com/questions/41063014/populating-a-field-when-choosing-a-relate-field-suite-crm#=, I'm automatically populating some fields from the aos_products module when the user chooses…
Elisa74
  • 25
  • 5
1
vote
0 answers

Can I create custom Annotation in Swift?

I know there are limited ways to create own custom Annotations in Java. One article describes here a way. I wonder, is it possible to create custom Annotation in Swift as well? For example, I have a BaseViewController and I want to test if any of…
Sazzad Hissain Khan
  • 37,929
  • 33
  • 189
  • 256
1
vote
0 answers

APEX: Integration from internal pbx to Salesforce

I am looking to create an app for AppExchange in Salesforce The goal is to login to my PBX and enable click_and_dial Actually I have this code:
1 2 3
99
100