Notice: These forums are now retired and closed. For active support, please Submit a Ticket or visit our official WordPress.org community pages.
Kadence Theme | Kadence Blocks | Starter Templates | WooCommerce Email Designer | Ascend | Virtue | Pinnacle
Search Results for 'child theme'
-
AuthorSearch Results
-
In forum: Kadence Theme
In reply to: Sticky header animation delay
In forum: Kadence ThemeTopic: author.php
In forum: Virtue ThemeIn reply to: Problem with Slider Revolution
October 1, 2020 at 10:31 am #258020What changes are you seeing?
The setting for excerpt on archive pages is in your theme options > shop settings.
And please tell us which plugin breaks the settings
Did you try as I asked? I don’t know which of the many plugins or child theme is the issue. I’m just saying that I can’t recreate any issue on a demo so something you have it breaking the carousel.
Ben
In forum: Ascend ThemeHi,
i use the Ascend Child Theme 1.9.15.The social Icons for kt-icon-linkedin and kt-icon-xing not shown .
the classes are not aviable in css, if entered in dem custom CSS, the Icons are broken, how can i get these icons to work?
Also i see that kad-framework/ascend/icons.less is not includes in ascend.less or ascend-base.lessThanks
RaiIn forum: Virtue ThemeIn reply to: Shop Page Image Placeholder
Sorry for the delay! Seems that plugin, unfortunately, has not been updated. If you’re willing to do a little coding, and if you’re using a child theme, this post explains how to add a custom function: https://slickmedia.co.uk/blog/woo-commerce-custom-placeholder-image-single-product-page-category-archive-pages/
Would that work for you?Hannah
In forum: Kadence ThemeIn reply to: Styling the Side Cart
September 29, 2020 at 2:04 pm #257896I also tried making this exact CSS update (from your video) in my child theme’s style.css sheet and the change would not come through unless I added an !important; tag… should the child theme’s stylesheet not override the theme?
I am using the Kadence provided child theme files.
In forum: Kadence ThemeIn reply to: Built-in Classes for non-block/pagebuilder content
September 29, 2020 at 11:27 am #257888Hey,
We talked some on Facebook but it’s great to also have this here.Assuming you are not using the block editer (in which case you would be able to just add a table block) you can add this class to your table to get table styling:
wp-block-tableand for strips add this as well:
is-style-stripesIf you wanted to have a container with a background using one of the theme colors and text color using one of the theme colors there are built in classes in WordPress for this. For example:
has-theme-palette-9-color
That will set the text color to color 9 in your palette.
has-theme-palette-1-background-color
That will set the background color to color 1 in your palette.I hope that further clarifies. There isn’t notice specific styling because you would generally do this in a block where you can define it to look however you want, that will add inline styles and prevent any bloat in the main theme css for different variations of a notice that for the majority of people wouldn’t ever be used.
However if you wanted to add some basic notice styling you would paste this into your custom css in the customizer:
.kt-notice { background: var(--global-palette8); border: 1px solid var(--global-palette6); padding: 1em 1.5em; border-radius: .25rem; margin: 1em 0; font-weight: bold; color: var(--global-palette5); } .kt-notice p:first-child:last-child { margin:0; } .kt-notice-warning { background:#FFFAF0; border-color:#F6AD55; color: #DD6B20; } .kt-notice-info { background:#EBF8FF; border-color:#63B3ED; color: #3182CE; } .kt-notice-success { background:#E6FFFA; border-color:#4FD1C5; color: #319795; }Then you can add HTML like this:
<div class="kt-notice kt-notice-info">This is the notice</div>Ben
In forum: Kadence ThemeTopic: Styling the Side Cart
September 27, 2020 at 12:47 am #257729Hi There – I can’t seem to find any customization features for the side cart… am I crazy??
Would be very grateful if someone could point me to documentation showing classes and hooks for those elements so I can do some shaping in my child theme.
Thanks!!
JohnIn forum: Kadence ThemeHi Ben & Hannah, First off For a while now I have been a fan of the Classic Editor plugin. But you have blown me away with your new Kadence WP theme, it is really brilliant, well done! I am a convert to your blocks.
Only one snag so far is the Starter Template “Shopping” that I downloaded and activated, I have looked everywhere in the menus and YouTubes and disabled the child theme but I cannot see how to change the featured image “*Login to see link the girl with the leaf in front of her face.
The Header, logo and menus all have edit icons that show up but not on the picture and no option in the edit menu in the left sidebar. When I go to the page itself that image is not there it only shows under the theme customize.How can I change for my own image or even better to insert a Kadence Slider.
Regards,
JanekIn forum: Kadence ThemeIn reply to: Styling Archive and Search Page
Hi all-
On a closely related note to this, how/where can you change / choose the default fall-back image that shows on Ascend Premium Search Results (archive) listing pages? Also… even though my current image for that purpose is 1:1 square, they are coming out at 540 x 620 pixels? (auto-cropped image is here: http://www.arlotte.co.uk/wp-content/uploads/2020/01/Latest-News-icon-blue-540×620.png – but the one I uploaded to Media Library is/was square).
If this can be achieved by overriding a WP template file as part of a child theme (which I’m already using) please let me know the template file(s) I need to copy and amend.
Thanks so much.
John
In forum: Kadence ThemeIn reply to: Child theme – repair header template
September 24, 2020 at 4:56 pm #257586Hey,
If you want to use a child theme stylesheet (I don’t suggest this usually) then you would need to enqueue that style:
https://developer.wordpress.org/reference/functions/wp_enqueue_style/This means in your child theme you would need to add something to the functions.php file.
If you are using our example child theme then this is already mostly setup for you, if you open the functions.php file you can see this at the top:
<?php /** * Enqueue child styles. */ function child_enqueue_styles() { wp_enqueue_style( 'child-theme', get_stylesheet_directory_uri() . '/style.css', array(), 100 ); } // add_action( 'wp_enqueue_scripts', 'child_enqueue_styles' ); // Remove the // from the beginning of this line if you want the child theme style.css file to load on the front end of your site. /** * Add custom functions here */All you would need to do to load your child theme style.css file is to remove the first two lines before
add_action(...Which means your functions file would look like this:
<?php /** * Enqueue child styles. */ function child_enqueue_styles() { wp_enqueue_style( 'child-theme', get_stylesheet_directory_uri() . '/style.css', array(), 100 ); } add_action( 'wp_enqueue_scripts', 'child_enqueue_styles' ); // Remove the // from the beginning of this line if you want the child theme style.css file to load on the front end of your site. /** * Add custom functions here */I hope this clarifies and helps!
Ben
In forum: Ascend ThemeSeptember 24, 2020 at 9:49 am #257550We have set up some custom sidebars in the ascend theme and are using a snippet of code in a child theme to manage which sidebar appears for a number of different post types. This is all working fine.
The problem we are having is that sometimes the content of a sidebar is moved into a different sidebar. We think that this is related to changing the software base: activating, deactivating or updating plugins or theme on the site.
Our test site had a buddypress sidebar on it but the live site does not, so the only sidebars are the Ascend ones and our custom ones. We have experienced the problem on both sites.
Is there any way to stabilise the situation so we do not have to continually check that the sidebars retain the correct content?
Thanks
MandyIn forum: Kadence ThemeIn reply to: Child theme – repair header template
In forum: Kadence ThemeIn forum: Kadence ThemeIn reply to: Child theme – repair header template
Hello,
Thanks for reaching out.I am not entirely sure how that plugin creates a child theme, but our theme’s code base follows WordPress codex so there shouldn’t be any issue.
Instead of using another plugin to create a child theme, you can download one from this page(https://www.kadencewp.com/child-themes/) by clicking the Example Kadence Child Theme button.
Hope this helps and let us know if we can assist you further.
Best Regards,
KarlaIn forum: Ascend ThemeHannah, sorry, no that’s not what I want to do. The theme setting changes hover to a single background color for every item on the top level.
I’m trying to change the hover color for EACH item on the top level. If you look at the website, you’ll see that each set of dropdown menus has a different fill color. I want the hover cover for each item at the top level to match the fill color of its children. I’m happy to set them more or less “manually” within the CSS, since I’m already doing that to get the dropdown menu colors.
If you mouse over the text, which is a span, you’ll see I’m successfully changing the span background. But I can’t figure out how to specify the entire box for the hover color.
In forum: Kadence ThemeURL: *Login to see link
MESSAGE: Had a working child theme but for some reason it stopped working. Couldn’t see why so tried creating a new child theme using Child Theme Configurator version 2.5.6 but got error message: “This theme loads stylesheets after the wp_styles queue. This makes it difficult for plugins to override these styles. You can try to resolve this using the “Repair header template” option (Step 6, “Additional handling options”, below).”
Can you explain why I am getting this message about kadence theme? Should I follow their instructions to repair header template? Will I need to do this on all sites I install Kadence theme? Thanks.
In forum: Kadence ThemeIn reply to: How to activate kadence package membership?
In forum: Kadence BlocksIn reply to: Qubely Pro layout conflict with Kadence Pro
In forum: Kadence ThemeIn reply to: Custom Header Or Menu On Specific Pages
This reply has been marked as private.September 21, 2020 at 6:40 am #257241 -
AuthorSearch Results


