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
Sorry if this has been asked before, I couldn’t find it in the forums. Seems like it should be easy to do.
I would like to have the featured image for each blog post show up on this page. *Login to see link
If I have to take away the sidebar, that is fine. I would also use the blog grid template – but that also doesn’t show the image.
Thanks
Mary LouIn forum: Virtue ThemeIn reply to: Sidebar Position
September 13, 2016 at 2:41 pm #112747Hey,
One option would be to use a plugin like this: https://wordpress.org/plugins/widgets-on-pages/Then add your slider as a shortcode and the shortcode for that widget area right after. That will give you a widget area that you can control above your content.
Another option is just to use pagebuilder. (use a fullwidth feature template) Then in your second row you can add your widgets into a column like you have in your sidebar.
Ben
In forum: Virtue ThemeTopic: Sidebar Position
In forum: Virtue ThemeIn reply to: Create a new sidebar
In forum: Virtue ThemeIn reply to: Left menu in products list
The reason is that you cannot use page builder on product category or single product pages. One viable option would be to make a new sidebar that contains the widget that you want to use. You can generate new sidebars in Theme Options> Misc Settings, and you can assign widgets to them in Appearance> widgets.
The sidebar for your individual products and category pages will be set in Theme Options> Shop Settings, or Theme Options> Product Settings.
Try setting up a new sidebar and enabling the widgets through Appearance> Widgets and let me know if that works for you.
-Kevin
In forum: Virtue ThemeTopic: Create a new sidebar
I think i have seen this option before but there are so many and now i cant find it again.
i want one sidebar for the home page and and other in the blog…
I know where the option for setting the sidebar is, but i cant find the place for creating them and customize them later in the widget area….
thanks in advanceIn forum: Virtue ThemeTopic: Left menu in products list
Hello.
I have a problem. for *Login to see link I’ve got put left menu with PAge Builder but for page *Login to see link is impossible, i can’t, how put in left sidebar widget “Categories of Woocommerce” ??
Thanks
In forum: Virtue ThemeIn forum: Virtue ThemeIn reply to: how to set Featured Image size
In forum: Virtue ThemeIn forum: Virtue ThemeIn reply to: How to mostly blank out sidebar?
September 9, 2016 at 12:04 pm #112255Hey,
So you can create a new sidebar area in your theme options > misc settings. That would allow you to create a sidebar just for your recipes. Or in turn you can create sidebars that you would only show on certain pages.To control the sidebar for your custom post type you would need to use a child theme and in it add a function into the functions.php file.
So if you want to remove the sidebar you can use this function:
function kad_sidebar_recipe($sidebar) { if(is_singular( 'recipe' )) { $sidebar = false; } return $sidebar; } add_filter('kadence_display_sidebar', 'kad_sidebar_recipe');If you want to change the sidebar id that is used for the recipe instead you can make it a new one you create using:
add_filter('kadence_sidebar_id', 'kt_single_recipe_id'); function kt_single_recipe_id($sidebar) { if(is_singular( 'recipe' )) { $sidebar = 'sidebar2'; } return $sidebar; }Ben
In forum: Virtue ThemeIn reply to: How to mostly blank out sidebar?
In forum: Virtue ThemeIn reply to: How to mostly blank out sidebar?
All I’ve been able to figure out so far is how to edit the sidebar widget in admin. Haven’t figured out how to customize the sidebar for a given content type, or how to remove the sidebar from a recipe (which currently uses the content-singlerecipe.php template )
In forum: Virtue ThemeI am building a new site, and recently added a terrific plugin called Cooked. A sample single recipe looks like this:
*Login to see link– I found single.php in the templates directory. I made a copy, and called it: single-cp_recipe.php.
– I edited single-cp_recipe.php: <?php get_template_part('templates/content', 'singlerecipe'); ?>
– In the templates directory, I copied content-single.php, into content-singlerecipe.php, and added the line “This is a recipe” in the footer. I could tell it was accessing this, because the new text appeared.However, now I want to get rid of the sidebar in the recipes, and am seeking guidance on how to do that. I actually don’t want to remove it completely. I wouldn’t mind keeping the search bar, and removing everything else.
(BTW, I’m used to having complete access to my server via SSH, and I’m already affected by being in an SFTP environment… )
My guess is this has something to do with:
kadence_single_post_content_after
But I’m not even sure where to find that…Any guidance on removing or editing the sidebar from a single recipe is welcome.
In forum: Virtue ThemeIn reply to: Centering Sidebar
In forum: Virtue ThemeTopic: Centering Sidebar
Is it possible to center the content on a sidebar? The social icons, search bar, etc. all seem to be aligned to the left which doesn’t look right on my site. I somehow managed to figure it out on my previous blog but cannot seem to do it for the new one.
The blog is: http://www.thetraveltextbook.com
My previous blog (where the sidebar was centred to my liking) is: http://www.backpackersguidetothegalaxy.com
Thank you!
In forum: Virtue ThemeTopic: Parse Error
New to this but tried adding something to the sidebar.php to centre align the sidebar. Now my website is coming up with ”
Parse error: syntax error, unexpected ‘.’ in /home/thetr622/public_html/wp-content/themes/virtue_premium/lib/sidebar.php on line 136″ whenever you click on the url. I also cannot even log into the wp-admin to change the script back because it comes up with the same error.In forum: Virtue ThemeTopic: sidebar width
Hello
My post has 2 columns. The left column is content and the right column is sidebar. I want to change the sidebar width. The left column is 70% and the sidebar is 30%. Can I have the CSS code?Here is the link of my post:
*Login to see link
PeterIn forum: Pinnacle ThemeIn reply to: Pinnacle Premium Questions
September 7, 2016 at 4:15 pm #111914#topbar .container{ width:100%; }That would fix your topbar.
The calendar isn’t a page, as I expalined it’s an archive.
You have two options, both exaplined above and I’ll repost here:
Becuase it defaults back to an archive page as it’s not a real page the template doesn’t really matter. You can set the blog category page to be fullwidth and that would also effect the calendar pages because it’s an archive. (theme options > blog options).
But you can also control this directly with a child theme using this function in your child theme:
function kad_sidebar_events($sidebar) { if(is_archive('events-archive') || is_singular( 'tribe_events' ) || is_singular( 'tribe_organizer')){ $sidebar = false; } return $sidebar; } add_filter('kadence_display_sidebar', 'kad_sidebar_events');In forum: Pinnacle ThemeIn reply to: Pinnacle Premium Questions
I used the change for the top bar. It changed the width to match the header width; as desired. However, the search icon in the top right corner of the top bar got cropped in the middle, top to bottom, flush against the right hand edge. So, that is not looking too good. I have enabled search on the main menu and turned off the top bar for now until I better understand CSS than I do today.
The one thing I have not done yet is work on the calendar page. If this template defaults to full width, which I saw to be the case in another post, than this calendar page should not be displaying a blog type sidebar given that I have selected the default template in the calendar plugin. Is there anything else I should be looking at about this?
Thanks.
John
-
AuthorSearch Results


