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,601 through 5,620 (of 53,646 total)
  • Author
    Search Results
  • #261827

    Is it possible to set on the content-area level, a background not limited to the entire site.
    1 bg for the entire site or multiple bg’s for different pages.

    Maybe this is more of a new feature?

    #261826

    Hello, thank you for your answer.
    Yes it is, but to modify the theme pages its not working.

    #261818

    Hey,
    Thanks for reaching out! If you have page builder by siteorigin installed and activated then you should automatically be taken into the siteorigin editor when editing a page. And you should see a dropdown option allowing you to choose an editor when creating a new page. Is this not the case for you? Would you mind sending login info so I can take a look? You can set as a private reply.

    Thanks!
    Hannah

    #261810

    Hi there!

    I was wondering if it’s possible at all to remove the product category from the breadcrumbs while still keeping breadcrumbs on the product pages.

    Thanks

    In forum: Virtue Theme

    In reply to: Icons

    #261805

    Hey,
    In a child theme you can filter the virtue walker class, for example:

    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 ) {
    	$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;
    }

    Ben

    In forum: Virtue Theme

    In reply to: Navigation Bar

    #261799

    Hannah,

    Thank you for that! It it worked perfectly.

    Is it also possible to add the rectangle around the selected page like in the link? https://www.hellomaisel.com/

    Thanks,

    Dan

    In forum: Virtue Theme

    In reply to: Navigation Bar

    #261798

    Hi Daniel,
    Thanks for reaching out! You can achieve that with some css like this:

    @media (min-width: 992px) {
    li.current-menu-item.current_page_item.current-menu-ancestor.current-menu-parent {
        border: 1px solid #000;
    }
    ul#menu-main1 {
        margin-top: 30px;
    }
    .kad-header-style-three #nav-main ul.sf-menu > li > a {
        line-height: 50px !important;
        height: 50px !important;
    }
    ul#menu-main1 a:hover {
        text-decoration: underline;
    }
    li.current-menu-item.current_page_item.current-menu-ancestor.current-menu-parent a:hover {
        text-decoration: none !important;
    }
    }

    Just paste that into your custom css box in Theme Options > Advanced Settings.
    If that doesn’t work for you please provide a link to your site.

    Best,
    Hannah

    #261795

    Hi John,
    To link to a specific tab using the Ascend Tabs and Accordionw widget you would need to add some js to your footer output in Theme Options > Header and Footer Scripts.
    Find the js here: https://pastebin.pl/view/d64182ff
    Then use #sctab plus the name of the tab. So if your tab title is tab 1 then it would be #sctabtab1 and you would add that at the end of your page URL. Does this make sense? Let me know if you need further guidance!

    Best,
    Hannah

    In forum: Ascend Theme
    #261791

    Thank you for your answer. Yes, Wordress and the template are the latest version. In my opinion, the problem is in setting the parameter: animate on stroll. When I turned this feature off, invisible page elements appeared.
    Pawel

    01

    In forum: Membership Forums

    In reply to: Two column accordion

    #261788

    I need that start page asap, so I tested a lot:
    – moving a “missing” row above the blue testimonial row does the trick – it shows again.
    – switching the testimonial block from carousel to grid, also does the trick
    – as before switching animation on the two row-columns off also works but it’s not desired.

    My conclusion: conflicting testimonial carousel <-> Animate on scroll

    Duplicated the page to /start-x so I don’t mess the start page. There you can see the 2 missing rows.

    Help.

    #261784

    Hi Miwa,
    Thanks for reaching out! You can adjust the Home Page Header background from Theme Options > Home Page Header. And for mobile from Theme Options > Mobile Home Header.
    I hope that’s helpful! Let me know if you need more guidance.

    Kindly,
    Hannah

    #261779

    Hi, I am using Virtue Premium, latest version. I added 7 testimonials and put them in a testimonial group. Each testimonial was built with a testimonial block, which is wonderful. Love the styling options. Here is one of them.
    I have a couple of questions:

    1. In the settings of the testimonial group, I specified a URL slug /testimonials. But when I access the URL, I get a 404. How do I turn the testimonial group into a page?

    2. On the testimonial page, I would like to display the testimonials in a grid with each cell showing only the testimonial block (not the page title and user icon). Is that possible? On the individual testimonial page, I’ve added custom css to turn off the title and user icon. If CSS is the way for the grid page, I can figure that out.

    3. Is it possible to have a slider or carousel on the home page where each slide is a testimonial block? I tried to add a Virtue Testimonial Carousel widget on the home page, but only the page title of each testimonial is showing. (Currently, I am using another plugin to show some testimonial screenshots, not ideal.)

    Thank you for your help. I tried searching the forum but didn’t find relevant information.
    Keith

    #261775

    Hi,

    I disabled the header and footer of a page, but there’s still an extra space on the top.

    link: thetedellis.com/taylor-swift

    #261774

    Hey Ben

    The Category Page of Africa is now back to the way it was, and I can change the headings, BUT

    Now the links on my posts are not working? Giving error messages (I notice of posts changed)?

    the URL’s for example, click on the link on the post that says destinations with URL

    Suddenly now it gives me an error? No such page

    Not Found

    The requested URL was not found on this server.

    Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.

    This happened to all my URL links? What is going on

    And on top of it all, there is another problem when I click on South Africa, I noticed the URL changed to adventuretravelcoach.com/?p=14870?

    AND when you scroll down – check the sidebar (I chose no sidebar but scroll down and see for yourself –

    AND at the end of the posts – snippets of my posts are showing vertically??

    First, the category Page of Africa changed (Headings changed and gave me no options to correct them). NOW the category Africa page gives me the option BUT there are other issues.
    and I couldn’t change the headings – see for yourself when going onto my site

    #261770

    problem when getting to credit card payment method in mobile the page is not centered doesnt seem to be responsibe can anyone help me?
    after adding product to cart filling form accept the site and getting to credit card payment it looks to be on the right and not centeres i attach picture. i dont know if the problem is with the plugin or with the top of it with the details

    #261762
    This reply has been marked as private.
    #261757

    Hello, I downloaded the Ascend – Premium theme with the agency demo. I cannot modify the agency’s home page. I downloaded siteorigin and activated for all types of articles but it does not work. Every time I click on “edit page” I have the Gutenberg page that I don’t want to use.

    Thank you for your help

    #261754

    Ben,

    The latest ascend theme update seems to have broken the sticky menu with shrink header on. We have our header height set to 200px in the theme settings and with the sticky menu and shrink settings set to a height of 100px.

    If you look at the site you will see in the inspector that this code div class=”kad-header-flex kad-header-height” style=”height: 100px;

    Is over riding the 200px height settings before any scrolling down on the page.

    Any suggestions on how to fix?

    Thanks
    Jeremy

    In forum: Kadence Theme

    In reply to: preload for rtl css

    #261752

    Hey,
    Preload is used when a component css file can be loaded further down the page. For example the footer css. You use preload and then load the footer css right before the footer HTML. Global and RTL are not component pieces so there is never a reason to preload because they need to load in the head.

    Ben

Viewing 20 results - 5,601 through 5,620 (of 53,646 total)