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 - 6,521 through 6,540 (of 53,646 total)
  • Author
    Search Results
  • #257290

    Hey,
    If you are just wanting to change the menu for a few pages you could use a plugin like this: https://wordpress.org/plugins/conditional-menus/

    An element is an option but I think I would suggest replacing the whole header (Kadence Pro will have a header builder for conditional headers soon).

    Ben

    #257282

    Website:

    I have about 30 posts so far on the website.

    On the “Posts” page, only the last 20 display.

    Ideally, I would like a complete listing of all posts that continue to display as they scroll through the page.

    If that is not possible, I would like at least a “previous/next page” buttons at the bottom so that the reader can view the next 20 posts, etc.

    Can you please tell me where and how to do that?

    Currently, in Reading Settings, I have set Blog pages show at most 99 posts. Not sure if that attribute is involved in the number of posts displayed. The Posts page is “Posts”.

    Thanks in advance.

    #257271

    Hi Kadence Folks,

    I need your help with, most likely, custom css to ensure my footer is always at the bottom of the browser; I have two pages that are light on content, so there’s a varying range of white space below the gray footer on those pages. I did find another topic that covered this, but the code did strange things to my existing footer so that didn’t work.

    The pages are Home and Resources.

    Really appreciate your insight and recommendations!
    Sara

    #257260

    Hey,
    The filter only filters what is on the page, so pagination wouldn’t work alongside of the filter because you can’t filter posts that are on page 2 it’s not how the filter is designed to work. It’s not a replacement for a submenu.

    I suggest if you are filtering that you increase your posts to match the amount you want to filter. Of if you have a lot of posts that you instead create a submenu for users to click to a specific category.

    I hope that helps,

    Ben

    #257251

    Hello,

    You can use classic editor blocks, but trying to edit the page in classic and then switching back to Gutenberg will not work.

    I hope this helps.

    Thanks!

    #257250

    Hello,

    This should be able to be set on a page-by-page basis when editing the page (not in the customizer).

    pagesettings

    Let me know if you need anything else or if this isn’t what you were looking for.

    Thanks!

    In forum: Kadence Theme

    In reply to: Space between blocks

    #257248

    Hello,

    Do you have a link to the page? Your biggest gaps are going to come from the gallery margins (when you have the gallery block selected):

    galleryspace

    Let me know if that helps you out.

    Thanks!

    • This reply was modified 5 years, 7 months ago by Chris.
    #257240

    Hi Ben and team. I am wanting a different menu depending on the page the user is viewing. I will include code below on how we did it via Beaver Build in case it helps, but am wondering if there is ay way with Kadence Theme to do it via a custom header/menu only on certain pages that does not require custom code. If not, no worries, but thought I would check. Thanks.

    One idea would be to maybe use elements and then load the menu as an element on certain pages and disable the normal menu via the page settings. Is that a good idea? Any performance concerns vs custom PHP?

    `<?php

    /**
    * Helper class for theme functions.
    *
    * @class FLChildTheme
    */
    final class FLChildTheme {

    /**
    * @method styles
    */
    static public function stylesheet() {
    $css_ver = filemtime( get_stylesheet_directory() . ‘/style.css’ );
    echo ‘<link rel=”stylesheet” href=”‘ . FL_CHILD_THEME_URL . ‘/style.css?ver=’ . $css_ver . ‘” />’;
    }

    /**
    * Renders the markup for the fixed header.
    *
    * @since 1.0
    * @return void
    */
    static public function fixed_header() {

    // Prevet showing fixed header on the Logo Page tempale
    if ( is_page_template( ‘page-templates/page-logo.php’ ) ) {
    return;
    }

    $header_layout = FLTheme::get_setting( ‘fl-fixed-header’ );
    $header_enabled = apply_filters( ‘fl_fixed_header_enabled’, true );

    if ( ‘visible’ == $header_layout && $header_enabled ) {
    get_template_part( ‘includes/fixed-header’ );
    }
    }

    /**
    * Renders the markup for the main header.
    *
    * @since 1.0
    * @return void
    */
    static public function header_layout() {
    $header_layout = FLTheme::get_setting( ‘fl-header-layout’ );
    $header_enabled = apply_filters( ‘fl_header_enabled’, true );

    if ( ‘none’ != $header_layout && $header_enabled ) {
    if ( is_page( array( ‘cart’, ‘checkout’ ) ) ) {
    get_template_part( ‘includes/nav-without’ );
    } else {
    get_template_part( ‘includes/nav-‘ . $header_layout );
    }
    }
    }

    /**
    * Regiser the menu in the main header.
    *
    * @since 1.0
    * @return void
    */
    static public function register_menus() {

    unregister_nav_menu( ‘header’ );

    register_nav_menus( array(
    ‘back-to-top’ => esc_html__( ‘Back-To-Top Menu’, ‘bb-theme-5dd’ ),
    ) );
    register_nav_menus( array(
    ‘customer’ => esc_html__( ‘Customer Menu’, ‘bb-theme-5dd’ ),
    ) );
    register_nav_menus( array(
    ‘sale’ => esc_html__( ‘Sale Menu’, ‘bb-theme-5dd’ ),
    ) );
    register_nav_menus( array(
    ‘non-sale’ => esc_html__( ‘Non-Sale Menu’, ‘bb-theme-5dd’ ),
    ) );
    register_nav_menus( array(
    ‘affiliate’ => esc_html__( ‘Affiliate Menu’, ‘bb-theme-5dd’ ),
    ) );
    register_nav_menus( array(
    ‘sale-party’ => esc_html__( ‘Sale Menu – Party Page’, ‘bb-theme-5dd’ ),
    ) );
    }

    /**
    * Renders the menu in the main header.
    *
    * @since 1.0
    * @return void
    */
    static public function header_menus() {

    $header_layout = FLTheme::get_setting( ‘fl-header-layout’ );

    if ( is_page_template( ‘page-templates/page-logo.php’ ) ) {
    /*
    * If page template is “Logo Page”, show no menu
    * @since 1.0
    */
    return;
    }
    elseif ( is_page( array(
    52426, // affiliate-area/about
    )
    )
    ) {
    wp_nav_menu( array(
    ‘theme_location’ => ‘back-to-top’,
    ‘items_wrap’ => ‘<ul id=”%1$s” class=”nav navbar-nav ‘ .
    ( ‘right’ === $header_layout ? ‘navbar-right’ : ” ) . ‘ %2$s”>%3$s</ul>’,
    ‘container’ => false,
    ‘fallback_cb’ => ‘FLTheme::nav_menu_fallback’,
    ) );
    }
    elseif ( is_page( array(
    115611, // vcb-iii-party
    115882, // vcb-iii-kickstart
    142873, // vcb-iv-party
    147539, // vcb-iv-sumo
    )
    )
    ) {
    wp_nav_menu( array(
    ‘theme_location’ => ‘sale-party’,
    ‘items_wrap’ => ‘<ul id=”%1$s” class=”nav navbar-nav ‘ .
    ( ‘right’ === $header_layout ? ‘navbar-right’ : ” ) . ‘ %2$s”>%3$s</ul>’,
    ‘container’ => false,
    ‘fallback_cb’ => ‘FLTheme::nav_menu_fallback’,
    ) );
    }
    elseif ( is_page( array(
    142766, // vcb-iv-kickstart
    )
    )
    ) {
    wp_nav_menu( array(
    ‘theme_location’ => ‘blank-menu’,
    ‘items_wrap’ => ‘<ul id=”%1$s” class=”nav navbar-nav ‘ .
    ( ‘right’ === $header_layout ? ‘navbar-right’ : ” ) . ‘ %2$s”>%3$s</ul>’,
    ‘container’ => false,
    ‘fallback_cb’ => ‘FLTheme::nav_menu_fallback’,
    ) );
    }
    elseif ( is_page(
    /*
    * If page slug is in array, use ‘customer’ navigation menu
    * @since 1.0
    */
    array(
    52266, // my-account
    52475, // my-account/faqs/
    )
    )
    ) {
    wp_nav_menu( array(
    ‘theme_location’ => ‘customer’,
    ‘items_wrap’ => ‘<ul id=”%1$s” class=”nav navbar-nav ‘ .
    ( ‘right’ === $header_layout ? ‘navbar-right’ : ” ) . ‘ %2$s”>%3$s</ul>’,
    ‘container’ => false,
    ‘fallback_cb’ => ‘FLTheme::nav_menu_fallback’
    ) );
    }
    elseif ( is_page(
    /*
    * If page slug is in array, use ‘affiliate’ navigation menu
    * @since 1.0
    */
    array(
    38, // affiliate-area
    52480, // entry
    52456, // affiliate-area/contact/
    52473, // affiliate-area/faqs/
    52434, // affiliate-area/products/
    60177, // affiliate-area/resources/
    88825, // my-profile
    142212, // affiliate-area/resources/smart-goals/
    124419, // affiliate-area/products/
    217193, // affiliate-area/resources/difference-makers/
    217585, // partner-onboarding-2/
    216459, //partner-onboarding/
    )
    )
    || ‘contributor’ === get_post_type()
    ) {
    wp_nav_menu( array(
    ‘theme_location’ => ‘affiliate’,
    ‘items_wrap’ => ‘<ul id=”%1$s” class=”nav navbar-nav ‘ .
    ( ‘right’ === $header_layout ? ‘navbar-right’ : ” ) . ‘ %2$s”>%3$s</ul>’,
    ‘container’ => false,
    ‘fallback_cb’ => ‘FLTheme::nav_menu_fallback’
    ) );
    }
    elseif ( is_page(
    /*
    * If page slug is in array, use ‘sale’ navigation menu
    * @since 1.0
    */
    array(
    52353, // iii
    52533, // bb-i
    52829, // bb-i-1
    52910, // bb-i-2
    52958, // bb-i-3
    52981, // bb-i-4
    53001, // bb-i-5
    )
    )
    ) {
    wp_nav_menu( array(
    ‘theme_location’ => ‘sale’,
    ‘items_wrap’ => ‘<ul id=”%1$s” class=”nav navbar-nav ‘ .
    ( ‘right’ === $header_layout ? ‘navbar-right’ : ” ) . ‘ %2$s”>%3$s</ul>’,
    ‘container’ => false,
    ‘fallback_cb’ => ‘FLTheme::nav_menu_fallback’
    ) );
    }
    else {
    wp_nav_menu( array(
    /*
    * If page slug is not above, use ‘non-sale’ menu
    * @since 1.0
    */
    ‘theme_location’ => ‘non-sale’,
    ‘items_wrap’ => ‘<ul id=”%1$s” class=”nav navbar-nav ‘ .
    ( ‘right’ === $header_layout ? ‘navbar-right’ : ” ) . ‘ %2$s”>%3$s</ul>’,
    ‘container’ => false,
    ‘fallback_cb’ => ‘FLTheme::nav_menu_fallback’
    ) );
    }
    }

    }`

    #257239

    Not sure if I a supposed to post this in the forum, but just wanted to reach out and say thanks so much for adding this feature! It is amazing and so helpful and love how it enables me to load it very specifically only on the page or post or location desired! Awesome! Thank you!

    #257238

    I suggest you give it a try and if that doesn’t work remove all the products you imported and send me the export file, I can then check to see if there would be any way to run a conversion.

    How do I do the export of brands?

    I just tried it on a test website, here’s what I did: created test brands using the quadlayers plugin, assigned to a product, deactivated the QL plugin. Installed Kadence WC Extra, enabled the brands.

    At first I get a white screen saying invalid taxonomy error, and after a refresh, I see the brand creation page but the brands from the QL plugin is not shown, I have to start from scratch.

    In forum: Virtue Theme
    #257233

    Hello
    Ok i disabled the page cache and it works.
    Thank you !

    #257231

    Hi,

    I see I can change the Page Title to be “In Content” or “Above Content” globally for pages in Theme settings. However, various pages require over-riding this global settings and I can’t see the option in page settings to do this. Can you please advise how this can be achieved?

    thanks

    #257226

    I’m trying to develop a color scheme where the pages of each major menu section have a different heading background color. That’s easy enough: I’ve created css classes to color the different page headers which I enter into each appropriate block.

    Where I’m struggling is that I’d like the main header menu to show the same colors for active/hover menu items at the top level, and on dropdown items for the child items. I’ve got most of it working. Here’s an example from the “Support” section:

    /*Recolors dropdown menus to match color scheme: working */
    .sf-dropdown.menu-item.menu-item-has-children.menu-item-48.menu-item.menu-support li {
    background: #235789;
    color: #FFFFFF;
    }

    /*Main Menu active and hover: not working*/
    li.current-menu-item.current_page_item.menu-item-has-children.menu-item-48 span {
    background: #235789;
    color: #FFFFFF;
    }

    As you can see in the image, it’s almost working. The color I’m trying to match is the horizontal blue bar. The dropdown menus are behaving the way I want. But for the top level menu item, the best I’ve been able to do is change the background color for the text (span). I haven’t been able to figure out how to specify the entire red box (red is the theme-level active/hover color which I’m trying to override).

    Thoughts?

    Michael

    #257225

    Howdy,

    I have posts in 10 categories yet some show none when selected from the filter bar and others show only some. E.g. – one category has 15 posts but only 5 show up even with 6 being set as the number to show. Along this line, it is curious that pagination cannot be selected as in this case, 6 should show with the remaining 9 showing on 2 subsequent “pages”. Or am I just not ‘getting’ how this is supposed to work (could very well be 😉 ).

    Cheers!
    Lyle

    #257205

    Using the Kadence Theme page layout, the sidebar goes all the way to the top.
    How does one get the sidebar to stop below the header?

    #257204

    Hi,

    I can’t find where to change the company name from Uppercase to lowercase, I have typed it in in lowercase or so I believe.

    In forum: Kadence Theme
    #257200

    Hi,

    Kindly how can i hide the SKU number in the single product page.

    Thank you

    In forum: Kadence Theme

    In reply to: Custom Arrows;

    #257172

    Me too!
    Could you also answer my question on how to balance them properly with equal numbers? Now it looks: https://www.weirdo.studio/test-page/
    – slightly unequal, because margins left:0; and right:50px; If its possible.
    Thanks a lot!

    #257164

    Hello,

    I’m sorry for the delay – did you get this sorted as I’m not seeing multiple h1’s on the page. In the area you’re describing I’m seeing an h3 and an h5.

    Can you provide a screenshot of what it is you’re referring to?

    Thanks!

    #257161

    I found i like using the Image Overlay feature because it has Zoomed in and etc
    Just noticed it can’t be moved up or down like the header or any other section on the homepage
    Is there a way of doing so, Thanks

Viewing 20 results - 6,521 through 6,540 (of 53,646 total)