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: Live preview not working
October 17, 2020 at 8:28 am #258963No. I’m not using a child theme and haven’t touched the .htaccess file.
Kristoffer
In forum: Kadence ThemeIn reply to: Live preview not working
In forum: Kadence ThemeIn reply to: Theme updates reset
October 15, 2020 at 12:22 am #258830Hi,
I’ve not heard of this happening to anyone else.My best guess would be that you previously had the theme in a different folder the “kadence” the folder slug is critical because wordpress uses the slug to define where options are saved in the database.
Next if you activated a child theme this would similarly create the same issue. Child themes are their own slug so their own options entry database point.
Ben
In forum: Kadence ThemeIn reply to: Sticky header animation delay
October 14, 2020 at 11:05 pm #258826Thanks Hannah – apologies for the delay in getting back to you.
Yes, I am using a child theme so could add jquery for this function – would be good to see it added as a feature in the future 🙂
Cheers,
Phil.In forum: Kadence ThemeIn reply to: Kadence Theme Update
In forum: Ascend ThemeIn reply to: Upload Field on Product Page
I would recommend using a child theme if you plan to add code to the functions.php. You can download one from here: https://www.kadencewp.com/child-themes/
Best,
HannahIn forum: Kadence ThemeIn reply to: Preferred Kadence way to add styles
In forum: Kadence ThemeOctober 13, 2020 at 10:03 am #258661Hello,
I use some custom classes in my style.css, which should also be active in the block editor.
I wonder what is the preferred Kadence-way to add the same styles to the block editor?Just add
add_editor_style( 'assets/css/style-editor.css' );
to my functions.php, assuming that style-editor.css is in assets/css/ in my child theme?thanks
JochenIn forum: Kadence ThemeIn reply to: author.php
October 12, 2020 at 5:40 pm #258606Hey,
Which means I can’t just create new pages in a Virtue child theme?
I just want to clarify I didn’t say that I said I don’t suggest you do this because there are better ways, but you certainly can just edit the child theme.
When I glanced at the tutorial you sent there was nothing in it about authors’ custom fields. That was custom field all added to one page not queried from all the authors. If that is what you want and the tutorial explained that for you great, I was just trying to help with some easier options. Many map plugins allow you to set up multiple markers but if you’ve looked at them all and they can’t do what you want custom would be the best option since you want something really custom.
Ben
In forum: Kadence ThemeIn reply to: author.php
In forum: Kadence ThemeIn reply to: author.php
October 12, 2020 at 1:51 pm #258577Hey,
You can’t make a child of a child. I suggest using a plugin like this to add your custom PHP or css: https://wordpress.org/plugins/code-snippets/If you absolutely need a child theme then you would have to use the bold child theme and add your edits to it. It’s not ideal.
Virtue uses a wrapper function to wrap templates, if you want to make a custom template you would need to follow the example of what’s in page.php which you will see doesn’t have a header or footer call and uses some important div structure classes to make sure the content is setup with the sites max width.
In a case where you just want a map with multiple markers I would strongly suggest just using a plugin that allows you to do this vs going through this older tutorial which will require you manage a lot of development to create the map.
I hope that helps!
Ben
In forum: Kadence ThemeIn reply to: Kadence Child Theme
Hello Steve,
Thanks for reaching out to us.
Upon installing the Kadence child theme, it should keep the parent theme’s settings as long as the parent theme is installed. May we have a screenshot or recording of what you see on your Dashboard?
Let us know how we can assist you further.
Best Regards,
KarlaIn forum: Kadence ThemeTopic: Kadence Child Theme
Hi,
If the Kadence child theme is downloaded and installed – tall of the current theme settings dissapear. Not teh usual behaviour of a child theme. I have a site with a fair amount of customisation and took your documentations guide re a child theme should not be required stance. However – I have come to the point where I need to make additions to teh functions.php and hence the child theme. Should this not keep all of the parent settings?
Steve
In forum: Virtue ThemeIn reply to: Auto generated H1 in Woo storefront
In forum: Kadence BlocksIn reply to: spacer weirdness
October 10, 2020 at 11:23 am #258486I came across this thread searching for some answers and found it interesting. Twenty Twenty is the only theme I have found that has this weird spacer issue. If you import a page builder template it will add a lot of padding to any nested sections as well. The issue in your screenshot looks like something I have seen with the twentieg plugin, which has their dividers styled that way. I think you can just change the color/opacity if you intend to use it only for adding space.
My larger reason for commenting is to ask if this theme you are using is for the purposes of enabling you to post poetry and preserve the formatting. I really like the 2020 theme with that twentieg plugin but not as much as I like Kadence. I’m thrilled with Kadence and I have already built 6 sites with it in about 2 months. I can’t for the life of me figure out how to post poems and preserve indentations. The Lyrics block isn’t getting the job done. Is this child theme useful for the issue I am experiencing?
In forum: Virtue ThemeIn reply to: Creating a child theme
In forum: Kadence ThemeIn reply to: author.php
In forum: Kadence ThemeIn reply to: author.php
Hello,
I am currently using virtue bold as my theme. I know virtue bold is technically a child theme. We have added a lot of additional css changes on top of virtue bold to get it how we want it. We would prefer to store the css changes in a child theme rather than in the css text box that is in the theme settings. It is just more efficient to call the file instead of having all of the code be injected in the page. We have done this (made a child theme) before for pinnacle and has worked fine. My question is, is it possible to create a child theme from virtue bold? Would it work the same? And just call virtue bold in the functions.php instead of just virtue?
In forum: Virtue ThemeTopic: Creating a child theme
Hello,
I am currently using virtue bold as my theme. I know virtue bold is technically a child theme. We have added a lot of additional css changes on top of virtue bold to get it how we want it. We would prefer to store the css changes in a child theme rather than in the css text box that is in the theme settings. It is just more efficient to call the file instead of having all of the code be injected in the page. We have done this (made a child theme) before for pinnacle and has worked fine. My question is, is it possible to create a child theme from virtue bold? Would it work the same? And just call virtue bold in the functions.php instead of just virtue?
In forum: Ascend ThemeIn reply to: Tiles with entries – custom fields – how to show ?
October 7, 2020 at 10:53 am #258294Hey,
To do this you would have to use a child theme or code snippet plugin. There you would add a function that hooks in on “kadence_blocks_post_loop_header”For example:
add_action( 'kadence_blocks_post_loop_header', 'my_custom_field_add_to_blocks_grid' ); function my_custom_field_add_to_blocks_grid() { echo 'Custom Field Output Here'; }Ben
-
AuthorSearch Results


