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,461 through 1,480 (of 6,751 total)
  • Author
    Search Results
  • #221192

    Hi, to put Auto Adsense ads on the AMP part of a site, google wants me to place code into the header and footer of the AMP HTML

    Step 2: Copy and paste this script in the head tag of your AMP HTML

    Don’t see that in Theme Options… is there a way?

    Thx
    Dan

    #221179

    This will depend on what widget was added to your footer. Can you please post a link?

    Thanks,
    Kevin

    #221178

    Hi,

    Hannah gave me this code to use which is working beautifully. It was so center a widget in the footer.

    #containerfooter .virtue_social_widget.clearfix {
    display: inline-block;
    }
    #containerfooter .widget-first {
    text-align: center;
    }

    Now I have added another widget and it is also placing it centered, which is exactly what I want. However, the distance between the first and second widget is huge. Need to reduce a bit.

    Your suggestion? I have tried inserting a line for padding, but nothing I use seems to work.

    Thank you,
    Pam

    In forum: Virtue Theme

    In reply to: Google Map not showing

    #221122

    Hi Ben,

    It’s https://renewed-edge.com/about-us/contact/.
    FYI, I am not showing the map now because there would be a black space where it should be.
    Similarly the map does not show in the footer below the “contact us section”.
    Thank you

    #220992

    Not sure if the WPML’s problem or the Theme problem. But I tried to put a same switch in the footer. It works fine.

    #220927

    Hey,
    You can use this css:

    .blog_item.grid_item .post-grid-footer-meta {
        border: 0;
    }

    Ben

    #220926
    This reply has been marked as private.
    #220580

    Thanks you for your response! Adding an image to the portfolios does make them show up under “Recent Projects” in my footer but they do not show up as images under the portfolio page – still invisible links which can only be seen by highlighting them with the mouse cursor.

    #220406

    Ok, Here is what I saw:

    when I first went to your site it was broken, I thought you must have already updated the theme but then I found the older theme there. I looked at what was broken using the dev tools in chrome and looked through the console errors. I found several JS errors on your site. All related to javascript functions that couldn’t run when they were supposed to. I was curious and so I looked at your non-staging site and I also see those same errors: https://www.refreshskintherapy.com/ the page doesn’t load when I view it in chrome.

    That got me looking at your plugins and there I found two plugins that do the same things and should never both be used on one site. Autoptimize and Fast velocity minify. Looking in both plugins setting there were several settings that I would not advise using especially with all the things you have running on your pages (popup, cookie consent for some examples). I turned off the deferring JS settings, in particular, deferring JQuery and the settings to cache admin pages (that creates really crazy minify files because while logged in lots of plugins (jetpack) and even WordPress load scripts that should only be run on the admin).

    I deactivated Autoptimize since you don’t need it, it wasn’t helping anything because you have Fast velocity minify. So just working with the Fast velocity minify settings I got things to work consistently while leaving the parent theme active, I updated and cleared the minify and confirmed that with the cleared cached and minify settings correct things worked.

    I then reactivated your child theme and hit some new errors where again your home page wouldn’t load.

    I found this in your child theme functions file:

    // Defer Javascripts
    // Defer jQuery Parsing using the HTML5 defer property
    if (!(is_admin() )) {
        function defer_parsing_of_js ( $url ) {
            if ( FALSE === strpos( $url, '.js' ) ) return $url;
            if ( strpos( $url, 'jquery.js' ) ) return $url;
            // return "$url' defer ";
            return "$url' defer onload='";
        }
        add_filter( 'clean_url', 'defer_parsing_of_js', 11, 1 );
    }

    I remove it, I strongly suggest you leave it out. You already have a plugin to manage all this and manage deferring scripts adding a function only created confusion and conflicts.

    I also deactivated this plugin: Remove Query Strings From Static Resources (that also is a duplicate conflict creating thing because you already have a plugin that controls this Fast velocity minify).

    So now things are looking better but still won’t load because of errors and one was coming from a script added by this plugin: WooCommerce – Gift Cards

    I looked and it hasn’t been updated in 6 months, not great reviews either. I suggest looking for a replacement.

    For now though and since I doubted the author would get back to you quick I went in and manually fixed the plugin to work.

    Last but not least your child theme is overriding the base.php file. Which is not something I suggest, in terms of adding scripts into your site we have a tool for that in your theme options > header and footer scripts. The base you had created was out of date and the last part of why when you updated everything was breaking. I’ve fixed that and moved your scripts into the theme options. I suggest remoing base.php from your child theme.

    So now your site is updated, the theme is to 4.9.4 and I’ve massively cleaned up what is running and kept all the speed improvements you were going for.

    You still have two errors on your site, they don’t prevent the page from loading but I don’t like to ignore errors.

    Both errors have to do with your script you are adding in the header to load this file: https://az416426.vo.msecnd.net/scripts/JavaScript/JavaScriptSDK/ajax/ajax.ts In that file there is an error. It’s possible this is because of your staging site but I don’t know why you are adding that or what it’s doing for you so I figured I would just alert you to this. To see it simply right click, click inspect and look at the console tab. You will see an ajax error and the source is the link I posted which is coming from the scripts you are adding (previously through the child theme now through the theme options > header scripts).

    The next is this error:1 POST https://dc.services.visualstudio.com/v2/track 400 (Invalid instrumentation key)

    Again I don’t know why you are adding so I can’t guess as to why the errors and how to fix but you should know that there are errors in the console.

    I really hope this is clear and is helpful. I understand it’s a lot if you wish for me to update your live site with all these changes I would be happy to.

    Ben

    #220330

    Looks like you’re adding CSS to your mailchimp form html that’s overriding the color of your body text. You should be able to remove this CSS in the settings for the form in footer column 1.

    -Kevin

    #220251

    Try this instead:

    .footercol2 .kadence_gallery_widget .g_item {
        float: none;
        margin-right: auto;
        margin-left: auto;
    }

    -Kevin

    #220243

    Hello,

    I’m not sure exactly why the image is not centering on all displays, but here is some CSS that will sort it out for you:

    .footercol2 div#kad-wp-gallery85 .g_item {
        float: none;
        margin-right: auto;
        margin-left: auto;
    }

    Add to Theme Options> custom CSS, and let me know how it works for you!

    -Kevin

    #220241
    This reply has been marked as private.
    #220137

    Hey Erik,
    Try adding this to your custom css box in Theme Options > Custom CSS:

    @media (max-width: 767px) {
    .footernav ul {
        text-align: center;
    }
    .footernav ul li {
        float: none;
        display: inline-block;
    }
    }

    Hope it helps!

    Hannah

    #220102

    How do I sent center the footer nav menu in mobile view?
    Site

    #220083

    Yeah, you just need to use this free extension: https://wordpress.org/plugins/header-footer-elementor/

    Ben

    #220078

    Ben,

    As always thanks for the quick response.

    I think I will be downloading Elementor and giving it a try on my next project. I have heard a lot of good things about it. If I use Elementor will it work out of the box with Ascend and allow me to customize the header and footer areas?

    Thanks

    Jeremy

    #220070

    Hey,
    Yes you can use beaver builder if you prefer it.

    Yes you can override the header and footer, likly you will just need to unhook the theme header and footer with a child theme function unless beaver is loading it’s on templates to remove the theme header and footer.

    The function would look like this:

    add_action( 'template_redirect', 'custom_ascend_remove_header', 10 );
    add_action( 'template_redirect', 'custom_ascend_remove_footer', 10 );
    /**
     * Disable header from the theme.
     */
    function custom_ascend_remove_header() {
       remove_action( 'ascend_header', 'ascend_header_markup' );
    }
    /**
     * Disable footer from the theme.
     */
    function custom_ascend_remove_footer() {
       remove_action( 'ascend_footer', 'ascend_footer_markup' );
    }

    I personally suggest Elementor or Brizy over Beaver builder but that isn’t so much to say that beaver is bad, more about preference.

    Ben

    #220028

    Hey Ben,

    Is there a way to integrate Beaver Builder with Ascend so we can use beaver builder in the header and footer spaces also?

    Do you know if Ascend will work with Beaver Themer?

    Or do you have other suggestions?

    Thanks

    Jeremy

    In forum: Virtue Theme
    #219949

    Hi Ben,

    Is there any way to turn off the footer widgets and recent blog posts for the events pages but leave them on for the rest of the site?

    Thank you!
    Avery

Viewing 20 results - 1,461 through 1,480 (of 6,751 total)