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 - 5,241 through 5,260 (of 53,646 total)
  • Author
    Search Results
  • In forum: Pinnacle Theme

    In reply to: Schema warnings

    #263434

    Hi,
    I’ve put this on my list to change. I believe this is only showing because the schema tool is reading the page incorrectly.

    I should have an update out in the next day or so.

    Ben

    #263428

    I set the site to wide site layout, but for some reason, the page contents are all the way to the screen edge, not contained.

    Woocommerce pages don’t seem to be affected.

    Am I missing something?

    In forum: Kadence Blocks

    In reply to: Two small bugs

    #263422

    Hey,
    Loading an Iframe inside of tab or accordion is not advisable. The way browser load iframes require that they paint them in the page, when you hide from load it causes the browser to try and rerender when it’s opened and this almost never works.

    There are css hacks to trick the browser by rendering with pixel space but hiding the pixel space in an overflow hidden. This is generally a bad idea but would get you the most consistent results if you are forced to do this.

    .kt-tabs-wrap .wp-block-kadence-tab {
        display: block;
        visibility: hidden;
        height: 0;
        padding: 0;
        border-width: 0 !important;
    }
    .kt-tabs-wrap.kt-active-tab-1>.kt-tabs-content-wrap>.kt-inner-tab-1,
    .kt-tabs-wrap.kt-active-tab-2>.kt-tabs-content-wrap>.kt-inner-tab-2,
    .kt-tabs-wrap.kt-active-tab-3>.kt-tabs-content-wrap>.kt-inner-tab-3,
    .kt-tabs-wrap.kt-active-tab-4>.kt-tabs-content-wrap>.kt-inner-tab-4,
    .kt-tabs-wrap.kt-active-tab-5>.kt-tabs-content-wrap>.kt-inner-tab-5,
    .kt-tabs-wrap.kt-active-tab-8>.kt-tabs-content-wrap>.kt-inner-tab-6 {
        visibility: visible;
        height: auto;
        padding:20px;
        border-width: 3px 0px 0px 0px !important;
    }

    I don’t foresee adding options to change the opacity of some or a single gallery item. You can always select specific gallery items with css, for example, if you want to select the 4th item you can use css like this:

    .kadence-blocks-gallery-item:nth-child(4) {
        opacity: 0.3;
    }

    Ben

    #263415

    Hi George,
    You can set the Blog pages show at most from Settings > Reading.
    Hope that helps!

    Best,
    Hannah

    #263410

    Hi there. I’m using two logos on my website, a colored version and an all white version. I have the primary set to white and then I’m using CSS to show the colored version on certain pages only. When I switch to a mobile width starting at 1024 it doesn’t read the CSS anymore and displays the all white version. Is there a way I can target those certain pages starting at that width to show a certain logo?

    Here’s how I’m changing the logo at fullwidth:

    .page-id-363 #logo img {
    content: url(/wp-content/uploads/2020/09/CBA-Logo-Colored-1.png);
    max-height: 150px;
    }

    But when I add this it doesn’t work. It still shows the white logo


    @media
    only screen
    and (min-device-width : 768px)
    and (max-device-width : 1024px)
    and (orientation : landscape) {

    .page-id-363 #logo img {
    content: url(/wp-content/uploads/2020/09/CBA-Logo-Colored-1.png);
    max-height: 150px;
    }
    }

    • This topic was modified 5 years, 2 months ago by Stephen.
    #263388

    Hey Sarah,
    Do you have the transparent header enabled? Can you post a link?
    Gutenberg is the new default WordPress editor. When creating a new page it should open in Gutenberg automatically. If this is not the case for you may have the classic editor plugin installed. Deactivating that should fix. It looks like in your screenshot you’re using page builder by siteorigin? There isn’t a way to switch between editors. You will need to re-create the page using the Gutenberg editor.

    Best,
    Hannah

    #263386

    Hi Ben,

    big thank you for new cart styling, so I could remove my custom.css :). Working perfect.

    I want to kindly ask if you could add this fetures in the next releases. That would make my happiness complete ;):

    a) Can you please add an option for Header Social Element (Desktop and Mobile)? A switch to open the link in a new tab. Yes or no. At the moment all icons open the link in a new tab. For example when I add a mail icon and want to point it to my contact page it would be nice to not have “target _Blank” :).
    https://ibb.co/GCB0kwz

    Have a great day,
    Tobias

    In forum: Ascend Theme
    #263372

    Hello Hannah!

    Thanks. Your solution with page id works fine. 🙂

    Best regards,

    R.

    #263368

    Hi Ben and Hannah and team

    I am using the below code to add a class to a post if it is over 7 days old (so that I can show a “new” badge if the post is new). This works on single post fine, but I can’t get it to work on the archive (categories) pages – it seems these don’t have the same header classes – the category pages are all displaying posts listed with the “blog_grid” siteorigin widget… Any clues how I can get the below to show in these blog grid posts?

    ` function is_new_post($class) {
    global $post;

    $id = get_the_ID();
    $date = get_the_date( $format, $id );

    if( strtotime( $date ) < strtotime( “-7 days” ) ) { // if post is 7 days old or less
    $class[] = ‘-NEW’;
    } else {
    $class[] = ‘-OLD’;
    }

    return $class;

    }
    add_filter(‘post_class’, ‘is_new_post’);
    `

    I think what is happening is that the single posts have an <article> tag that the above is prepending the new class to, but with the blog grid, there is no <article> tag, only “class=”entry-title”

    • This topic was modified 5 years, 2 months ago by Solace.
    • This topic was modified 5 years, 2 months ago by Solace.
    • This topic was modified 5 years, 2 months ago by Solace.
    #263366

    Hi Hannah,

    I have both: Kadence Blocks – PRO Extension & Kadence Blocks – Gutenberg Blocks for Page Builder Features.

    As I mentioned, I normally don’t use the blocks, but used them to I could make the images on the home page clickable.

    When I switched off the plugin Classic Editor, it looked like something had to be updated.

    For some reason it’s working now. Strange.

    Have a great day.
    Kathy

    #263365

    1. I d like the margin on my blog achrive page so there a bit more grey at the left , so I actually have it also look like column 2 (see attachment)

    2. I like more padding (the grey) on the left of the frame of my post (the white background) in a single blogpost. H

    How do I do that?

    #263360

    Hey,
    You wrote: “My point is this: the margin/padding settings in the editor don’t VISUALLY match the margin/padding when the page is saved.”

    That is because Gutenberg is not an exact visual representation of the front end of your website. It never has been because it’s not a front end editor. It was designed specially not to be a front end editor just designed to be close. However the css in the backend is totally different and there is extra spacing added between every block in the editor.

    There has been tons of discussion and arguments around this since it’s original launch.

    The good news is that the Gutenberg team is slowing moving towards getting the editor closer to the front end experience. Later this year they will be moving the editor into an iframe which will allow for styles to be added exactly like the front end. There are still some issues with this and I don’t expect a pixel perfect representation of a site to be achievable inside the Gutenberg editor there is for the first time in it’s development more effort to get us there.

    I’m with you in that this was a huge limitation from the start and I’m excited that we are moving in the right direction.

    Ben

    #263358

    Hi there,

    I am using the Kadence Theme.
    When displaying a category, Kadence shows 4 categories per page. How can I change the amount of categories per page?

    Thanks and best regards,
    George

    In forum: Ascend Theme
    #263357

    You can remove/edit “.home” to adjust the page it affects. Which page are you wanting? You would just need to replace “.home” with the page id (i.e. “.page-id-120”).

    Best,
    Hannah

    #263354

    Thanks you Hannah,
    I’ve reviewed that plugin; seems it doesn’t allow identification of zones as a condition 🙁
    Do you have a good board to post custom code requests as I’m thinking it more like a combo of the 2 bits of code here:
    https://wordpress.stackexchange.com/questions/332811/woocommerce-get-selected-shipping-zone-id-for-the-current-user
    https://writenowdesign.com/blog/wordpress/woocommerce/add-message-top-bottom-woocommerce-checkout-page/#add_php

    Any idea on where I can post for help using these 2 methods?

    P.S. Thanks for your guidance; I’m amazed at the breadth of your knowledge and speed of replying…no smoke, just praise 🙂

    #263337

    Hey,
    We don’t have a starter template that is designed without Kadence Blocks. Given that it’s our plugin we don’t plan on creating one 🙂

    Just a note Kadence Blocks only loads when it’s used, if you have it installed but don’t have any blocks active on a page then no resources are loaded on that page.

    Ben

    In forum: Kadence Theme

    In reply to: Infinity Scroll

    #263330

    Hey Gilbert Cattoire

    Your blog page 2 leads to a 404 page: https://www.iledebrehat.fr/actualites/page/2/

    I most often see this happen when someone customizes the permalink structure in a way that won’t work or when someone makes a child page of your latest posts page.

    Can you confirm your permalinks are normal and that you have not created a child page of the blog page?

    Ben

    In forum: Kadence Theme

    In reply to: Infinity Scroll

    #263329
    This reply has been marked as private.
    #263323

    All. I think I’m losing my mind. I’m trying to login to my account to get my license key from an iPad. Nowhere on this website can you get to your account page to see license codes or available downloads. Or am I missing something.

    #263321
    This reply has been marked as private.
Viewing 20 results - 5,241 through 5,260 (of 53,646 total)