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 'page '

Home / Forums / Search / Search Results for 'page '

Viewing 20 results - 4,901 through 4,920 (of 53,646 total)
  • Author
    Search Results
  • #265145

    No, I did not get the answer I was seeking via email.
    Still need clarification on this thread.
    I am trying to simply add a button in line with other fields, and trying to stack them on top of each other on another page.
    There is no demo or guide online which clearly describes how to do this, and I would suggest staff at kadence do a blog post about this, because it is like the number one thing every single person on this forum will need. Setting up a form.

    #265144

    Is there a way to change the size of the featured image and gallery on one or all product pages? Most of the sites I run have service-based products so having such a large image detracts a bit.

    I know I can do it with something like Elementor but I’d like to avoid having to go that route if possible. I’d just like to either remove these images or resize them to a much smaller square.

    #265141

    Hey,

    Analytics is throwing a “Mobile usability issue” error.

    Usually, that means your site is taking too long to load on mobile. When Google tries to load it and it takes longer then 5-10 seconds it will stop waiting for resources and just assess your site at that point. If the site it taking a while to load then it could be missing things like css and so the Mobile usability would show as an issue because the css that would style it for mobile is not loaded.

    It’s best to work on optimizing your site and also give google some time to rescan. Some times this can show once on one page and it’s just where the google bot hit something uncached and once it tries again it will show fixed.

    The theme (or any of our plugins) doesn’t load “InvisibleReCaptcha” so that must be something you’ve added through another plguin. I would check on that and make sure it’s configured correctly. The error seems to say it’s not configured correctly.

    Preloading icon fonts would be something a plugin of yours is doing, not something Theme or any of our plugins do. This again should be something you check through in the appropriate plugin settings. Right now it’s showing that your preload link includes two links so whatever is generating it is broken.

    Ben

    #265124

    Hi, Chito,

    Thank you for the response.

    1) Got it. Thank you.
    2) See screenshot in separate message. The Tablet and Mobile layout still shows the demo image, although I have changed. 😉
    3) Okay, another question. Is there a clever way to keep the featured image so that it appears in “Post Carousel” but does not appears on the Post page itself?

    Thank you,
    Pamela

    In forum: Kadence Theme
    #265113

    Hi,

    You can use the below code.

    For single posts only:
    .single-post aside#secondary {
    width: 100%;
    }

    For single posts and pages:
    aside#secondary {
    width: 100%;
    }

    Regards,
    Chito

    #265109

    Hi Tom,

    To remove the sidebar:
    .page-id-0 aside#secondary {
    display: none;
    }

    To remove the space that’s supposed to be for the sidebar and set the main content to full width.
    .page-id-0.has-sidebar:not(.has-left-sidebar) .content-container {
    grid-template-columns: 1fr;
    }

    Let me know how it goes.

    Regards,
    Chito

    #265106
    This reply has been marked as private.
    #265103

    Hello Dave,

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

    I cannot seem to replicate this behavior on the edit page – https://share.getcloudapp.com/xQubbym5. Have you checked if there are any errors in the browser’s console log and deactivate other plugins to see if it is a plugin conflict issue?

    Kind Regards,
    Karla

    #265101

    Hello Jean,

    Apologies for the delay in getting back to you!

    I went to your page again to check if there are any CSS conflicts happening but I cannot see an Advanced Gallery block anymore. Please could you send us a link again where we can see the issue?

    Kind Regards,
    Karla

    #265097

    Hello Joost,

    To only apply the custom CSS code in the single posts pages and desktop-tablet views, use this:

        @media screen and (min-width: 768px) {
            .single-post article.post .post-thumbnail {
             width: 80%;
             margin: 0 auto;
             border-radius: 10px;
            }
        }

    Hope this helps.

    Regards,
    Karla

    #265096

    Hi Tom,

    Thank you for reaching out to us.

    It’s not possible within the Kadence theme customizer but is possible using custom CSS.

    Can you post the links to your pages?

    Regards,
    Chito

    #265095

    Hi Pamela,

    Thank you for reaching out to us!

    1) Can I use the feature image on the post page in the header only? I seemed to have been able to do that at one point…by accident. How I can’t figure out how to replicate.
    You can choose what to display on a single post on Customizer > Blog Posts > Single Post Layout – https://share.getcloudapp.com/6qu88g47.

    Is that what you meant?

    2) How do I change the mobile header image? It is still showing the demo image.
    Can you send a screenshot of what you are referring to?

    3) Does the featured image appear on the blog post page by default?
    Yes. https://share.getcloudapp.com/mXuppLld

    Let me know if I misunderstood your questions.

    Regards,
    Chito

    #265093

    Hi Arek,

    Thank you for reaching out to us!

    The Design Course starter template requires the LearnDash plugin installed and activated on your site. https://share.getcloudapp.com/kpuKKqop

    Kindly try to install and activate the said plugin and reimport the Home page.

    Let us know how it goes.

    Regards,
    Chito

    #265086

    Looks like you were calling the trigger event too early. 500ms into load and your page is not fully loaded so the trigger happened (freezing the scroll) but the modal wasn’t read to be revealed leaving you in a stuck place. By moving the time later it’s more likely to trigger correctly (or on reload where all your large images are saved in the browser cache) but this points to a serious issue with popup maker in that it’s not confirming the modal is ready before triggering a freeze scroll event.

    Ben

    #265083

    Hello,

    I can not import Home Page from Design Course Template.
    Path: Starter Templates (Gutenberg) > Design Course > Single Page > Home page.
    Please help.

    Kind regards,
    Arek

    #265074
    This reply has been marked as private.
    In forum: Kadence Theme

    In reply to: Left sidebar on tablet

    #265069

    Hello Asmus,

    Thank you for reaching out to us.

    Please could you provide a page URL to us so we can better assist you with custom CSS? Also, kindly try adding this in Customizer > Additional CSS:

    @media screen and (max-width: 1024px) and (min-width: 720px) {
        .has-left-sidebar .content-container {
            display: grid;
            grid-template-columns: 2fr 5fr;
            grid-gap: var(--global-xl-spacing);
            justify-content: center;
        }
        .has-left-sidebar #secondary {
            grid-column: 1;
            grid-row: 1;
        }
    }

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

    Regards,
    Karla

    #265056

    Hi, Hannah and All.

    I’m using the new Kadence theme for the first time. Nice addition to the catalog of themes. I am having a bit of confusing trying to figure out the featured images and how they are placed.

    1) Can I use the feature image on the post page in the header only? I seemed to have been able to do that at one point…by accident. How I can’t figure out how to replicate. <laughing>
    2) How do I change the mobile header image? It is still showing the demo image.
    3) Does the featured image appear on the blog post page by default?

    Thank you,
    Pamela

    #265053
    This reply has been marked as private.
Viewing 20 results - 4,901 through 4,920 (of 53,646 total)