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 'footer'
-
AuthorSearch Results
-
In forum: Kadence Theme
In reply to: Need More HTML Choices in Header and Footer
Thank you but I am not following you. Let me restrict this to footer.
Currently I am using Widgets 1, 2, 3, Footer Navigation and Copyright. I have Available Items of Social, Widgets 4, 5, 6 and Dark Mode Toggle.
I want to have the options of HTML and HTML2. How do I make them show up in Available Items?
Header/Footer Scripts is toggled on, and I assume I need to put something in there, but I don’t know what to enter.
Thank you.
In forum: Kadence ThemeIn reply to: Need More HTML Choices in Header and Footer
In forum: Kadence ThemeHow to include a css file to a page?
I want to include css file the wordpress way i get an error with kadence namespace and print styles uncommented, i can include everything in oceanwp
here is my code, what i`m doing wrong? Thanks/*
Template Name: Sample page
*/
/**
* The main single item template file.
*
* @package kadence
*/namespace Kadence;
if ( ! defined( 'ABSPATH' ) ) {
exit;
}function theme_cms_public_template_assets() {
wp_enqueue_style('mm.public.template.style', get_stylesheet_directory_uri() . '/assets/css/style-2022-04-07-4.min.css', [], 1.0, 'all');
}add_action('wp_enqueue_scripts', 'theme_cms_public_template_assets', 1100);
//
get_header();
kadence()->print_styles( 'kadence-content' );
/**
* Hook for everything, makes for better elementor theming support.
*/
do_action( 'kadence_single' );echo "some content";
get_footer();
if kadence namespace and print styles commented out it works :
/*
Template Name: Sample page
*/
/**
* The main single item template file.
*
* @package kadence
*/// namespace Kadence;
if ( ! defined( 'ABSPATH' ) ) {
exit;
}function theme_cms_public_template_assets() {
wp_enqueue_style('mm.public.template.style', get_stylesheet_directory_uri() . '/assets/css/style-2022-04-07-4.min.css', [], 1.0, 'all');
}add_action('wp_enqueue_scripts', 'theme_cms_public_template_assets', 1100);
//
get_header();
// kadence()->print_styles( 'kadence-content' );
/**
* Hook for everything, makes for better elementor theming support.
*/
do_action( 'kadence_single' );echo "some content";
get_footer();
In forum: Kadence ThemeHow to include a css file to a page?
I want to include css file the wordpress way i get an error with kadence namespace and print styles uncommented, i can include everything in oceanwp
here is my code, what i`m doing wrong? Thanks/* Template Name: Sample page */ /** * The main single item template file. * * @package kadence */ namespace Kadence; if ( ! defined( 'ABSPATH' ) ) { exit; } function theme_cms_public_template_assets() { wp_enqueue_style('mm.public.template.style', get_stylesheet_directory_uri() . '/assets/css/style-2022-04-07-4.min.css', [], 1.0, 'all'); } add_action('wp_enqueue_scripts', 'theme_cms_public_template_assets', 1100); // get_header(); kadence()->print_styles( 'kadence-content' ); /** * Hook for everything, makes for better elementor theming support. */ do_action( 'kadence_single' ); echo "some content"; get_footer();if kadence namespace and print styles commented out it works :
/* Template Name: Sample page */ /** * The main single item template file. * * @package kadence */ // namespace Kadence; if ( ! defined( 'ABSPATH' ) ) { exit; } function theme_cms_public_template_assets() { wp_enqueue_style('mm.public.template.style', get_stylesheet_directory_uri() . '/assets/css/style-2022-04-07-4.min.css', [], 1.0, 'all'); } add_action('wp_enqueue_scripts', 'theme_cms_public_template_assets', 1100); // get_header(); // kadence()->print_styles( 'kadence-content' ); /** * Hook for everything, makes for better elementor theming support. */ do_action( 'kadence_single' ); echo "some content"; get_footer();-
This reply was modified 4 years ago by
paulius.k.
In forum: Kadence ThemeIn reply to: Featured image is not centered
In forum: Kadence ThemeMarch 30, 2022 at 2:48 am #271257Thanks for your response Kevin!
I fully understand the limitations of these tools. For the record, as I user I’m not seeing any changes in speed whatsoever.
Having said that, PageSpeed (what I used) is from Google and effectively with Kadence Conversions I’m not passing Core Web Vitals. It’s just not something I’m willing to risk in the competitive space I’m in where all other sites have 90+ PageSpeed scores and are passing web vitals.
I’m also checking other sites where their exit intent popups don’t seem to impact speed testing tools so I know it should be possible.
Would there be a way for me to add the Conversions code in the footer or something similar in order to not impact Google PageSpeed?
In forum: Kadence ThemeIn reply to: Full site editing plan
March 24, 2022 at 1:56 pm #271187Hey,
We are still easily a year away from full site editing approaching a “compelling solution”. There is still so much to be done in core and with broader plugin support before it would be an option that would actually work for real use case sites. Unless you are planning to build only very simple blogs I would punt worrying about it for a while.Also, you can already fully edit your site with Kadence and we are always creating more tools to make that better and easier. If there is something you are wanting to do I bet we have a better way to do it.
FSE makes your site extremely static in nature and so if you are doing anything dynamic you simply can’t move to FSE.
Yes, we will provide tools to integrate some of the full site editing options into how you build and even in the future provide an option to only use full site editing. However there is no benefit to it at this time, compare building a header in the customizer with building one in Gutenberg and you can start to see. By the way, if you want to build your header and footer in Gutenberg you already can with Kadence I just don’t recommend it.
There is nothing that is “future proof”. The web changes and WordPress changes, however, I don’t see any situation in the foreseeable future that would cause anything you build now to not work.
If I had to guess I say the vast majority of sites that are business, ecommmerce, etc will still not be using cores version of full site editing in a year instead there will be a hybrid led by brands like Kadence, Astra, GeneratePress that take some of the good things in full site editing but build it in a hybrid way that is backward compatible with their customer bases.
Ben
In forum: Kadence ThemeTopic: Divider between menu items
Good morning guys,
I managed to make dividers between my menu items.
The problem is that the dividers also shows up in the menu in my footer, and in the mobile menu. I only want it for the main menu in the main row.
Would you be able to help me fix this?
The code I’m using:
.menu-item:not(:last-child) a {
border-right: 1px solid #CCC1B7;
padding:15px 3px 15px 3px;
}
.menu-item:last-child a {
padding:15px 3px 15px 3px;
}Thanks in advance!
Best regards,
AntonIn forum: Virtue ThemeRESOLVED: *Login to see link
I see you’ve helped several people do this with custom CSS but require a link.
See private massage…My goal is to create a landing page without header or footer. If there’s a better way, I’m all ears.
Thank you.
In forum: Kadence ThemeIn reply to: Logo & Erstellung
Hallo Hannah,
leider hat mir Deine Antwort nicht ansatzweise weitergeholfen. Diese Art von Support, die auf allgemeine Link leitet, in denen ich sämtliche Videos durchschauen soll, um für mein konkret benanntes Problem die Lösung zu finden, finde ich etwas dürftig. Ist bitte als konstruktive Kritik zu verstehen und für Eure freie Verwendung zur Umsetzung.
Ich habe ja nun in Eigenregie herausgefunden, wie ich im Customizer Modus mein Logo, Navigation, Social etc. sichtbar bekomme. Über den Conditional Header der Proversion. Das ist sehr schön, nur, in der Vorschau bekomme ich eine leere Seite angezeigt nur mit der Footerzeile. Lösung? Keine Ahnung.
Nun habe ich testhalber mal das Kadence Pro Plugin deaktiviert, da ich vermutete, dass dann wie vorher auch im Customizer Modus wieder nichts zu sehen ist. Tatsächlich, es ist leer. Und nun? Lösung?
Bild 1: Customizer Modus mit Kadence Pro
Bild 2: Ansicht in der Vorschau mit Kadence Pro
Bild 3: Customizer Modus in Kadence Freeversion.Wie soll ich so bitte eine Webseite erstellt bekommen?
VG
DoroIn forum: Kadence ThemeTopic: Removing Google Analytics
Hi there
I want to remove google analytics from my website and try out a more GDPR compliant tool (microanalytics). I can’t see how to remove the google analytics code. The GA field mentioned as being in theme options in your tutorial doesn’t seem to be there any more and there is nothing in the header and footer script blocks for me to delete. I’m assuming that once I’ve found the analytics code to delete I add the microanalytics code in the header section of ‘customise scripts’?Thank you
Joanne-
This topic was modified 4 years, 2 months ago by
Joanne.
In forum: Kadence ThemeIn reply to: Activate mega menu on click vs on mouse hover
Here’s the workaround for anyone looking to achieve this:
https://jsfiddle.net/20h4cnyw/Tried to put the code here but getting blocked by Cloudfare so you can access the JS and CSS of jsfiddle.
This code can be added by using the Header/Footer scripts addon and put this in the Footer. https://share.getcloudapp.com/geud57mDThanks Bonn!
In forum: Kadence ThemeIn reply to: Menu is expanded all times
In forum: Pinnacle ThemeIn reply to: Menu is expanded all times
Hi Andreas,
Thanks for reaching out! The submenu items don’t work the same in the footer and mobile as they do on desktop. I don’t believe there’s a way to shift this…sorry.
I’m already seeing your menu background the same as your footer background. Can you send a screenshot of what you mean?Kindly,
HannahIn forum: Kadence ThemeIn reply to: Menu is expanded all times
Hi,
Thanks for reaching out.
That is how the Footer menu is designed. There is no built-in setting to change this.
You will need to add javascript and CSS codes if you want it to work like an accordion.
To change the menu backgrounds in the footer, try adding this CSS:
#containerfooter .menu.menu li a { background: transparent; }Hope this helps.
Regards,
BonnIn forum: Pinnacle ThemeTopic: Menu is expanded all times
Hi,
I have the problem that my menu is expanded all the time in the footer as well as on mobile navigation. The desktop menu header works fine. Is this an error or setting? How can I change it that its not automatically expanded all the time.
Site: *Login to see link
Thx,
AndreasPS: Can I also change the color of the menu backgrounds to fit the same blue as my footer? What would be the css to target the class?
In forum: Kadence ThemeTopic: Menu is expanded all times
Hi,
I have the problem that my menu is expanded all the time in the footer as well as on mobile navigation. The desktop menu header works fine. Is this an error or setting? How can I change it that its not automatically expanded all the time.
Site: *Login to see link
Thx,
AndreasPS: Can I also change the color of the menu backgrounds to fit the same blue as my footer? What would be the css to target the class?
In forum: Kadence ThemeIn reply to: Best way to add Referrer Policy Meta Tag
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,
KarlaIn forum: Kadence ThemeIn reply to: Why my sticky sidebar has a scroll bar?
Hi Hannah,
I temporary disabled maintenance mode. I had to enable it to avoid search engines crawling duplicate contents, sorry.
I understand the problem is the overflowing content and I understand that’s the way the native Kadence’s sticky sidebar is supposed to work.
What I would like to know is if there is a way to make it works like commonly sticky sidebars work, showing ALL the content until the bottom then stop then pushed up when the main content’s footer is reached. I mean the way it works on my production site (and on many sites around).
I know it can be “fixed” installing a plugin, but the good of Kadence is there is no need to rely on many external plugins, especially if based on Jquery.
If it can be done in some way I will definitely migrate my site to Kadence and I will buy a Pro license (it’s a promise).
-
This reply was modified 4 years ago by
-
AuthorSearch Results





