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 - 10,921 through 10,940 (of 53,646 total)
  • Author
    Search Results
  • #233601

    Hi Kanon,
    In your edit page, edit your page builder row and open the layout tab. There you can set the row layout to full width stretched.
    Hope that helps!

    Hannah

    #233593

    You bet, is that text below the logo going to be on every page? Or just the home page?

    Ben

    #233590

    Hi-I’m using a mega menu in the header widget. I have 2 issues:

    1. I have a longish title, whihc I put into the top button with a link to #. The longish title is:
    MY BENEFITS
    Link to your company’s benefits page

    and the only way I could style this into 2 lines was with 2 custom links. This isn’t ideal. Is there a way to get both lines of text into the button?

    2. I don’t want the hamburger for this menu on mobile, but I do want it for the menu underneath (secondary menu) on mobile.
    Is there a way to do this?

    Thank you.
    Carrie

    #233588

    Do you mean the parallax image with the call to action? This image can be set from your home edit page. Edit the page builder row and then open the Design tab and upload your background image.

    Hannah

    #233586

    Yes, just for the homepage. I thought there would probably be a customizable area for that, that I am overlooking.
    http://creativeoasis.life/wp/
    image http://creativeoasis.life/wp/wp-content/uploads/2019/08/breads-slider2.jpg

    Thanks

    #233574

    Good morning K-Team,

    Hope you are all doing well!

    I am having an issue with the blog posts not following the layout of the rest of the pages. If I add main content background color then it messes with design of the rest of the site. I am ok with the blog not looking exact but I need to add a background color to the posts only. Any ideas?

    Here is the site:

    Here is one of the posts:

    Thank you,
    Chad

    #233568

    Good morning! I’m new to coding and was persuaded to purchase Pinnacle and and it’s Page Builder. The site looks pretty good but don’t understand why I’m getting white space between each row when I preview the changes. How can I eliminate the aforementioned space and where do I go to do so? Thank you!

    In forum: Membership Forums

    Topic: Price labels

    #233526

    Hi there,
    have you any option to show price label beside price on product page?
    Usualy there is only price shown.
    I want to show there at least regular and sale price: xxx €
    Thanks for help

    #233523

    Good Morning,

    I have an issue that I don’t seem to be able to get around.
    I have a H1 at the top of my page and a Kadence blocks pro row layout below which has a top divider.

    My issue is this causing a large white space to appear between the H1 and row divider. (This only happens when I have a top divider.)
    I’ve tried adding negative margin but this option seems to be unavailable now and reverts to 0 on saving.

    Can you help?

    Thanks,
    Peter

    #233515

    Hey,
    The theme breadcrumbs use schema 🙂

    If you prefer yoast you can use a function, it depends on exactly where you want the breadcrumbs to show, for example above or below the page/post title.

    Ben

    #233506

    Hi guys,
    I have 34 active products in my store. I want to make a line sheet – something like a separate product archive with a wider amount of all products (about 50) with the same features like product gallery on a product page and description but without sale usability (ADD TO CART button, stock quantity and etc.)
    I can’t figure out how is this better and easier to make.

    Should I create a product category ‘line-sheet’ and somehow exclude it from the main product archive?
    Should I create alternative tween -products with a separate woo-layout
    Or not to ruin my store should I use blog posts for that?

    It is basically a product archive for wholesale buyers, not an online store.
    Could you recommend something on that?
    Thank you!

    Anonymous
    #233500

    Hello,
    Just now posted a blog on spmhcincinnati.org and, on the homepage, there’s HTML between the excerpt and “Read More.”

    It’s been a long while since the client posted the last blog. No changes have been made on our end to impact this as we’re building a new site right now. This site is still using the Classic Editor; the new design will integrate Kadence Blocks.

    Meanwhile, what can be done to remove the HTML from the blog excerpt? Also, this is not occurring on the actual Blog page where all the blogs are listed.

    Thanks for your help!

    Joanne Grueter

    #233499
    This reply has been marked as private.
    #233498

    Hi there

    I have a sidebar that I’m using on my shop page, and I’ve also got the same sidebar selected (in theme options) for the product categories pages but it’s not showing on the page – could you tell me why? (Links to follow)

    #233475

    You can remove the background from your page titles with this css:

    .titleclass #kadbreadcrumbs {
        background: transparent;
    }

    And this will remove the background and change the color when there is no page title enabled:

    .kt_bc_nomargin #kadbreadcrumbs, .kt_bc_nomargin #kadbreadcrumbs a {
        color: #217281;
        background: transparent;
    }
    

    From my understanding, Google will read the themes breadcrumbs also. The developer will correct me if I’m wrong.

    Hannah

    #233473

    Hi Dom,
    Have you tried using the theme breadcrumbs? You can enable them for posts, pages, and products from Theme Options > Breadcrumbs. Or are you set on using Yoast’s breadcrumbs?

    Hannah

    #233472

    If I am understanding you correctly you can add css like this,

    .product_image a {
        pointer-events: none;
        cursor: default;
    }

    Some browsers will respect that, else you would need to edit the woocommerce template.

    Thanks for the note about the home page typo.
    Ben

    Anonymous
    #233470

    Hi

    I am using yoast breadcrumbs and have added the following to my functions.php in my child theme:

    add_action('kt_afterheader', 'custom_breadcrumbs_add');
    function custom_breadcrumbs_add(){
    if ( function_exists('yoast_breadcrumb') ) {
    yoast_breadcrumb('<div class="container"><p id="breadcrumbs">','</p></div>');
    }
    }

    But that only seems to affects products.

    To get the breadcrumbs working on my pages, I have added the following to page.php

    <?php
    if ( function_exists('yoast_breadcrumb') ) {
    yoast_breadcrumb( '<p id="breadcrumbs">','</p>' );
    }
    ?>

    And I cannot get it to work on blog posts at all.

    Question – is there code I can add to functions.php that will show breadcrumbs on products, posts AND pages? Or is adding it in separate places the right way to go?

    If so, can you advise which file I need to add code to in order for breadcrumbs to show up on my posts?

    Finally, to style them, do I just need to add the following to my css (or is it a different class)?

    .breadcrumbs {
    <style>
    }

    Many thanks
    Dom

    #233462
    This reply has been marked as private.
    In forum: Virtue Theme
    #233454
    This reply has been marked as private.
Viewing 20 results - 10,921 through 10,940 (of 53,646 total)