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 - 31,801 through 31,820 (of 53,646 total)
  • Author
    Search Results
  • In forum: Virtue Theme

    Topic: "Related"

    #102602

    Hi,

    How to I eliminate the “Related” section from portfolio pages? I want the “More Artwork” carousel at the bottom, but I can’t seem to figure out how to omit “Related”. On the following example page it’s between the Process Work section and the Portfolio Item’s specs.

    Example:

    Thanks in advance for your help.

    Amanda

    In forum: Virtue Theme
    #102601

    3. Then I would suggest just not using a slider on the portfolio grid page? Why not just leave as single images if you don’t like the look of the slider?

    Ben

    #102599

    Hey,
    Where are you adding the split widget? Which page? Can you post a direct link?

    You can increase the space for the logo using this css:

    @media (min-width: 992px){
        .kad-header-left {width:50%}
        .kad-header-widget {width:50%}
    }
    
    

    as for aligning you need to remove this:

    @media (min-width: 992px) {
    .widget-1.widget-first.header-widget-area-header.widget_black_studio_tinymce {
    margin-top: 25px;
    }
    }
    

    And add this in it’s place in your css:

    @media (min-width: 992px) {
    .header-widget-area-header {
    margin-top: 45px;
    }
    }

    Nem

    In forum: Virtue Theme

    In reply to: On Sale products

    #102594

    2. I think you are missing the simple products shortcode where you can choose products by id or sku. For example:

    [products skus="foo, bar, baz" orderby="date" order="desc" columns="4"]

    Please take another look at the link I posted above.

    4. Here is a tutorial on pagebuilder: https://www.kadencewp.com/using-page-builder-virtue-premium/

    And here is one on the home page: https://www.kadencewp.com/creating-a-home-page-with-virtue/

    You can create as many categories as you like and add products to them.

    Ben

    #102586

    ok, in your theme options > advanced settings add this css:

    body.archive.woocommerce .titleclass > .container {
    width:auto;
    }
    

    Then update the function in your child theme to this, should fix the issues:

    function kt_custom_child_init() {
    	remove_action( 'woocommerce_above_main_content', 'kt_woocommerce_page_title_container', 20 );
    	add_action( 'woocommerce_before_main_content', 'kt_woocommerce_page_title_container_check', 20 );
    	function kt_woocommerce_page_title_container_check() {
    		if(is_archive()) {
    			kt_woocommerce_page_title_container();
    		}
    	}
    }
    add_action('init', 'kt_custom_child_init');

    Ben

    #102585

    This will reduce the width of your page title:

    @media (min-width: 992px) {
    .page-header {
        width: 72%;
    }
    }

    This will hide the page header on single product pages:

    .single-product .page-header {
        display: none;
    }

    Hope that’s helpful!
    Hannah

    In forum: Virtue Theme
    #102584

    I have 2 problems with galleries.

    First problem:
    I created a gallery with 11 items in and chose masonry layout. It only displays 7 of my selections. I need it to display all of them. I have deleted and recreated the gallery many times. The settings are such to allow the theme to override Word Press settings.

    Second problem:
    I want the images in my galleries not to open to an attachment page. In the gallery settings I set it to none, save everything, and go back to look at the gallery. The images open to attachment pages and the settings did not stay as none.

    Please fix these problems!!

    Thank you.

    In forum: Virtue Theme

    In reply to: submenu font

    #102577

    Breadcrumbs are the small links that you can see under the right side of the main navigation on this page:
    http://themes.kadencethemes.com/virtue-premium-2/product/vinyl-record/

    You can change fonts with similar CSS:

    ul.sf-dropdown-menu.dropdown li a span {
        font-family: "Times New Roman", Times, serif;;
    }

    You’ll just have to adjust according to which fonts you want to use.

    #102550

    Hey,
    You should be able to build your shop page on a “store” url. By making a “store page” Then assigning that page in your wooocommerce settings as the “shop” page. woocommerce > settings > products > display

    Then you can go to settings > permalinks. And there set the “Product Permalinks” to make sure you are not conflicting with “shop”.

    Ben

    In forum: Virtue Theme

    In reply to: submenu font

    #102548

    Here is some CSS that will allow you to change the fonts of the dropdown menu.

    ul.sf-dropdown-menu.dropdown li a span {
        font-size: 20px;
    }

    Just place that into Theme Options> Advanced Settings.

    I can’t quite figure out how to make it change depending on the page, but if you’re worried about customer losing track of where they are on the site, you could always go to Theme Options> Breadcrumbs and enable them on your woocommerce pages.

    Try that and let me know if it works for you.

    #102541

    I am unable to enter the credit card number nor checkout with Paypal.
    Here is the error I am getting:
    Error: PayPal did not supply a payment nonce. Please try again by reloading the page to clear your browser cache.

    In forum: Virtue Theme

    In reply to: page layout

    #102536

    Hey Sarmad,
    Try adding this to your custom css:

    @media (min-width: 1200px) {
    .page-header {
        width: 73%;
    }
    aside#ktsidebar {
        margin-top: -100px;
        padding-left: 20px;
    }
    }

    Hope that works for you!

    Hannah

    #102535

    I am using Kadence Virtue Theme.I have disabled ‘Enable Product Image Aspect Ratio on Catalog pages’ and ‘Enable Product Image Aspect Ratio on product Page’, resized images on woocommerce settings.My problem is i can’t reduce box size on product catalog and product page.There is wide space in product catalog on left and right of image.I want to reduce product catalog box size.My URL is .Please please help me.

    #102526

    Hi Hannah, Kevin or Ben:

    We are using the Demo 1 Virtue site as a pattern.

    I see a carousel of “Featured Product” images below the logo and fullwidth slider. How do I populate these stock images with our own?

    Thank you,

    Mark Wingler

    #102525

    Ben thank you for quick reply.

    I did as you said and Page title is back where it was. But it is not OK yet because page header has keep the same width as before. Because of that, sort drop-down and breadcrumbs are now not aligned on right side. They are moved out.

    And there is also Page title on Product page now.

    Ales

    In forum: Virtue Theme

    In reply to: locating strange pages

    #102523

    Hey,
    The Blog > Let’s Make page is your default category page. There isn’t really a way to delete it without deleting the category itself. Your best bet is to simply not link to it.
    Your first link ( http://www.obynnadi.com/?page_id=71 ) is taking me to a 404 page? This will show if there is a mistyped address or an out of date link.

    Hannah

    #102521

    Hi Santosh,
    You can create product categories and subcategories from Products > Categories in the admin panel. Then you can assign products to these categories from the product edit pages. So I would suggest making Men a parent category then t-shirts, hoodies, etc sub categories. Then in Woocommerce > Settings > Products > Display set Default Category Display to Show Subcategories. Then you can link to your Men category page from your icon menu.
    Hope that all makes sense!

    Hannah

    #102513

    Sorry one more thing. The text “Other High Vibrating Wear” I like the look/font and want to use that for all my page titles. I can’t seem to find where the font is so I can change my page titles heading 1.

    thanks

    In forum: Virtue Theme
    #102505

    1. Thanks I made changes in other place but not the lookbook page.

    2. Okay thanks

    3. That is unfortunate. When they autoslide it just reduces the look and seems less professional to me.

    thanks

    #102502

    welcomeamigos.co.uk

    I updated Virtue today and a number of things on the above site have broken:
    -Pagebuilder is not functioning correctly (I cannot create columns and the columns that were there previously are no longer there – see Home Page) I have been using Pagebuilder for the last year without problem
    -the icons on the Features widget are no longer there (Front page) even though they are selected on the Features widget
    -the Kadence slider text has lost some of its styling and become large – changing the font size has no effect.
    -the weekly class schedule welcomeamigos/classes2 is now showing the information that should only be visible on hover permanently

    I was meant to be adding pages to the site for a client which they need immediately so would really appreciate some support asap to solve the above problems.

Viewing 20 results - 31,801 through 31,820 (of 53,646 total)