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: Membership Forums
Hello,
There really isn’t a way to directly duplicate page builder content into the block editor. I recommend just leaving the old posts built page builder alone, and then using the block editor on your new posts.
Other than that, I believe you would have to manually transfer all of the content to the new builder.
-Kevin
March 6, 2019 at 3:25 pm #218858Greetings, I have several sites I’m working on that mostly were assembled using siteorigin’s pagebuilder plugin. Now I want to use Blocks and Gutenberg, which works great for new pages and posts, but when I need to edit existing posts or content that was made using pagebuilder, I need to go reconfigure everything to open that up. Any good process defined for migrating existing content to the newer system?
Thanks,
ChrisIn forum: Ascend ThemeMarch 6, 2019 at 2:58 pm #218852The template is already showing the same, the difference is the sidebar side and the sidebar assigned.
In a child theme you can add a function like this:
add_filter( 'kadence_sidebar_id', 'custom_sidebar_woo_tax' ); function custom_sidebar_woo_tax( $sidebar ) { if ( is_tax( 'prints' ) || is_tax( 'pa_tamanho' ) ) { $sidebar = 'sidebar1'; } return $sidebar; }Just change the sidebar1 to the id of the sidebar you want to use.
Then if you want to change the side the sidebar is on when viewing the page you can use a similar filter:
add_filter( 'kadence_sidebar_side', 'custom_sidebar_side_woo_tax' ); function custom_sidebar_side_woo_tax( $side ) { if ( is_tax( 'prints' ) || is_tax( 'pa_tamanho' ) ) { $side = 'left'; } return $side; }Ben
In forum: Membership ForumsTopic: Hide duplicated 2nd title
How do I hide the title that is duplicated for these pages? Want to keep the title in the header area but not in the other one. Here is one example:
In forum: Virtue ThemeIn reply to: close accordian widget; center text in row
In forum: Pinnacle ThemeIn forum: Pinnacle ThemeTopic: Center Logo On Homepage only
In forum: Virtue ThemeIn reply to: Virtue Blog Grid template featured image size
This isn’t possible, simply because there isn’t enough room on the page to have images that wide. The columns would not be able to disperse evenly if the image size was increased that much.
If you want wider images, you can reduce the amount of columns. Would that work for you?
-Kevin
In forum: Virtue ThemeIn reply to: How to add text to home page, where is it?
Hey,
Enabling Page Content in the homepage layout manager will either pull your latest posts onto the page or your static page content. You can determine which shows from Settings > Reading. If you choose a static page, you can create a new page and call it home, or whatever you want, then choose that page from Settings > Reading. You could also add text to your homepage by enabling the home widget area in the homepage layout manager (settings > reading) and adding a visual editor or text widget from Appearance > Widgets.
Hope that’s helpful!Hannah
In forum: Virtue ThemeHey,
This will adjust your header:@media (min-width: 992px) { .col-md-4.clearfix.kad-header-left { width: 66%; } .col-md-8.kad-header-widget { width: 33%; } }This css will remove the page header border from your homepage:
.home .page-header { border: 0; }You can paste those into your custom css box in Theme Options > Advanced Settings.
Hannah
In forum: Virtue ThemeHello,
I am renewing my site, and cannot figure out how to add text to the home page.
Homepage Layout Manager
Organize how you want the layout to appear on the homepageI can see there is a block for “Page content” but where can I edit this content?
I would like to have the structure as here:
*Login to see linkthank you,
UllaIn my page: *Login to see link
I want to give more space to the logo area. now it gives 8/12 to the widget area ande just 4’12 to the logo area. I would like to give 8/12 to the logo area and 4/12 to the widget area.Also, when I upgraded from the virtue free theme there has appeared two narrow lines below de header. How can I remove them?
Thank you in advance.In forum: Ascend ThemeIn reply to: Extra widget in Home Page
Hi Simon,
There isn’t a built-in function to add another widget area to the homepage layout manager, but you could set your home page as a static page and add widgets to your static homepage through a page builder plugin such as Elementor or Page Builder by Siteorigin. With either of those plugins you could add widgets to any of your pages.
Hope that’s helpful!Hannah
In forum: Virtue ThemeIn reply to: slug portfolio and portfolio type slug
Hello again,
With items/%category% or without, the URL appears to me in the following way:
domain.com/portfolio/slug of the web page
(example: algo.com/portfolio/corporation-facilities)
(example: algo.com/portfolio/our-team)And I would like it to appear like this:
domain.com/type of portfolio/slug of the web page
(example: algo.com/facilities/corporation-facilities)
(example: algo.com/team/our-team)If you wish, I can pass the link to the page and access data by private.
Thank you!
In forum: Ascend ThemeIn reply to: Extra widget in Home Page
March 6, 2019 at 3:01 am #218758In “Customize -> Widgets” , it says:
“Your theme has 8 other widget areas, but this particular page doesn’t display them. You can navigate to other pages on your site while using the Customizer to view and edit the widgets displayed on those pages.”
But I cannot find any other pages that I can edit?
In forum: Ascend ThemeTopic: Extra widget in Home Page
March 6, 2019 at 1:06 am #218754Kadence, Ascend Theme Premium:
in the Theme Options -> Home Page Layout
Is it possible to manually add an extra widget to this Home Page Layout?I mean, right now, in this Home Page Layout, there are 8 Modules, plus 1 more module that is editable in the “Appearance -> Widgets -> Home Widget Area”. But I cannot add an extra widget to between these modules.
Will that be possible to add an extra widget between these dodules?
Thanks in advance.
Kind regards,
SimonIn forum: Ascend ThemeIn forum: Ascend ThemeHi Kadence Team,
I created custom taxonomies for woocommerce products and I’m trying to attribute to them the product archive template from the theme.
I use the following in function.php to add a custom taxonomy to products.
// Register Custom Taxonomy
add_action( 'init', 'pqna_custom_taxonomy_Print' );
function pqna_custom_taxonomy_Print() {
$labels = array(
'name' => 'Prints',
'singular_name' => 'Print',
'menu_name' => 'Prints',
'all_items' => 'All Prints',
'parent_item' => 'Parent Print',
'parent_item_colon' => 'Parent Print:',
'new_item_name' => 'New Print Name',
'add_new_item' => 'Add New Print',
'edit_item' => 'Edit Print',
'update_item' => 'Update Print',
'separate_items_with_commas' => 'Separate Print with commas',
'search_items' => 'Search Prints',
'add_or_remove_items' => 'Add or remove Prints',
'choose_from_most_used' => 'Choose from the most used Prints',
);
$args = array(
'labels' => $labels,
'hierarchical' => true,
'public' => true,
'show_ui' => true,
'show_admin_column' => true,
'show_in_nav_menus' => true,
'show_tagcloud' => true,
);
register_taxonomy( 'prints', 'product', $args );
register_taxonomy_for_object_type( 'prints', 'product' );
}To theme the custom taxonomy “Prints” I had a try copying archive-product.php from ascend_premium/woocommerce and renaming it to taxonomy-prints.php and place it into child theme at different places, but without success.
I also had a try following the woocomemrce documentation, but without success.
Using custom attributes in menus and taxonomy archives
*Login to see linkPlease help!
I will send the site link in a separate private post.
Thanks
HugoIn forum: Pinnacle ThemeIn reply to: Breadcrumbs and other questions
Yeah! I think that’s a good method.
The CSS for the breadcrumb styling looks like this:
span.kad-breadcurrent { display: inline-block; padding: 0 0 0 20px !important; margin: 0 5px 10px -2px; height: 24px; line-height: 24px; position: relative; background: #459686; color: white; } span.kad-breadcurrent:after { border-color: transparent transparent transparent #459686 !important; position: absolute; top: 0; content: ''; left: 100%; width: 0; height: 0; border-style: solid; border-width: 12px 0 12px 12px; border-color: transparent transparent transparent rgba(222, 229, 231, 0.72); z-index: 2; } span.kad-breadcurrent:before { position: absolute; top: 0; content: ''; left: 0; width: 0; height: 0; border-style: solid; border-width: 12px 0 12px 12px; border-color: transparent transparent transparent #fafafa; z-index: 1; } .kt-breadcrumb-container span { position: relative; left: 3px; } .kt-breadcrumb-container span a { color: rgba(0, 0, 0, 0.5); background: rgba(222, 229, 231, 0.72); display: inline-block; padding: 0 0 0 20px; margin: 0 5px 10px -2px; height: 24px; line-height: 24px; position: relative; padding-left: 5px; } .kt-breadcrumb-container span a:after { position: absolute; top: 0; content: ''; left: 100%; width: 0; height: 0; border-style: solid; border-width: 12px 0 12px 12px; border-color: transparent transparent transparent rgba(222, 229, 231, 0.72); z-index: 2; } .kt-breadcrumb-container span a:before { position: absolute; top: 0; content: ''; left: 0; width: 0; height: 0; border-style: solid; border-width: 12px 0 12px 12px; border-color: transparent transparent transparent #fafafa; z-index: 1; } .kt-breadcrumb-container span { padding: 5px; } span.bc-delimiter { display: none; } .kt-breadcrumb-container span a { padding-left:20px; margin-right: 5px; } .kt-breadcrumb-container span { padding: 5px 5px 5px 0; } .bc_nomargin #kadbreadcrumbs { padding-bottom: 0; margin-top: 10px; }And the CSS for hiding them is correct, you just need to add the page ID selector.
Let me know if that works for you!
-Kevin
In forum: Pinnacle ThemeIn reply to: Breadcrumbs and other questions
Okay!
Well, I have been thinking… the breadcrumbs on most of my pages are not realy required and the places where they are required are on my blog posts and on the pages we did make this custom breadcrumbs for.
I think it is easy to exclude to show breadcrumbs on particular pages with css right? (if not, than my following plan won’t work 🙂 )
Then I think it is indeed the best way to effect all of the breadcrumbs on my site with this layout and exclude the pages I don’t want to have breadcrumbs!
This means I need two things.
1. A new CSS to have this breadcrumb layout for all pages
2. And what CSS should I use to exclude to show breadcrumbs on particular pages?something like this?
.page-id-344 #kadbreadcrumbs {
display: none;
} -
AuthorSearch Results


