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'

Home / Forums / Search / Search Results for 'child theme'

Viewing 20 results - 561 through 580 (of 6,404 total)
  • Author
    Search Results
  • #258224

    Hi Phil,
    Sorry for the delay! There isn’t a built-in function for this. Though you can create this effect using some jquery. Are you currently using a child theme?

    Hannah

    In forum: Kadence Theme

    Topic: author.php

    #258160

    Hello, how is it possible to add the author.php page in my child theme of Virtue premium? When I put the proposed code of the wordpress codex the display is not done correctly and the “base.php” page of Virtue is displayed.

    #258020

    What 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

    #257979

    Hi,
    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.less

    Thanks
    Rai

    In forum: Virtue Theme
    #257906

    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 Theme

    In reply to: Styling the Side Cart

    #257896

    I 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.

    #257888

    Hey,
    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-table

    and for strips add this as well:
    is-style-stripes

    If 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

    #257729

    Hi 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!!
    John

    #257663

    Hi 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 “ 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,
    Janek

    #257662

    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

    #257586

    Hey,
    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

    #257550

    We 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
    Mandy

    #257524
    This reply has been marked as private.
    #257517
    This reply has been marked as private.
    #257509

    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,
    Karla

    #257445

    Hannah, 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.

    • This reply was modified 5 years, 7 months ago by Michael.
    • This reply was modified 5 years, 7 months ago by Michael.
    #257431

    URL:

    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.

    #257342

    Hi Clayto,

    Unfortunately, I do not have this option within my appearance drop down.

    I am using a child theme version of the Virtue Premium theme with the API activated for this.

    Thanks

    #257334
    This reply has been marked as private.
    #257241
    This reply has been marked as private.
Viewing 20 results - 561 through 580 (of 6,404 total)