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 'sidebar'
-
AuthorSearch Results
-
In forum: Virtue Theme
In reply to: Removing Latest Posts and Comments
In forum: Virtue ThemeIn reply to: Removing Latest Posts and Comments
Hi Edwin,
You can use a fullwidth page template which will remove the sidebar.
You can use css to center your page title. Just paste this into your custom css box in Theme Options > Advanced Settings:.page-header h1 { text-align: center; }Hope that helps!
Hannah
In forum: Virtue ThemeIn reply to: border images around body, footer, and widget areas
May 24, 2016 at 5:48 pm #96398ok, yikes, are you planing to add the menu and a background to the body?
Your adding css into the main class like this:
.main {
width: 100%;
padding-left: 55px;
padding-right: 15px;
}Thats really not good for tablet.
for the .sidebar .widget css I would suggest making the padding an even 20px not what you have.
I’m a little confused as to where you are stuck though? You can target the footer with
#containerfooterBen
In forum: Virtue ThemeIn reply to: Cloning edit post screen into CPT
May 24, 2016 at 5:36 pm #96397Yeah you would just add this to the above:
$meta_boxes[] = array( 'id' => 'post_metabox', 'title' => __("Post Options", 'virtue'), 'pages' => array( 'post',), // Post type 'context' => 'normal', 'priority' => 'high', 'show_names' => true, // Show field names on the left 'fields' => array( array( 'name' => __('Display Sidebar?', 'virtue'), 'desc' => __('Choose if layout is fullwidth or sidebar', 'virtue'), 'id' => $prefix . 'post_sidebar', 'type' => 'select', 'options' => array( array( 'name' => __('Default', 'virtue'), 'value' => 'default', ), array( 'name' => __('Yes', 'virtue'), 'value' => 'yes', ), array( 'name' => __('No', 'virtue'), 'value' => 'no', ), ), ), array( 'name' => __('Choose Sidebar', 'virtue'), 'desc' => '', 'id' => $prefix . 'sidebar_choice', 'type' => 'imag_select_sidebars', ), array( 'name' => __('Author Info', 'virtue'), 'desc' => __('Display an author info box?', 'virtue'), 'id' => $prefix . 'blog_author', 'type' => 'select', 'options' => array( array( 'name' => __('Default', 'virtue'), 'value' => 'default', ), array( 'name' => __('No', 'virtue'), 'value' => 'no', ), array( 'name' => __('Yes', 'virtue'), 'value' => 'yes', ), ), ), array( 'name' => __('Posts Carousel', 'virtue'), 'desc' => __('Display a carousel with similar or recent posts?', 'virtue'), 'id' => $prefix . 'blog_carousel_similar', 'type' => 'select', 'options' => array( array( 'name' => __('Default', 'virtue'), 'value' => 'default', ), array( 'name' => __('No', 'virtue'), 'value' => 'no', ), array( 'name' => __('Yes - Display Recent Posts', 'virtue'), 'value' => 'recent', ), array( 'name' => __('Yes - Display Similar Posts', 'virtue'), 'value' => 'similar', ) ), ), array( 'name' => __('Carousel Title', 'virtue'), 'desc' => __('ex. Similar Posts', 'virtue'), 'id' => $prefix . 'blog_carousel_title', 'type' => 'text_medium', ), ), );Right before:
return $meta_boxes;Ben
In forum: Virtue ThemeMay 24, 2016 at 2:53 pm #96377It’s not the choose a sidebar option that is only if you have the sidebar enabled.
I am refering to the very first options : “Display a sidebar on the Home Page?”
You need to click on the image with the sidebar.
Ben
In forum: Virtue ThemeTopic: sidebar button widget
In forum: Virtue Themeyes,
theme options > home layout > choose a sidebar for your home page > (selected) primary SidebarIn page editor (home page)
Page attributes > template > (selected) feature-sidebar
sidebar options > (selected) primary SidebarBut still cannot see the widget on home page
In forum: Virtue ThemeMay 24, 2016 at 12:20 pm #96330ok, for the sidebar gallery add this css:
.sidebar .kad-wp-gallery .g_item { width: 33.33%; float: left; }For the home page. In your theme options > home layout. Do you have the sidebar enabled?
Ben
In forum: Virtue ThemeIn forum: Virtue ThemeI’m trying to add images around the body, footer, and widget areas. I want it to look like this site: *Login to see link but to be responsive.
What I have so far (body and widget only yet) isn’t lining up quite right. I’m sure there’s a better way. Can you please help me with this?
BODY
.wrap.contentclass {
background: url(http://…/content-mainbg-top2.png) no-repeat top / contain,
url(http://…/content-mainbg-bottom3.png) no-repeat bottom center / contain,
url(http://…/content-mainbg.jpg) repeat-y 50% 50% / contain;
clear:both;
padding: 50px 10px 20px 10px;
margin: 0 0 20px;
}WIDGET:
.sidebar .widget h3 {
background:transparent url(http://…/widget-heading.png) no-repeat scroll 10px 14px;
display:block;
color: #352014;
font-family: ‘Lato’, sans-serif;
font-size: 22px;
font-weight: bold;
letter-spacing: 1px;
padding: 8px 30px 10px 50px;
}
.sidebar p {
font-size: inherit;
padding: 0 15px 15px 15px;
}.sidebar .widget {
background: url(http://…/sidebar-widget-top3.png) no-repeat top center / contain,
url(http://…/sidebar-widget-bottom4.png) no-repeat bottom center / contain,
url(http://…/sidebar-widget-bg-left1.png) repeat-y left center / auto,
url(http://…/sidebar-widget-bg-right1.png) repeat-y right center / auto;
padding: 50px 10px 20px 10px;
margin: 0 0 20px;
overflow: auto;
}.sidebar section.widget ul li {
background: url(http://…/separator.png) bottom center no-repeat;
}.sidebar section.widget ul li a {
display: block;
background: url(http://…/arrow.png) no-repeat scroll 13px center;
padding: 8px 4px 8px 40px; }FOOTER:
No ideas yet…Thanks again.
In forum: Pinnacle ThemeHi there,
I’m trying to enable a sidebar in Pinnacle, however I’d like for the content to remain centered. Without a sidebar, the main content is perfectly centered. However whenever the sidebar is enabled (on the right), the main content shuffles towards the left and is no longer center. Any help would be greatly appreciated!
In forum: Pinnacle ThemeIn reply to: Easy Digital Download sidebar issue
Hi Ben, thanks for that. I don’t understand your answer unfortunately — I don’t do coding, and I’m not using a child theme as I don’t really need to (and I’m still not 100% sure how to do that without creating a lot of extra work for myself). I was just wondering if there was any CSS I could add to the CSS box that would force any page that’s starting with /downloads/ to use a specific sidebar.
In forum: Pinnacle ThemeIn reply to: Easy Digital Download sidebar issue
Hi Kevin, thanks very much! The main issue is that EDD product “pages” aren’t real “pages” in the sense that you can choose a template for them, add sidebars individually, etc. There isn’t even the option of using the page builder plugin, it doesn’t show up at all (just the visual and text tabs). I have a sidebar I’d like to use, but right now Pinnacle is treating the download items pages as blog posts, so it’s automatically pulling in the primary sidebar. I don’t know how to code, I’m not using a child theme and I’m really not wanting to get into the coding side (as I tried once following a tutorial and broke the site). The only workaround I can see is to create a separate page for each individual item in my shop with Pinnacle, then paste in the EDD download shortcode. But that’s a lot of extra work as I have over 30 individual downloads with extensive descriptions, Yoast SEO info already designated, snippets, etc, and then I’m having to double my work every time I want to add a new download so that’s not an ideal solution.
In forum: Pinnacle ThemeIn reply to: Easy Digital Download sidebar issue
May 23, 2016 at 11:42 am #96193I’m not super familiar with EDD.
Using a child theme though the theme has a function where you can filter the sidebar id using any conditional.
For example:
add_filter('kadence_sidebar_id', 'kt_custom_page_sidebar_id'); function kt_custom_page_sidebar_id($sidebar) { if(is_page('IDGOESHERE') ) { $sidebar = 'SIDEBARSLUGHERE'; } return $sidebar; }Ben
In forum: Pinnacle ThemeIn reply to: Easy Digital Download sidebar issue
Depending on the template that you’re using, you should be able to assign any sidebar that you want to any page that you want.
Are the sidebars that you’re wanting on those pages already created?
If not, I can walk you through the steps of creating them and adding them to the pages you’re wanting.
In forum: Virtue ThemeIn reply to: Sidebar create
May 23, 2016 at 10:16 am #96170You can only have one sidebar per page.
If you need something more then you would need to use pagebuilder: https://www.kadencewp.com/using-page-builder-virtue-premium/
You can create more sidebar options in the theme options > misc settings
Ben
In forum: Virtue ThemeIn reply to: Main background transparency
This reply has been marked as private.May 23, 2016 at 9:15 am #96150In forum: Virtue ThemeTopic: Sidebar create
In forum: Pinnacle ThemeHi guys! I was just wondering if there’s any CSS or settings you could tell me that would allow my EDD /downloads/ pages to use a specific sidebar? Right now those pages are pulling in the primary sidebar and as I can’t use the page builder with those pages, I can’t set them to use the simplified shop sidebar instead. I realize Pinnacle is a WC-compatible theme, but I actually purchased an expensive EDD-theme recently only to find out that Pinnacle’s functionality is still far superior despite the issues with EDD. That’s the only thing I’m really having any issues with, everything else I’ve figured out workarounds for.
Thanks very much!
Dana
In forum: Virtue ThemeHi,
I’m working with the Virtue Premium template and have a few questions:
* I want to enable ‘Comments’ for Pages. I’ve gone to ‘Theme Options’ -> ‘Misc. Settings’ and have toggled ‘Allow Comments on Page’ to on. However, the ‘Leave A Reply’ form still does not appear. Is there something else I have to do?
* For pages using the ‘Feature – Sidebar’ template, is there a way to control the height of the ‘Featured Image’ similar to the Home Page Slider, or do I just have to manually edit the image?
Thanks
-
AuthorSearch Results


