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 '
-
AuthorSearch Results
-
In forum: Kadence ThemeIn forum: Ascend Theme
In reply to: How to use siteorigin instead of Gutenberg?
In forum: Ascend ThemeIn reply to: How to use siteorigin instead of Gutenberg?
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!
HannahIn forum: Ascend ThemeIn forum: Virtue ThemeIn reply to: Icons
December 17, 2020 at 9:45 am #261805Hey,
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 ThemeIn reply to: Navigation Bar
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 ThemeIn reply to: Navigation Bar
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,
HannahIn forum: Ascend ThemeHi 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#sctabtab1and you would add that at the end of your page URL. Does this make sense? Let me know if you need further guidance!Best,
HannahIn forum: Ascend ThemeIn reply to: Disappearing page elements
In forum: Membership ForumsIn reply to: Two column accordion
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.
In forum: Ascend ThemeIn reply to: From where to replace a homepage title image
In forum: Virtue ThemeTopic: Testimonial Page & Slider
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.
KeithIn forum: Kadence ThemeIn forum: Ascend ThemeDecember 16, 2020 at 10:20 am #261774Hey 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 *Login to see link
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 siteIn forum: Virtue ThemeDecember 16, 2020 at 2:43 am #261770problem 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 detailsIn forum: Kadence ThemeIn reply to: Disable sticky header on Home page
In forum: Ascend ThemeHello, 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
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
JeremyIn forum: Kadence ThemeIn reply to: preload for rtl css
December 15, 2020 at 4:12 pm #261752Hey,
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
In forum: Ascend ThemeDecember 15, 2020 at 4:00 pm #261749Hi
The amount of space between the logo and the site name on the home page looks fine on a laptop, but is too close on a mobile device. Site is *Login to see link and I’m talking about the padding between the bird logo and the “F” in Flutterby. I’ve tried changing the size of the logo, but that has no effect on that lack of space. Is there a way to increase that on mobile only?Many thanks,
Janice -
AuthorSearch Results



