Questions tagged [customizer]
18 questions
3
votes
0 answers
How to customize the API metadata of springdoc-openai?
I'm trying to customize the springdoc-openapi, make it can work with my framework, but I meet two problems.
1. How to treat methods that do not start with is/get as properties of Model?
If users use my ORM framework by Java language, the property…

Tao Chen
- 197
- 10
2
votes
0 answers
How can I Use HTML code in WordPress Customizer
I Would like to use html codes in customizer API. But when I use it, WordPress removes the html tags.
In default area I used some html tags, But it does work on my actual page. Is there any way please…

sadik
- 21
- 3
2
votes
1 answer
WordPress Customizer Links Stopped Working Since WP5.8 Update
My WordPress Customizer Menu Items stopped working since WP 5.8 Update. So Im not able to click on any of the items like Widgets, Settings or even Changing the theme. No buttons are working in the customizer.
When I use the same theme in WP 5.5 it…

Brian Wiltshire
- 447
- 4
- 15
1
vote
0 answers
I wanted to show post by category using customizer. I was able show and select category using customizer. But all posts are showing not by categories
// adding category select to the customizer
//Get an array with the category list
$silicon_cac_full_list = get_categories(array( 'orderby' => 'name', ));
//Create an empty array
$silicon_cac_list =…

Vicky Bhandari
- 11
- 1
1
vote
2 answers
How to fix errors for Django's Auth/CustomUser after resetting the migrations and db?
After experimenting with setting up CustomUser and many-to-many relationships, I decided to make some (what turned out to be major) changes to the models. I had read that CustomUser/Auth needs to be set up first, or else it'll be a mess. But since…

YCode
- 1,192
- 1
- 12
- 28
1
vote
1 answer
Cascade delete problem on **custom** unidirectional @OneToMany relationship (JPA eclipselink)
I'm having problem deleting an entity having an Unidirectional @OneToMany custom relationship.
Here the relationship on the "base" entity (relevant columns only):
@Id
@GeneratedValue(strategy=GenerationType.IDENTITY)
@Basic(optional =…

Marc Bonet
- 31
- 5
1
vote
0 answers
Wordpress Customizer HTML manipulation and dropdown menu
I'm trying to add a section in the wordpress customizer with a few different "subsections" in a dropdown menu. Like in the following image:
I would like to open a subsection when you make click on "H1", for example, with some new controls. I know…

Álvaro García
- 177
- 9
0
votes
0 answers
How to solve this problem in infinityfree file manager?
Parse error: syntax error, unexpected 'return' (T_RETURN), expecting function (T_FUNCTION) or const (T_CONST) in /home/vol8_5/epizy.com/epiz_34347250/htdocs/wp-content/themes/sydney/inc/customizer/controls/typography/class_sydney_typography.php on…
0
votes
0 answers
Springdoc PropertyCustomizer is not inwoked for all Types
In our spring project we have over hundred of schemas I have a task to set all types in schemas annotated with @Nonnull to required so they appear is required (with a *) in Swagger. I've overridden the method customize from springdoc's…

Jan Přibyl
- 29
- 5
0
votes
0 answers
How to open custom.php file in WordPress customizer without adding or registering the Page or Post in javascript
I am trying to customize the custom.php file in WordPress customizer. I am able to customize the file using PHP by using this hook template_include
add_filter( 'template_include', function( $return ) {
if ( isset( $_GET['is_custom_page_active']…

Syed Ali Ahmed
- 33
- 5
0
votes
0 answers
$wp_customize->add_control() Textarea in wordpress Customizer Section does not Update in Preview pane in Realtime
I have created a textarea in WordPress Customizer in the following way.
$wp_customize->add_setting( "stylesheet_setting", array(
'default' => '',
'type' => 'theme_mod',
'capability' => 'edit_theme_options',
'transport' =>…

TutsInsider
- 71
- 1
- 8
0
votes
0 answers
Single Post not open(redirect) within Wordpress customizer ? am i missing something with my theme?
I am beginner learning Wordpress customizer based theme development so cant figure out what is needed. Problem is : in others custom made theme within the customizer if you clicks on any post, customizer open(redirects to) that post page and user is…
0
votes
1 answer
How to write customizer function for lodash _.mergeWith third argument in this situation?
I have two objects like that:
var obj3 = {
customer_id: 1,
products: { id: 1, name: "Car" },
};
var obj4 = {
customer_id: 1,
products: { id: 2, name: "Dress" },
};
and the expected object is:
result = {
customer_id: 1,
…

Giang An
- 45
- 1
- 2
- 8
0
votes
0 answers
Wordpress Customizer values not show in the front page after theme installation
I am working on a wordpress theme and after theme installation, the default values set for customizer are not displayed on the page, but in customizers they appear. If I change something in a field in the customizer and click publish, it is…

Ciuca Cristi
- 81
- 1
- 3
- 7
0
votes
1 answer
maxlength on input field wordpress customizer
Is it possible to put a maxlength on the input fields i use in the customizer.
Like putting some extra setting in the array : maxlength = > 50;
via :
$wp_customize->add_control( 'textblock-text-content', array(
'label' => 'Tekstblok…

Flierp
- 1