Questions tagged [custom-theme]

92 questions
0
votes
1 answer

How to apply custom Angular theme to all elements?

I have made a custom Angular theme 'my-theme.scss' and included it in the angular.json file. It works fine with all Angular-Elements, but to some HTML-Elements within Angular Components it does not apply. Example:
be2021
  • 29
  • 6
0
votes
0 answers

Why is my custom theme in Angular not recognized?

I created the file "custom-theme.scss" in the src-folder with this code: @use '@angular/material' as mat; $my-primary: mat.define-palette(mat.$light-blue-palette, 500); $my-accent: mat.define-palette(mat.$light-blue-palette, 500); $my-theme:…
Sarah
  • 21
  • 4
0
votes
0 answers

Create a VSCode theme with multiple styles

I've published my custom VS Code theme and everything works fine. Then I decided to create additional style for the theme with more vibrant colors, and there's a problem – I don't really know how to create a multiple-styled theme. Also, couldn't…
0
votes
0 answers

Getting issue with category tabbing display in wordpress

I have tried to showcase my categories as tabbing view but my code is not working properly. First time when i load the homepage, it shows all the posts from all the tabs and when i click on other tab item menu then it works fine. I want to show one…
0
votes
0 answers

Issue incorporating components into custom MUI theme in order to style buttons

I am trying to style buttons in a custom MUI theme however, when I try to incorporate components into my code I get the following error: This is strange to me because I am directly following the documentation here but still getting this error. I…
0
votes
0 answers

WordPress theme not working on hosting server

I recently built a custom theme for my WordPress site and it works perfectly on my localhost. However, when I uploaded it to my hosting server and activated it, I received an error message saying 'Template is missing. Standalone themes need to have…
0
votes
1 answer

Uncaught Error: MUI: The color (primary) provided to augmentColor(color) is invalid

I'm creating my own custom theme by using material design ui.But facing the given below error. It is saying the color (primary) provided to augmentColor (color) is invalid. How can i fix it? I also gone through the MUI doc but can't fix the issue.Is…
David-JSON
  • 35
  • 8
0
votes
0 answers

react mui custom theme issue with styled component and typescript

I'm porting to typescript this awesome project https://github.com/codingmonk-yt/chat-app it's a boilerplate starter for a modern chat webapp built with material ui, where it customize extensively the default material theme i'm not very familiar with…
0
votes
0 answers

WordPress custom theme's filter by price widget returns Attempt to read property "post_count" on null error

I am designing a custom theme for a art selling website in WordPress. When I add 'filter by price' widget to the sidebar it returns Attempt to read property "post_count" on null error. I switched to storefront theme and it works fine. If there's any…
Sujeevan
  • 5
  • 4
0
votes
0 answers

bootstrap.min.js error when adding products to cart with ajax in custom theme Wordpress

I'm finishing my custom theme for wordpress. When I add a product with ajax to the cart I get a bootstrap.min.js error on the console. I am showing all the products through shortcodes. This is what my functions.php looks like: function…
0
votes
2 answers

Error while updating to PHP 8 on Wordpress Custom Theme

I'm doing a required update to PHP 8 on the WordPress custom theme. The suggestion from WPEngine is: to change the theme back to the default one, disable all plugins, update to PHP 8, then switch back to the custom theme. I tried the same steps but…
Lucas.Pheliny
  • 85
  • 1
  • 8
0
votes
1 answer

How to properly style a WPF TextBox using Caliburn.Micro MVVM?

i am currenty doing a little bit of styling for a login user control (username, password, login button), using Caliburn.Micro MVVM. This is my current progress: I created the user control, with its standard WPF controls (1 TextBox, 1 PasswordBox, 1…
ManuelKetisch
  • 23
  • 1
  • 7
0
votes
1 answer

Featured Image & Custom Fields not showing in Wordpress Custom Post Type (CPT)

In my Wordpress back-end, under my Custom Post Type for "Business", I want to enable the Featured Image and Custom-Fields in my "Screen Options", however, there is no option there. See screenshot: Screen Options in Add New Post for Custom Post Type…
mackayem
  • 21
  • 5
0
votes
0 answers

displaying the filtered custom taxonomy

Still trying to figure it out how could I filter the custom taxonomy and display it. the JS is for firing the URL generated is working fine. the problem is the results page items are not showing. I have this code so far:
maru
  • 35
  • 7
0
votes
0 answers

How to get category/subcategory/post name in url custom post type

I registered custom post type and I registerem custom taxonomy. I added category "Hormann" and I added subcategory "Bramy". I would like to have url in my post "mysite.com/archive_name/category/subacategory/post_name". Please help me. Edit: I did it…