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
1 answer

Customizing QHeaderView resize handle

I use the cleanlooks style for my application which fits best the look and feel I want. The annoying thing a stumbled on is that the QHeaderView (horizontal header of a QTableWidget for instance) doesn't paint the resize handle between sections when…
Jeannot
  • 1,165
  • 7
  • 18
1
vote
1 answer

How to add custom icon badge for qualified products in WordPress

I found the following code allows you to add custom image badge for sale
ghadir assadi
  • 15
  • 1
  • 8
1
vote
1 answer

WooCommerce Email Template Customization

I am trying to add a paragraph on the order confirmation email for a WooCommerce site. I added the support for WooCommerce to my child theme's functions.php file. Then I copied an email template to the proper folder in my child theme. Here's the…
1
vote
3 answers

Customizing QML TabButton

I want to customize TabButtons in QML and I couldn't find sufficient properties here. I'm able to change the font color but how can I change the the underlying line style?
Parsa Mousavi
  • 1,052
  • 1
  • 13
  • 31
1
vote
1 answer

How to autoextend maximo contract at due date?

I'm trying to know whether there is a standard way to auto extend a Maximo contract at due date. In most Maximo contract application, there are fields to set up auto extend but there is not any cron task to handle such purpose. Do I really have to…
Bigmwaj
  • 361
  • 2
  • 7
1
vote
2 answers

ggplot custom legend instead of default

I've searched and tried a bunch of suggestions to be able to display a custom legend instead of the default one in a grouped scatter ggplot. I've tried this and this and following this among others. For instance, let's say I have a df like this…
Marius
  • 990
  • 1
  • 14
  • 34
1
vote
2 answers

How to add data to Odoo13's POS order

I'm trying to add data to the POS's order and send that data to the 'pos.order' model based on the site https://odoo-development.readthedocs.io/en/latest/dev/pos/load-data-to-pos.html. To make my case more generic I'm creating a new odoo model named…
Simon Capriles
  • 143
  • 2
  • 21
1
vote
1 answer

Odoo PoS not showing custom field value

I´ve created a module that adds some custom fields to the res.partner model and the PoS partner with a python file and a javascript file. I know both are working correctly because when I write some content in the field, the record is updated in the…
Simon Capriles
  • 143
  • 2
  • 21
1
vote
0 answers

I want Rails Admin Search to be performed form read_replica DB

Is there a way to customize rails_admin search. I need search to be performed from Read Replica DB, rest operations will be performed from write DB only.
1
vote
1 answer

Spring Web Flow: add view state information to URL

I'm using spring web flow 2.5.1.RELEASE. I need to show info about the current view state in the URL (I need it for customer journey tracking with google analytics). Let's say I have a flow (named flow) with two view states (named one and two). The…
user68459
  • 11
  • 2
1
vote
1 answer

How to customize colors in f90-mode emacs?

When I use emacs in f90mode, some instructions appear in a different color (like size, if, print, end, do, etc.). I would like to set up that very same color for a number of functions I defined. How could I accomplish this? Is there any file I could…
elliott
  • 11
  • 1
1
vote
0 answers

iPad: Correct approach to custom navigation items in UINavigationController

This relates to a question I asked a few days ago: iOS: Setting text in nib subview from view in UITabBar/UINavigationController application I need to put the search bar and buttons on the top right of a navigation controller, this is more than the…
1
vote
2 answers

Custom JWT token validation in .NET Core 2.2

I'm trying to validate a JWT token with a custom validation. The token is generated in another API than my own, but I have a way to validate it against a service. I'm at a loss as to what is missing... I keep getting 401 codes, even when my…
Esmars
  • 11
  • 4
1
vote
1 answer

skipping shippingmethod step in magento onepage checkout

Busy on a project and I need to skip the shipping method step. Shop contains simple and grouped products. There is no need for shipping so I tried: - disabling the shipping methods results in not able to checkout - only turning on the free shipping…
Wgenie
  • 199
  • 1
  • 2
  • 11
1
vote
0 answers

How do I modify DataExplorer::create_report function to create a plot bar with percentage?

I have this data set (it's an example). With my real data set, I have 100 categorical variables: library(DataExplorer) df <- data.frame(Sex = c("Male","Female","Male","Female","Male")) create_report(df) And I am making a report through…
adircinho
  • 49
  • 4
1 2 3
99
100