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: Virtue ThemeJune 11, 2018 at 3:28 pm #192790
I Updated your function to this:
function kt_custom_child_init() { remove_action( 'woocommerce_above_main_content', 'virtue_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()) { virtue_woocommerce_page_title_container(); } } } add_action('init', 'kt_custom_child_init');Your all set.
Ben
In forum: Ascend ThemeIn reply to: Hide footer widget on specific pages
In forum: Virtue ThemeIn reply to: Disable sidebar
June 11, 2018 at 12:03 pm #192778A “courses” page is different from a “topic” page. Before we go any further please make sure you link to each post type you want to change.
Courses would use css like this:
.single-sfwd-courses #ktsidebar { display: none; } .single-sfwd-courses #ktmain { width:100%; }I’m seeing the page template work fine. You didn’t have it set for the page you linked to. You were setting the wrong thing. The settings for this plugin: Cpt custom page template. I don’t suggest you use that plugin. But regardless if you want to set a page title you must use the correct page attributes settings.
Ben
In forum: Virtue ThemeIn reply to: Disable sidebar
It’s not working for this page in the course: https://www.priceaction.com.br/courses/al-brooks-price-action-best-trades/
When I try to make a new landing page, it’s not working either. Example: https://www.priceaction.com.br/teste-jogar-fora/
Thank you,
FelippeIn forum: Ascend ThemeJune 11, 2018 at 11:43 am #192774For the loop you will have to override the file in your child theme/templates/content-loop-portfolio.php
between line 150 and 151 add:
<?php $tags = get_the_tags( $post->ID, 'portfolio-tag' ); if ( $tags && ! is_wp_error( $tags ) ) {?> <div class="portfolio-loop-types portfolio-loop-tags"> <?php $output = array(); foreach($tags as $tag){ $output[] = $tag->name; } echo implode(' | ', $output); ?> </div> <?php } ?>For the single portfolio page add this in your fucntions.php file:
add_action('kadence_single_portfolio_footer', 'custom_add_single_portfolio_tags'); function custom_add_single_portfolio_tags() { $tag_terms = get_the_terms( $post->ID, 'portfolio-tag' ); if ( $tag_terms && ! is_wp_error( $tag_terms ) ) {?> <div class="kt-portfolio-tags pdetails"><span class="portfoliotags"><i class="icon-tag"></i> </span> <?php echo get_the_term_list( $post->ID,'portfolio-tag','',', ','') ?> </div> <?php } }In forum: Virtue ThemeIn reply to: Disable sidebar
June 11, 2018 at 11:33 am #192772I’m seeing it work on the course page you linked to.
Are you wanting something else?
In forum: Ascend ThemeIn forum: Virtue ThemeIn reply to: To be BOLD or not.
In forum: Ascend ThemeIn reply to: Hide footer widget on specific pages
In forum: Virtue ThemeIn reply to: Disable sidebar
June 11, 2018 at 9:53 am #192752That follows the default you have set for your blog posts since it’s a post type without its own template (thus in WordPress defaults to blog post template).
So you can set your default but that would affect all your blog post defaults.
Or you can hide the sidebar with css for that post type:
.single-sfwd-topic #ktsidebar { display: none; } .single-sfwd-topic #ktmain { width:100%; }Or you can use a child theme and unhook the sidebar for that post type with a function like this:
function kad_sidebar_on_sfwd_topic_page($sidebar) { if (is_singular('sfwd-topic')) { return false; } return $sidebar; } add_filter('kadence_display_sidebar', 'kad_sidebar_on_sfwd_topic_page');Ben
In forum: Ascend ThemeIn reply to: Building With the Ascend Wanderlust Theme
In forum: Ascend ThemeIn reply to: Building With the Ascend Wanderlust Theme
Sorry, turns out I am in the wrong regarding the home page header in Ascend. Working too fast and not paying attention to detail…my apologies!!! The Ascend Demo is actually not using a slider at all. Ben explained this above. So from Theme Options > Home Page Header you would set the page header to Shortcode Entry, but no shortcode actually added. Then in your static homepage add your background image to your first page builder row.
Again, I apologize for adding more confusion to this! I hope this has cleared it up a bit. Let us know if you have further questions in setting this up!Hannah
In forum: Virtue ThemeIn reply to: Spacing Below The Sticky Header
June 11, 2018 at 9:36 am #192747This is browser specific accessibility code that highlights what is focused. For users that don’t have a mouse and tab through the page it tells them where they. It’s usually not recommended to remove since it’s for accessibility but you can force it away with css like this:
a:focus, button:focus, a, button, .kad-navbtn { outline: none; box-shaddow:none; -webkit-tap-highlight-color: rgba(255, 255, 255, 0); -webkit-tap-highlight-color: transparent; }Although many people take this opinion about it:
Removing the focus outline is like removing the wheelchair ramp from a school because it doesn’t fit in with the aesthetic.
Ben
In forum: Ascend ThemeIn reply to: Hide footer widget on specific pages
In forum: Ascend ThemeJune 11, 2018 at 9:14 am #192737In what order in the portfolio loop. and where on the single portfolio pages?
Ben
In forum: Ascend ThemeIn reply to: price table background color
In forum: Ascend ThemeIn reply to: Hide footer widget on specific pages
In forum: Ascend ThemeIn reply to: Page Titles
In forum: Virtue ThemeIn reply to: Alternative post and portfolio grid on the Hompage
June 11, 2018 at 9:05 am #192728Are you wanting the posts to be full-screen width?
How are you adding the post to page. It’s probably best that you wait till you are on a live server and we can give you css specific to your site.
Ben
In forum: Ascend ThemeTopic: Page Titles
-
AuthorSearch Results


