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,081 through 5,100 (of 53,646 total)
  • Author
    Search Results
  • #264221

    Hey,
    2. This css will remove the max-width for the logo:

    .site-branding a.brand img {
        max-width: none;
    }

    And this css will center align it:

    .site-branding {
        margin: auto;
    }

    Is that what you’re envisioning? Sorry if I’m misunderstanding.

    3. It looks like you’re using a default page template rather than a sidebar page template. Have you tried adjusting this from your edit page under Page Settings?

    4. Would you mind sending login info so I can look into this?

    Kindly,
    Hannah

    In forum: Kadence Theme

    In reply to: Shop pagination

    #264215

    Hi there,
    That’s the problem, in my customize – woocommerce – product catelog, there are no ‘Products per row’ and ‘Rows per page’ option.
    Please help.

    pagination-02

    In forum: Kadence Theme

    In reply to: Shop pagination

    #264214

    Hello,

    You can set the number of products per row and rows per page by going to Customizer > WooCommerce > Product Catalog – https://share.getcloudapp.com/L1uNl0N9.

    Hope this helps.

    Regards,
    Karla

    #264207

    Hi Hannah,

    Thank you for reply. I am trying things with a plugin called Editor Plus that allow me to set Global CSS and I can also add custom CSS to each block. problem is sorted out now.

    I am loving Kadence blocks, We have created the homepage using Kadence blocks. it’s fantastic,

    regards
    Arun

    In forum: Membership Forums

    In reply to: Modal for Mobile

    #264190

    Thanks for the reply Chris,
    The link was in my original post FLOMAPS.COM

    I do not want a link to my subscription page. That is what I replaced with a Modal.
    The Modal works just fine on Desktop but does not work on Mobile.

    In your reply you said “You can create elements that show up on just mobile sites or just desktop or tablet”…
    Does that mean it has to be either or, not both?
    Also, where is this setting to show up only on one or the other. I did not see that option/setting anywhere.

    Thanks,
    Dan

    In forum: Membership Forums

    In reply to: Modal for Mobile

    #264186

    Hello,

    You can create elements that show up on just mobile sites or just desktop or tablet. What you could do is create just a button that takes you to subscribe page with a subscribe form. Modals should work on mobile, but without a link to investigate further to see if this is a bug or a plugin conflict that would be your best option.

    Thanks!

    Chris

    In forum: Kadence Theme

    In reply to: Shop pagination

    #264173

    Hi there,
    If I have hundred of products, it is impossible to show them at one page, I need the Shop to show maybe twenty products per page only.
    Then at the bottom of the page, user can click “NEXT” for other pages.
    Thank you.

    pagination-01

    #264168

    Hi there,

    I am trying to figure out if this layout here can be achieved with Kadence Blocks:
    -> The Special Offers section.
    Basically this segment should be full width and divided in two sections.
    The text on the left doesnt have the full page width.
    The right section has a background image, which is fixed.

    I think there should be some nesting of several row blocks, but I am not able to wrap my head around it.

    Thanks
    Blerim

    #264164

    Hey this issue is same with me both on gtmetrix and google page speed insights. The specific one is nunito sans even if its not used by any of my plugin nor any customizer settings. Please rectify Ben.

    #264158

    I use a Modal in an element on my Home Page for a email subscriber optin form.
    The Modal button works great on Desktop but not on Mobile.
    On Mobile if someone uses the button the page just locks up – cannot scroll or anything.
    Is there any options for Elements or Modals to link to a different page if in Mobile?
    Or any other options or suggestions for using Modals on Mobile?

    FloMaps.com
    Thanks,
    Dan

    #264155

    Thanks Hannah,

    I managed to get the structure and the posts I wanted to display and I’ll have to do the rest with custom css, see page now. It’s a pity the Posts block doesn’t have block level settings for text/title margin/padding/line heights and gutter & border styling, etc. We could then use it for more bespoke style home page usage without custom css.

    Cheers

    In forum: Kadence Theme

    Topic: Login Button

    #264153

    Hi..
    I am using the Kadence Theme Pro and also Kadence Blocks Pro.
    I enabled the “My Account” widget on the header, which opens the pop-up for visitors to log in.
    Is there a way to create a button that triggers this same login pop-up so I can display this button on the page, rather than only in the header?

    Thanks

    In forum: Virtue Theme

    In reply to: Icons

    #264146

    sorry I missed this topic. Here you go, a check is added for mobile and then it’s returned so that the mobile markup is not broken.

    add_filter( 'nav_menu_css_class', 'custom_filter_out_classes', 11, 4 );
    function custom_filter_out_classes( $classes, $item, $args, $depth ) {
    	if( is_array( $classes ) ) {
    		foreach ( $classes as $key => $class ) {
    			if ( strpos( $class, 'fa-' ) !== false ) {
    				unset( $classes[ $key ] );
    			}
    		}
    	}
    	return $classes;
    }
    add_filter( 'walker_nav_menu_start_el', 'custom_filter_add_icon_class', 11, 4 );
    function custom_filter_add_icon_class( $item_output, $item, $depth, $args ) {
    	if ( isset( $args->theme_location ) && 'mobile_navigation' === $args->theme_location ) {
    		return $item_output;
    	}
    	$icon_class = array();
    	$custom_classes = get_post_meta( $item->ID, '_menu_item_classes', true );
    	if ( $custom_classes ) {
    		foreach ( $custom_classes as $custom_class ) {
    			if ( strpos( $custom_class, 'icon' ) !== false || strpos( $custom_class, 'kt-icon' ) !== false || strpos( $custom_class, 'fa-' ) !== false ) {
    				$icon_class[] = $custom_class;
    			}
    		}
    	}
    	$atts                 = array();
    	$atts['title']        = ! empty( $item->attr_title ) ? $item->attr_title : '';
    	$atts['target']       = ! empty( $item->target ) ? $item->target : '';
    	$atts['rel']          = ! empty( $item->xfn ) ? $item->xfn : '';
    	$atts['href']         = ! empty( $item->url ) ? $item->url : '';
    	$atts['aria-current'] = ! empty( $item->current ) ? 'page' : '';
    
    	$atts = apply_filters( 'nav_menu_link_attributes', $atts, $item, $args, $depth );
    
    	$attributes = '';
    	foreach ( $atts as $attr => $value ) {
    		if ( ! empty( $value ) ) {
    			$value       = ( 'href' === $attr ) ? esc_url( $value ) : esc_attr( $value );
    			$attributes .= ' ' . $attr . '="' . $value . '"';
    		}
    	}
    	if ( ! isset( $args->link_before ) || ( isset( $args->link_before ) && empty( $args->link_before ) ) ) {
    		$args->link_before = '<span>';
    		$args->link_after  = '</span>';
    	}
    
    	$title = apply_filters( 'the_title', $item->title, $item->ID );
    	$title = apply_filters( 'nav_menu_item_title', $title, $item, $args, $depth );
    
    	$description = ! empty( $item->description ) ? '<span class="sf-description">' . esc_attr( $item->description ) . '</span>' : '';
    	$icon        = ! empty( $icon_class ) ? '<i class="' . esc_attr( join( ' ', $icon_class ) ) . '"></i>' : '';
    
    	// No Description for submenu items.
    	if ( 0 !== $depth ) {
    		$description = '';
    	}
    
    	$item_output  = $args->before;
    	$item_output .= '<a' . $attributes . '>' . $icon;
    	$item_output .= $args->link_before . $title . $description . $args->link_after;
    	$item_output .= '</a>';
    	$item_output .= $args->after;
    	return $item_output;
    }
    #264137

    Honestly, not really. This is the home page that was created when I pulled in the starter template. How do I use what is in the theme and choose gutenberg? I didn’t choose the classic editor but it does appear to be a plugin. Should I deactivate the plugin? Please tell me what I need to do to use the theme starter template and kadence.

    Thank you,
    Hugh

    #264127
    This reply has been marked as private.
    In forum: Virtue Theme

    In reply to: Side bar on Shop Page

    #264117

    Hello Cassie,

    Thank you for reaching out to us.

    If you chose Full Layout for the Display the sidebar on Shop Page? and Display the sidebar on Product Category Pages? options in Theme Options > Shop Settings, then the sidebar should not show on your shop and product category pages. Additionally, if a page has a sidebar, it will definitely not show below the footer.

    To confirm, have you purged your website/server caching to see if the issue will be fixed? If that did not fix the issue, please try deactivating your other plugins one by one to see if one of them may be causing the issue.

    Hope this helps and let us know if we can assist you further.

    Regards,
    Karla

    #264113

    Hi Sebastian,
    Apologies for the delay! And sorry this has been the case for you. You can set a static page as your homepage from Settings > Reading. Just make sure you then have Page Content enabled in the homepage layout manager in Theme Options > Home Layout.

    1. Yes, you can use the “Override and use a Shortcode Slider” option from in your Page Title and Sub Title settings in your edit page.
    2. Yes, you just would need to set your homepage as static from Settings > Reading as I mentioned above.

    Hope that’s helpful!

    Kindly,
    Hannah

    #264109

    It looks like you’re using the classic editor, but our starter templates were built in either Elementor or Gutenberg. You can’t switch between editors once a page is already created, sorry! Does this make sense?

    Kindly,
    Hannah

    #264106

    Hi Karla,

    thank you for your message. It works now. I can change the email type like its supposed to be. I have no idea why and what happened, but I can use your email customizer finally 🙂 Thank you, if you did something there.

    The second issue I was able to solve as well with the plugin cartflows. The checkout page looks much better now.

    I guess there is a lot of mess up with all the plugins. WE will start the website soon from scratch to get rid of things that are not needed for the website

    I appreciate your support! Muchas gracias Hanna & Karla!

    #264095

    Hey Team.. I am having this same issue..
    Could you possibly take a look for me to see if I have something breaking my page?

    my site is https://nemersboutique.com/

Viewing 20 results - 5,081 through 5,100 (of 53,646 total)