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 - 601 through 620 (of 6,404 total)
  • Author
    Search Results
  • In forum: Ascend Theme
    #255282

    Hello,

    So, unfortunately, the only way you would be able to do this is with a child theme with custom code. If you aren’t familiar with coding you would need to seek the assistance of a developer to accomplish this task.

    If you need anything else, please let us know.

    Thanks!

    Chris

    In forum: Kadence Theme

    In reply to: Reorder Post Elements?

    #255176

    The styling is deceptive. I thought the latest version had an update for that styling but I must have not pushed that in.

    I thought about making them drag and drop but couldn’t really think of a use case for it and for templating and easier child theme addons (adding something into the post) it made sense to not make it moveable. But if you have a use case this could be implemented.

    Ben

    #254990

    I am getting this message in debug mode:

    Deprecated: wp_make_content_images_responsive is deprecated since version 5.5.0! Use wp_filter_content_tags() instead. in /home/xxxxx/public_html/wp-includes/functions.php on line 4773

    I have narrowed it down to when the following are activated:
    – Ascend Premium theme (or child theme) – if I switch to TwentyTwenty (but keep plugins active) the error disappears
    – Site Origin Page Builder (2.11.2)
    – Site Origin Widgets Bundle (1.17.5) – if this is deactivated (with Ascend Premium active), the error disappears

    No error if all other plugins are activated with Ascend.

    Could you please have a look and see what might need adjusting?
    Thanks

    In forum: Ascend Theme
    #254964

    Hi, Ben,

    Right, I’ve seen this before. But, It’s not there with me, though. (Look at the picture)
    I just updated it again. I’m using a child theme on a network site.

    Bildschirmfoto-2020-08-15-um-08-24-56

    What can i do?
    Regrads Max

    #254809

    Hi Team,

    When you search the KB for child theme you get this page, but it doesn’t have a link for Kadence.

    I found another page that also has child themes and includes Kadence:

    Maybe add Kadence to the first one and link to the second one at the bottom of the themes page? Someone made and shared a child theme because they thought there wasn’t one available.

    Best,

    David

    #254783

    Hey There!

    I’m working on a site that will have data-driven ozone alerts and a weather widget in the top bar of all pages. My first thought was to create widgets – or probably shortcodes – to do this. But when I look at the customizer for header sections, I don’t see an option to add either to the top bar. I tried dropping {year} into an HTML block as a test, but no luck.

    What is the best way for me to add custom coded objects to the site header? Can I add a function to allow shortcodes in the header? Or maybe hook in? Worst case scenario, I suppose I could add the header template into my child theme and customize, but I’d like to avoid this if possible.

    Thanks!

    #254605
    This reply has been marked as private.
    In forum: Ascend Theme

    In reply to: Ascend theme pro hooks

    #254529

    Hey,
    1. Sure, you can add custom functions to your functions.php in a child theme. Or you can use a plugin like the following that allows you to create a custom layout with Elementor and set it as your header- https://wordpress.org/plugins/header-footer-elementor/
    Have you checked out our newest theme, Kadence? The Header is probably the best part about it as it’s fully customizable. And there will be lots more options coming with Pro (coming out very soon). https://www.youtube.com/watch?v=Dwn20GiePPQ

    2. You would need to use a plugin. Are you a part of Kadence Membership? If so, check out Kadence Share: https://www.kadencewp.com/product/kadence-simple-share/
    Or you can use a free plugin like this: https://wordpress.org/plugins/add-to-any/

    3. Sorry, I’m not sure what you’re asking. Can you explain further?

    Best,
    Hannah

    In forum: Virtue Theme

    In reply to: Primary Menu

    #254512

    Hey John,
    Your menu looks good! Glad you were able to create a solution. Let us know if there’s anything we can do to help further with it.

    As for your child theme, any change that is made in your theme options, including custom css added to the custom css box, will be saved into your database so it will transfer into the parent theme as well. The purpose of the child theme is for you to edit the theme files (i.e. adding custom functions). I hope that’s more clear!

    Hope you’re enjoying your weekend!

    Best,
    Hannah

    In forum: Virtue Theme

    In reply to: Primary Menu

    #254473

    Also, I just recently installed a Virtue Premium Child theme, and I noticed that this is what is active. I am editing the Child Theme. Is this correct, or should I be adding custom css to the Advanced Settings of the Virtue Premium theme? I don’t want to make any mistakes with this, because I’m new to the Child Theme concept. I understand that if I’m going to add anything to a Functions php file, then I have to add it to the Child Theme. But what about all other website edits, should those also be added to the child theme or the regular theme. Does it make a difference for SEO or site load speed? Are they saved the same? Please advise on best practice here.

    #254270

    Sorry Ben, the snippet you provided did not work. Since it didn’t work. I took it out of the child theme’s function.php file.

    #254255

    I understand what is happening. 🙂

    There is a custom post type the theme adds for you called “staff” you are using it on your site. This registers with WordPress to use “staff” queries to redirect to staff pages. Your product attributes query is using staff=4 and that is causing WordPress to think you want a staff post.

    So this means you need to change the theme staff slug, here is code you can add to a child theme to do that:

    add_filter('kadence_staff_post_slug', 'custom_change_staff_slug' );
    function custom_change_staff_slug( $slug ) {
    	return 'our-staff';
    }

    Make sure to re-save permalinks after.

    Ben

    #254172

    I have Kadence theme and child theme installed/activated. EDD installed and an edd_templates folder with files in the child theme. But in the Customizer under Custom Post Type > Downloads Layout, the layout is reflecting the same as the Blog Posts > Archive Layout. It is not reflecting our custom templates or even the settings in the Downloads Layout.

    #254101

    Hi,

    a question for your developer.

    in our child theme I need to add some custom CSS classes to the div around the products on the shop page (that’s for adding some custom filter widget for product attributes – but that’s another story 😉

    The question here is: Looking at the source of lib/woocommerce/woo-archive-hooks.php in line 142 and 143 there are two filters to do this:
    * virtue_product_loop_classes (which is being used in the code at one place)
    * and kadence_woo_ele_product_loop_classes (which is used nowhere but might have been added recently and be used in the future)

    Both seem to be more or less the same. Which of the two is better to use? I mean in terms of future compatibility that is which one is less likely to be removed or changed in the future?

    #254016

    Hey,
    I think there was some confusion. Our new Kadence Theme is not the Base theme for “virtue bold”. That is a child theme of Virtue Premium. The features you are looking for are not part of the Virtue theme.

    One thing you can do with the virtue theme (and virtue bold child theme) is to install elementor and our product extension for elementor.

    see here: https://wordpress.org/plugins/kadence-woocommerce-elementor/

    You can watch a video here: https://www.youtube.com/watch?v=rcA_MFIYFm0

    That would allow you to edit the content of your product pages.

    Just a note our New Kadence Theme is different and has this built in.

    Ben

    In forum: Virtue Theme

    In reply to: Child theme questions

    #253993

    If it’s in your Advanced Settings then it is likely all custom css (HTML would not work there). So you should not need to transfer this to a child theme.

    Hannah

    #253991

    Dear Hannah,

    I already spent a lot of time with Kadence Virtue Bold Child Theme Design structure. Please check https://www.hazelglow.in/

    After Add to Cart Button: Is it possible to add below text with icon?

    Example:

    Free shipping on orders over $50!
    1st {icon} Satisfaction Guaranteed
    2nd {Icon} Secure Payments
    3rd
    4th
    5th

    After the above lines Add

    GUARANTEED SAFE CHECKOUT (text)
    Small images of Payment Gateways Image.

    After this, I am ready to launch soon this website.

    I do assure you this website will be best in showcasing. Last 4-5 Years I am using OceanWP Pro Theme. Please check my current working business website https://hazelglow.com/ . After look features and reviews I decided to buy Kadence membership. Soon .com I will switch after .in domain launch.

    Please help me urgently right now with developer Team member Support: on Single Product Page. Thanks in Advance.

    Regards
    Himanshu
    Director / Co-Founder
    Brand – Hazelglow®

    In forum: Virtue Theme

    In reply to: Child theme questions

    #253970

    Hi Hannah,

    I’m not actually sure what the technical differences are between css and html. Here is the list of added code in my advanced settings. Can you do a quick scan and see if anything from here should be added to my new child theme?

    Oops, I just tried to send the message, but the security system on this message wouldn’t let me send the code.

    John

    #253969

    Hello Dear Hannah,

    Thanks for the response. Please find attached links for which feature I am looking with Kadence Virtue Bold Child theme, Which had Kadence Free Base Theme.

    Kadence-Base-Theme-Single-Product-Layout Kadence-Base-Theme-Woo-Commerce-Product-Page Kadence-Theme-Virtue-Bold-Child-Woo-Commerce-Product-Page

    I want to adjust the Single product in Virtue Bold Child theme.

    https://www.hazelglow.in/shop/clothing/happy-ninja/ Almost ready all basic setting before launching my website. Just want to set and some adjust like free Kadence Base Theme product layout.

    https://pinnacle.onkarsingh.com/product/album/ I tested this on-base feature which I want to set Single product design setup.

    If Virtue Bold Child Theme base structure doesn’t allow this feature? Thinking to set with Kadence Base theme only if the header logo and sticky slide logo can be set just like virtue bold theme.

    That’s what I need.

    Also I raised a ticket for change / update my email id in licence manager api page to [email protected]

    Regards
    Himanshu

    In forum: Virtue Theme
    #253947

    No, sorry. You would need to customize that through a child theme.

    Hannah

Viewing 20 results - 601 through 620 (of 6,404 total)