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'

Home / Forums / Search / Search Results for 'footer'

Viewing 20 results - 1,401 through 1,420 (of 6,751 total)
  • Author
    Search Results
  • #225088

    Thanks Kevin,
    The site is DamnRoofer.com ,

    It started when I wanted a blank Home page with only content. No knowing any better, I just used the template as “Landing page – no header”. Everything worked fine. I decided to change it back to a normal Home with header/footer. So, I just modified the page to use the template “FullWidth”. It did not work. Now, even if I make a simple page that looks correct as a “NOT static home”, when I change it to be the static Home, the headers disappear. Almost as though I have somehow corrupted the standard settings for a page when set to static Home.

    #225081

    Hello,

    If you’re hiding the header and footer on your home page, you’re likely using CSS.

    Can you post a link to your site so I can take a look?

    -Kevin

    #225038

    I had used a “Landing Page – No Header” template for my Static home page. It worked great. But now I want a standard FullWidth home page. Once I set any page to be the static Home page, it reverts to No Header / Footer.
    Using the latest Virtue Premium / WP, as of today.

    #224590

    Hello,

    The reason for this is that whenever a page is assigned as home, the home page template is assigned to it. You can hide the header and footer with this CSS:

    .home div#pageheader, .home #kad-header-menu-sticky-wrapper, .home footer#containerfooter {
        display: none;
    }

    -Kevin

    #224582

    I’m chasing my tail here. My goal is to simply create a landing page that points to a menu item in my header menu via a 1 page kadence slider.

    Here is what I have done.

    1. Created website

    2. Created a kadence slider with 1 image, full width, full height, single slide on, slide background size cover, added text and a button slider link – – notice introduction menu item instead of just gutenberg.

    3. Created a landing page – – template landing page no header, page content width full width.

    4. Inserted kadence slider shortcode into Home page.

    5. Dashboard – Settings – Reading – homepage home.

    6. Dashboard – Pages – Home page view does not look like a landing page – both header and footer appear.

    I’ll follow-up with my sign in information in a private entry if you need it.

    Thanks for your help.

    Jerry

    #224533

    Hey,
    You would have to use javascript for this. In theme options > header and footer scripts, you would have to add this to the header scripts:

    <script type="text/javascript">
    jQuery(document).ready(function ($) {
    $('.kadence_social_widget .googleplus_link').attr('data-original-title', 'Email Us');
    $('.kadence_social_widget .googleplus_link .kt-social-title').html('Email Us');
    });
    </script>

    Ben

    #224488

    Thanks Kevin, yes I managed to get it within the content and within a custom tab however it always seemed to be a little lost. I just thought having it as the first item of the gallery would be great but sometimes what we want just isn’t possible!

    If I was to add it to a custom tab again could I create a button that linked straight to it? Ben gave me some js code to add to the footer last time for the prices button.

    Securri won’t let me paste script here but here is the link to the forum item: https://www.kadencewp.com/support-forums/topic/link-to-custom-product-tab/

    I’ve tried using this again and updating the names of the tabs etc to match the new tab however I can’t get it to work. It looks like the tab itself won’t open using the link like the prices link does. Can you help?

    Many Thanks Kevin,
    Anthony

    In forum: Virtue Theme
    #224014

    I placed the code in the Footer output within my theme options but it doesnt seem to work?

    I also have this code in there allready (for scrolling), I don’t know if that’s the problem.

    In forum: Virtue Theme
    #224013

    Hey,
    You can add this javascript into your footer scripts in your theme options to make it so the menu is collapsed on click:

    <script type="text/javascript">
    jQuery(document).ready(function ($) {
    $('.kad-mobile-nav .kad-nav-inner li a').click(function(){
        $('.kad-nav-collapse').collapse('hide');
    });
    });
    </script>

    Ben

    #223881

    It’s possible your server is preveting form from being added to the database for security reasons.

    You can just add this function into your child theme functions.php file:

    add_action('wp_footer', 'add_custom_paypal_form', 80 );
    function add_custom_paypal_form() {
    	<?php 
    <div id="ppfootersif">
    <form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_top">
    <input type="hidden" name="cmd" value="_s-xclick">
    <input type="hidden" name="hosted_button_id" value="7CT8LVTPSA2N4">
    <input type="image" src="https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
    <img alt="" border="0" src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" width="1" height="1">
    </form>
    </div>
    ?>
    }

    Ben

    #223750
    This reply has been marked as private.
    In forum: Virtue Theme

    In reply to: Footer

    #223686

    Hey Glenn,
    Try adding this to your custom css box in Theme Options > Advanced Settings:

    @media (min-width: 992px) {
    html, body {
    height: 100%;
    }
    html body.wide #wrapper.container {
    min-height: 100%;
    position: relative;
    padding-bottom: 300px !important;
    }
    #containerfooter {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    }
    }

    Does that work for you?

    Hannah

    In forum: Virtue Theme

    Topic: Footer

    #223682

    Hi there,

    When I am logged in to my Dokan Multivendor Dashboard the Virtue footer moves up and there is a large white space below it.

    You will need to login, I will send the login details in the next message.

    Also on the login page, it moves but only slightly:

    In case it is related, I remember a few months back we added some css to help with the Dokan vendor shop page/footer: POST #186720

    #223625
    This reply has been marked as private.
    #223339

    Hi Kevin & Team,

    Thank you for correcting me – I appreciate knowing the correct concept!

    ITEM #1
    After reading the tutorial from the link you shared, I am happy to report I was using the correct methods. I’ve managed to get mine “looking” close enough to how I want the blog element. The images however I couldn’t figure out so I placed a static image instead that can act as a place-holder for the category featured. Is there a way to display the blog post featured image as seen on the home page of Ascend #2? You can see what I managed to get to here, I’ll leave it be for now so you can see it: http://www.kellyheckphotography.com.php72-4.lan3-1.websitetestlink.com/

    ITEM #2
    I haven’t tried modifying the fullwidth row column to have those beautiful framed elements yet, but any direction for that would be wonderful too. Is that just a “top centered” background image for the 3 little white carrots, and the same idea for the bottom that blends with the color of the footer? I’d like to know how to do that if sharing is within reason for your premium support services.

    Thank you!

    #223325

    I’m really fond of the last two rows before the footer of Ascend’s child theme #2 ( but wanting to work namely with child theme #5 ( Is there any way to carry over the similar formatting of Child Theme #2? To be detailed, the two sections I am admiring and struggling to replicate are the 3 column layout (which includes a category of blog posts, a second category of blog posts, and about blurb). And that call to action below with the shaping is really nice too.

    #223269

    Hello,

    In appearance> Widgets, make sure that the blog grid widget in footer column 3 is set to show more than one post, and make sure that you’re not limiting the posts based on category.

    Let me know if that helps.

    -Kevin

    #223265


    Footer 3 section – there are several blog posts but only one appears in the footer?
    How do I fix this?

    #223122

    One option would be to add it to your footer, and then hide it with CSS from all other pages except the testimonials. Would that work for you?

    If so, add the widget to your footer and I can provide the CSS.

    -Kevin

    #223107
    This reply has been marked as private.
Viewing 20 results - 1,401 through 1,420 (of 6,751 total)