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 - 33,141 through 33,160 (of 53,646 total)
  • Author
    Search Results
  • In forum: Virtue Theme
    #96627

    Hey,
    There isn’t a post subtitle options. It’s just to pages.

    You can force in some text with css kinda but it’s a decent amount of work if you want it to be different for each post. For example this would target the post id 464 and you would have to do one for each post id.

    .single-article article.post-464 h1.entry-title:after {
        content: 'This is a subtitle';
        display: block;
        font-size: 16px;
    }

    The only other option would be to add this through a child theme.

    Ben

    #96625

    Just so you know making the page content wide is an option but it’s a responsive theme so there is always going to be a screen size where the titles get too long and have to make a second line.

    In your theme options > shop settings you can change the product title size.

    For wider I suggest this css:

    @media (min-width: 1200px){
        #content.container {width: 80%;}
    }

    Ben

    #96617

    Thanks Hannah!

    I tried that shortcode, but the photos don’t show up as the landscape header, which is what I love about the blog page set up.
    I might go ahead and use this though.

    I had tried setting the latest blog page as the home page. But, wasn’t able to add “Page Content”.

    Figured out that you have to use the “Home Page Widget Area” and add a text widget. And, you have to make sure to keep the “Page Content” option there as well, otherwise the blog posts disappear!

    I will continue working with the options to get it the way I want.

    Thank you.

    #96616

    Hi guys
    Forgive me if this has been asked already, but is there a way to disable the main logo link? Or even change the link? I am using a landing (intro) page and I dont want the main logo linking back to it.

    Thanks

    In forum: Virtue Theme
    #96615

    You can set the subtitle for each page in the page options screen. There is usually the option for it under the editor. Have you tried using that?

    I don’t believe that it puts your subtitle in the meta tag.

    #96614

    No…I don’t think that worked. I want to know if I can widen the page or reduce padding between products so that products with long titles are not split up to two lines such as the Miso Master Organic Country Barley Miso (top right column) http://sturdy-alarm.flywheelsites.com/product-category/miso-master-organic-miso/

    I may have to just reduce the font size???

    Thanks Hannah

    #96610

    You can set your homepage as the latest post page (settings > reading) and still add content. You can enable anything you want in Theme Options > Home Layout. You could also use the home widget area to add whatever widgets you want. Or if you wanted to have a static page instead you could use this shortcode for your blog posts: [kad_blog orderby=date items=4 fullpost=false]
    Hope that helps!

    Hannah

    In forum: Virtue Theme

    In reply to: sidebar button widget

    #96609

    Here’s the link: http://indiecanrecords.com/?page_id=128 The button widget menu gives several options, but I want it to match the blue that I’m using on other parts of the page.

    I’m sure there’s an easy way to do it, and I just haven’t found it yet.

    Thanks!

    #96608

    Hey Usha,
    I’m not very familiar with formget, but more than like you would just paste it into the content area of your page. Or into a text widget. Does that work for you?

    Hannah

    #96604

    i cant get the site online without this fixed i quess the manager whants to see it first
    also your right when i delete the ither page with contents and make the same settings it works

    #96598
    This reply has been marked as private.
    #96596
    This reply has been marked as private.
    #96592

    I have to show a formget SLIDING FORM INSIDE my PAGE/POST. Where do I add the short code I got.

    Help appreciated.
    Thanks, Usha

    #96589

    Hi Ben,
    Thanks i have change the css code and now its working perfectly, thank you for the help, i m almost finalize the site but as a final requirement i need to bold the subscribe button( the button text) in the blog post pages, can you please tell me what should i do,
    Thank you,
    Panduka

    #96584

    The page is still local saved. At present the dropdown menu of the secondary menu is left aligned. But I would like to center it. I guess there is just a simple css code to change it. Thanks. Marcus

    #96583

    1) product image in product page show properly in google chrome (populate automatically).

    2) however, the image does not show properly in mozilla, image will only show when i roll over the image. so weird, previously work properly.

    pls assist, thanks.

    #96570

    1. That isn’t possible because wordpress reservers those permalinks for post and pages and forces a slug into custom post types and taxonomies to prevent conflicts. You can rename “portfolio-type” to something else with a child theme function:

    function kt_init_filter_portfolio() {
    add_filter('kadence_portfolio_type_slug', 'kadence_portfolio_type_slug_custom');
    function kadence_portfolio_type_slug_custom() {
     return 'portfolio-category';
    }
    }
    add_action('after_setup_theme', 'kt_init_filter_portfolio');

    Ben

    #96569

    Thats more possible with the pinnacle theme. It’s actually designed for it.

    You can use this css and it will do what you want:

    .page-id-29 #kad-banner {
        position: absolute;
        z-index: 100;
        width: 100%;
        background: transparent;
        border: 0;
    }
    .page-id-29 #topbar {
        background: transparent;
    }

    Ben

    #96568

    You could accomplish this by going into Theme Options> Main Settings, set “Sidebar Side of page” to be Left.

    Then, in Appearance> widgets, you should go in and assign a “Custom Menu” to your sidebar. You’ll have the option to assign an already existing menu to that area, but if you want a different menu to display, you’ll need to go into Appearance> Menus and setup the desired menu that you’ll assign to that area.

    Hopefully that helps!

    #96561
    This reply has been marked as private.
Viewing 20 results - 33,141 through 33,160 (of 53,646 total)