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 - 301 through 320 (of 6,404 total)
  • Author
    Search Results
  • #270421

    Is it possible to switch the placement of the category meta to below the post title instead of above in single posts?

    Using a Restored316 child theme.

    #270404

    Hello Stefan,

    Thank you for reaching out. Apologies for the delay in getting back to you!

    You can use plugins such as Insert Headers and Footers to add it. This will be an easier implementation than overriding the header.php template using a child theme.

    You can see this article. Look below the “**NOTE: This documentation assumes you have installed the plugin and that it is active.**” text.

    Hope this helps and let us know if we can assist you further.

    Regards,
    Karla

    #270379

    Hi,

    I’ve just gotten hosting and installed WordPress version 5.9 onto the server, so would be fresh out the box. I am using A2 Hosting and have also been trying to use the “Peachy” child theme, I am able to install Kadence, Kadence Blocks plugin and Kadence Started Template WP plugin. I am also able to import the child theme, but when I try importing the Starter Template I am seeing “Import Complete: Error: Internal Server Error (500)”

    Under my servers error log I am seeing this:
    [Wed Feb 09 21:24:42.008345 2022] [lsapi:error] [pid 989:tid 47229539579648] [client 92.10.16.57:64183] [host kaylanelson.design] Backend fatal error: PHP Fatal error: Uncaught Error: Call to a member function read() on bool in /home/kaylanel/public_html/wp-content/plugins/kadence-starter-templates/vendor/wxr-importer/WXRImporter.php:366\nStack trace:\n#0 /home/kaylanel/public_html/wp-content/plugins/kadence-starter-templates/inc/class-importer.php(100): AwesomeMotive\\WPContentImporter2\\WXRImporter->import('/home/kaylanel/...')\n#1 /home/kaylanel/public_html/wp-content/plugins/kadence-starter-templates/inc/class-importer.php(199): Kadence_Starter_Templates\\Importer->import('/home/kaylanel/...')\n#2 /home/kaylanel/public_html/wp-content/plugins/kadence-starter-templates/class-kadence-starter-templates.php(2054): Kadence_Starter_Templates\\Importer->import_content('/home/kaylanel/...')\n#3 /home/kaylanel/public_html/wp-includes/class-wp-hook.php(307): Kadence_Starter_Templates\\Starter_Templates->import_demo_data_ajax_callback('')\n#4 /home/kaylanel/public_html/wp-includes/class-wp-hook.php(331): WP_Hook->apply_filters('', Array)\n#5 /home/kaylanel/public_html/wp-includes/plugin.php(4 in /home/kaylanel/public_html/wp-content/plugins/kadence-starter-templates/vendor/wxr-importer/WXRImporter.php on line 366\n, referer: ign/wp-admin/themes.php?page=kadence-starter-templates

    I am using PHP version 7.3, the only plugins I have installed are the ones below that came as part of the Starter Template install:

    Kadence Blocks – Gutenberg Blocks for Page Builder Features
    Kadence Starter Templates
    Smash Balloon Instagram Feed
    WooCommerce

    Any help would be appreciated, thank you!

    #270310

    I have a hierarchy like this on my site which is in the breadcrumbs when I’m on a post page:
    Home > Parent category > Child category > Post

    But unfortunately when I click back through the breadcrumbs to the ‘child category’ link, the breadcrumbs now say:
    Home > Child category

    Instead of…
    Home > Parent category > Child category

    My previous theme presented the breadcrumbs with the parent category ahead of the child category. I’m wondering what is different in the Ascend theme and what I need to do to get the breadcrumbs displaying like this:

    Home > Parent category > Child category

    Thank you.

    #270308

    Hello,

    We’re trying to activate the API License key for Kadence Block Pro and Child Theme Builder and are getting the following error: “Invalid API Licence Key. Login to your My Account…”
    Are you able to assist us?

    • This topic was modified 4 years, 3 months ago by G N.
    In forum: Kadence Theme
    #270268

    Hi Sara,

    Thank you for writing.

    If you have the Pro version of the Kadence theme (Kadence Pro plugin), you can put your GA in Header/Footer scripts and don’t need to install a third-party plugin. If you don’t have the Pro version, you can only put the GA using a third-party plugin or a child theme.

    We prefer to use the Header/Footer scripts as we don’t have control over any third-party plugins.

    Kind regards,
    Chito

    #270249

    Hey Anita,
    Sorry, I actually think I was mistaken there. I believe the only way to achieve this is to add the above custom code to your child theme. Then add the css. Sorry for the confusion!

    Kindly,
    Hannah

    In forum: Kadence Theme

    In reply to: How to remove Schema?

    #270131

    Hello,

    Apologies for the delay in getting back to you.

    Upon checking, we do not add schema for hatom and hcard. You can refer to kadence/inc/components/microdata/component.php file and look at the get_microdata function.

    Please could you send us your website URL so we can check your other plugins? Additionally, are you using a child theme, and have you added other custom code snippets? If you do, please try commenting out those code snippets first to see if that will remove the schemas you’re referring to.

    Additionally, if you have a caching plugin, have you purged the cache after deactivating the plugins? It is possible that the tool is still seeing a cached version of your pages with these schemas still present.

    Hope this helps and let us know if we can assist you further.

    Best Regards,
    Karla

    In forum: Ascend Theme
    #270089

    Hi Peggy,
    Apologies for the delay. You would need to make this change in a child theme. You can download a child theme from here: https://www.kadencewp.com/child-themes/
    Hope that helps!

    Best,
    Hannah

    #270055

    Thanks Karla,
    I have set up the child theme as you suggested and inspected single-entry.php.

    I now need to modify the lines you mentioned. Firstly for the featured image, we have:

    if ( kadence()->show_feature_below() ) {
        get_template_part( 'template-parts/content/entry_thumbnail', get_post_type() );
    }

    So we need to prefix with the decision:

    if ( has_category( 'board', 'slt', 'staff' ) ) {
        ( kadence()->show_feature_below() ) = false
    }

    Please could you advise the best way to include that?

    For the “Related posts” carousel, we have the code:
    if ( ‘post’ === get_post_type() && kadence()->option( ‘post_related’ ) ) {
    get_template_part( ‘template-parts/content/entry_related’, get_post_type() );
    }

    I can’t see how to modify the heading, depending upon the category. Please could you help with this?
    Many thanks,
    Phil.

    In forum: Kadence Theme

    In reply to: Recomended CSS Editor

    #270036

    I did notice that Sebastian Webb, the developer of Microthemer, uses Kadence in some of his demos. There’s a comprehensive article about Microthemer‘s innards on CSS Tricks. It is build upon a pretty smart and fast Sass compiler.

    Some features are worth checking out : a visual CSS Grid builder, proper integration of CSS custom properties, media queries management according to your web building approach (mobile first, desktop first, and more), features you don’t want to do without nowadays. It also handles javascript, and there are quite a few keyboard shortcuts to speed up work. Documentation is thorough, with lots of video tutorials. There’s a learning curve, but you will be learning CSS along the way. Recommended for beginners. Manual editing, on the other hand, is fairly basic, no auto-complete wizardry here.

    You will not need such a tool if you are comfortable writing CSS, however I must say the generated CSS is lean, clean and well organized, and it handles do/undo, CSS revisions as well as automatic commenting. Needless to say, that’s something you will never achieve with the minimalist Custom CSS section of the WP customizer – for that same reason I don’t advise using custom CSS at the block level either, the exception being if you are using it for CSS custom properties.

    In short, if you don’t feel like using VS Code or Sublime for CSS editing, Microthemer is a sound visual editing alternative, IMO.
    It can be used as a stylesheet generator for your child theme as well (in a low-tech, basic way : copy paste the compiled css, but hey, it is fail-proof).
    No bloat, works even with the plugin deactivated.

    • This reply was modified 4 years, 3 months ago by Gilbert C.
    • This reply was modified 4 years, 3 months ago by Gilbert C.
    • This reply was modified 4 years, 3 months ago by Gilbert C.
    In forum: Virtue Theme

    In reply to: Full width menu needed

    #270008

    Hello,

    Thank you for reaching out to us.

    Upon checking your webpage, I can see that the menu is already occupying the full width of the container – https://share.getcloudapp.com/4guZ21Ow.

    On the other hand, if you want them to look like this – https://share.getcloudapp.com/P8u65k92, add this in Theme Options > Advanced Settings > Custom CSS:

    .navclass .container .sf-menu li:last-child a {
        text-align: right;
    }
    .navclass .container .sf-menu li {
        width: calc(80% / 5)!important;
    }
    .navclass .container .sf-menu li:first-child, 
    .navclass .container .sf-menu li:last-child {
        width: 10%!important;
    }
    .navclass .container .sf-menu li:first-child a {
        text-align: left;
    }

    Hope this helps and let us know if we can assist you further.

    Best Regards,
    Karla

    In forum: Ascend Theme
    #269977

    Hi Ben,

    I duplicated the ascend.po file and renamed it fr_FR.po in order to do the French translation. (I prefer not to overload the site with locotranslate).
    If I put the file back in wp-content/ascend_premium/languages ​​, will the file be kept for the next theme update?

    If yes, please tell me how to point it in the child theme.

    Thanks

    #269936

    Hi, Phil!

    Apologies for the delay in getting back to you.

    The Kadence Theme does not have a built-in way or hook to make this possible. The only way I can think of in achieving this is by overriding the theme’s template for single posts. By that, you’ll need to use a child theme – https://www.kadencewp.com/kadence-theme/knowledge-base/advanced/what-is-a-child-theme-should-i-install-one-if-so-how/.

    The theme file that you’ll need to copy and override in your child theme will be kadence/template-parts/content/single-entry.php. Focus on lines 24-26 for the condition in showing the featured image. For the related posts, look at lines 61-63.

    I hope this helps and let us know if we can assist you further.

    Best Regards,
    Karla

    #269715

    I want to code my own search results page in kadence theme. I have additional information to display that I will pull from a database. I can’t find anything like a ‘search-results.php’ template that I can mess around with in a child theme. Would like to know how or where the search results page is created.

    #269713

    Hello, I have an e-commerce website where I will sell digital products. Right now people call in to order, but later they will just use Woocommerce.

    I have installed the Membership plugin from the WordPress website. My goal is to create a part of the website for the team to use as their hub. You have to be logged in and also have the “Staff” role to see it. At the moment, the only way to log in is to have a user account created by an admin, so everyone has either “Staff” or Administrator roles. I think when I setup Woocommerce I will allow people to log in as a different role to see their account.

    Staff members have the staff page as their homepage. We add links to it and we have some sub-pages with special forms that connect to our external database system.

    I would love tips on how to help make an awesome staff area. Here are some of the issues I know of:

    * Child pages of the staff page do not automatically inherit the need to have the Staff role, so it’s possible to make a new page public.
    * When you click to a child page, there is no automatic navigation to return back to the staff page, so it would be nice if there was a way to show a few navigation links either on the child pages of the Staff page (preferred) or to users who have the Staff role
    * Is there a way to show breadcrumb navigation on only some pages? That would also be a good solution.

    Do you have any other suggestions to help me and my team more productive?

    I am using the Kadence Pro theme and package of plugins.

    #269670

    Hello,

    Thank you for reaching out to us and apologies for the delay in getting back to you.

    Is it possible to use Kadence Cloud to sell or grant access to a starter template that I created with the Child Theme builder?

    The import process for the Child Theme builder is similar to the starter templates. There is no direct way to add the child theme in the Kadence Cloud. If you want to add the page templates you used on the child theme in the Kadence Cloud, you’ll have to create them as libraries and group them in a Collection.

    I hope this gave you insights into achieving this and let us know if we can assist you further.

    Kind Regards,
    Karla

    #269616

    Hi there,

    Is it possible to use Kadence Cloud to sell or grant access to a starter template that I created with the Child Theme builder? Ideally, I’d like to add the child theme to my cloud, so my users can download and install it from my cloud. If so, please advise.

    What did I do?
    I created a Child Theme (so-called the Green Site) and exported the zipped file.

    Child Theme Manually Installation (Done)
    On a new WordPress installation (so-called the Blue Site), I installed Kadence Theme, uploaded my Child Theme, and Kadence Starter Templates plugin. Then, I activated the child theme, selected it, and imported the demo content. (This works exceptionally nicely!)

    Kadence Cloud Manually Accessed (Done)
    On a separate domain (so-called could-nine), I successfully installed and configured Kadence Cloud. I then allowed another site to access it. This also worked very well. So, far so good.

    Automated access to my Cloud with WooCommerce (Not Done)
    Even though I have not completed this yet, I can follow the videos and documentation to make the page templates and sections work. But my question is can I do the same for a Child theme? If so, please advise.

    #269554

    Hello,

    Thank you for reaching out to us and apologies for the delay in getting back to you.

    Just to confirm, do you want to show a toggle button while on the desktop sticky view? If so, you can make use of the Toggle Widget Area header item if you have the Kadence Theme Pro addon. Here’s an article regarding this – https://www.kadencewp.com/kadence-theme/knowledge-base/pro-addon/how-to-add-a-toggle-open-menu-for-desktop/.

    However, this item will always show on desktop views once you added it in a header row. There will be some custom CSS code to be added if you only want it to show when the header becomes sticky. Here’s an example – https://share.getcloudapp.com/geudkopq. The custom CSS code I added is:

    .site-header-upper-inner-wrap.child-is-fixed #site-navigation {
        display: none;
    }
    
    .site-header-upper-inner-wrap.child-is-fixed #widget-toggle {
        display: block;
    }
    #widget-toggle {
        display: none;
    }

    Hope this helps and let us know if we can assist you further.

    Best Regards,
    Karla

    In forum: Kadence Theme

    In reply to: Child Builder issue

    #269553

    Hello,

    Apologies for the delay in getting back to you!

    Just to confirm, was your test website blank before you imported the child theme’s templates? It is possible that your header, footer, and typography settings were already set up which is why they did not follow the template. If you revert your test website to a pre-import state and do the import again, will the issue persist?

    Additionally, kindly double-check if the Import Customizer Settings option is enabled when you’re importing the full site – https://share.getcloudapp.com/E0uo64lR.

    Hope this helps and let us know if we can assist you further.

    Best Regards,
    Karla

Viewing 20 results - 301 through 320 (of 6,404 total)