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
Topic: Limiting Scope of Search
February 3, 2015 at 10:43 pm #29686Hello,
I would like to ad a blog to my website and I want to include a Search in the sidebar. Is it possible to limit the search feature to just the blog/blog posts instead of also pulling in results from other parts of the website?
Thank you
In forum: Virtue ThemeIn reply to: Changing position on shop page
I know it is redundant but I think it would be more intuitive to people to navigate the shop from the same area once they arrive to that page. Just like the tabs that are already created (by WooCommerce I assume), unfortunately those tabs only appear on the main catagory page (which I have chose as my shop landing page). I think I will lose the tabs and just go with my sidebar navigation. In the future I will start a new topic. I chose to post here because her needs were so similar to mine and I wanted you to know that I was searching for answers before posting questions. Thanks for your help,
CoryIn forum: Virtue ThemeIn reply to: Mobile View
February 3, 2015 at 1:15 pm #29629Elisey You have added css that will break the mobile layout:
.col-lg-9 { float: right; }You need to remove. If you want your sidebar on the left use the our recommend css.
https://www.kadencewp.com/frequently-asked-questions/
Ben
In forum: Virtue ThemeIn reply to: Virtue Post Grid questions
February 3, 2015 at 1:07 pm #29626Hey,
The Virtue Post Grid widget is only designed for sidebars and footer widget areas, the images are auto cropped at 80x50px. There isn’t any control.They are the latest posts (not your latest images) that have a featured image. If a post doesn’t have a feature image then it won’t show. Also you shouldn’t be using esp files as a featured image.
I suggest creating your own widget if you want to do the latest uploads. or you can use something like the virtue gallery widget and manually update.
Ben
In forum: Virtue ThemeTopic: Unwanted PHP end tag
In forum: Virtue ThemeIn reply to: Changing position on shop page
And a follow up. I just realized that my tabs on my shop page already had an “All” tab but the categories in the sidebar did not. adding the “All Products” category added it to the sidebar but now I have two “All” tabs on my shop page (an “All” and and “All Products”). I would like only one in each. I want the side bar to act like the tabs on my shop page. I know it is redundant on the shop page but the tabs do not show up on any other page as you shop around, Thus the sidebar nav. I guess I could get rid of the tabs altogether and just have the sidebar to navigate categories. Is there an easy answer to my issue or better to just get rid of tabs on shop page?
In forum: Virtue ThemeIn reply to: Changing position on shop page
This is very close to my needs. I need to sort the product categories. I have a sidebar in my shop with a list of categories. One category I created was “All Products” I would like that to be the top category in the list, then albums, then apparel, and lastly accessories. Right now it is alphabetical listing. Not the end of the world but an aesthetic I would like to change. If there is no simple answer, feel free to move on to someone else’s more important question. Thanks so much
http://jackassflats.net/?post_type=productIn forum: Virtue ThemeIn reply to: Sidebar on Portfolio Grid
February 2, 2015 at 9:39 pm #29548Hey, Your missing the purpose of my function. Yours adds the sidebar, mine tells which sidebar to use. You would use both.
The filter isn’t an ajax filter (fyi) but it is a filter and you can have it with the shortcode:
[portfolio_posts columns="4" items="10" filter="true"]With the function I posted you can change to set a custom sidebar for portfolio posts too, just have to change what the “if” is for.
add_filter('kadence_sidebar_id', 'psingle_sidebar_id'); function psingle_sidebar_id($sidebar) { if (is_singular('portfolio')) { return 'sidebar2'; } return $sidebar; }So no I’m not saying you can’t have a custom sidebar on anything in the site. I’m saying there is a built in filter for it and here is how to use it.
A plugin is something to consider, this isn’t as higher requested as you might think, especially as I’ve made it pretty easy to hook into with a function and I’ve made sure the css won’t freak out if your using a sidebar on a post that was designed to be full-width. all you need to to create the sidebar in your misc settings of the theme options then add that name into the functions and your done.
Ben
In forum: Virtue ThemeIn reply to: Sidebar on Portfolio Grid
Ben, if you read my post – I wrote almost the same function..
I read all the topic. And you say nothing new.shortcode is not solution (what about ajax filters in that way? and custom sidebar at portfolio posts?) (I want drink, you offer to eat)
so, you say there is no way to use custom sidebar on portfolio-grid and portfolio-post?
why this is a problem – to use custom sidebar all-over the site, at any page we want? (don’t ask why we want this)
and what about my other questions? updating the theme, making plugin?In forum: Virtue ThemeIn reply to: Sidebar on Portfolio Grid
February 2, 2015 at 5:05 pm #29534Elisey,
You can use the portfolio shortcodes on any page. So say you want to show the grid with a sidebar you can use a sidebar template then add your portfolio shortcode in the page content:[portfolio_posts columns="4" items="10"]http://docs.kadencethemes.com/virtue/#shortcodes
If you really want to use the portfolio grid page (where you can’t select a custom sidebar you can use a function for it:
add_filter('kadence_sidebar_id', 'pgrid_sidebar_id'); function pgrid_sidebar_id($sidebar) { if (is_page_template('page-portfolio.php')) { return 'sidebar2'; } return $sidebar; }Ben
In forum: Virtue ThemeIn reply to: Sidebar on Portfolio Grid
Hello, Ben!
I’m a new customer of Virtue Preium.
haven’t php and css skills (work with webmaster).Your code works. but how to use custom sidebar?
Add this code to use sidebar on portfolio-grid (I’m not a programmer, I just LOOK at your two codes)
function kad_sidebar_on_portfolio_grid($sidebar) { if (is_page_template('page-portfolio.php')) { return true; } return $sidebar; } add_filter('kadence_display_sidebar', 'kad_sidebar_on_portfolio_grid');I really need to use custom sidebar on portfolio-grid and portfolio-page (and testimonials-grid/page).
It is very strange to me there is no option to use sidebar and choose which one to use.How I may see, I’m not alone in my wishes.
I have child theme. May be, you make some plugin or update for theme? with on/off sidebar option for ALL pages, grids and templates. (sorry, I hope you understand what I mean. I really haven’t skill to describe correctly). and option to choose custom sidebar.
And please!! Make option to make independent portfolios!!! I try to make with pages and parent-child portfolio types.
It works ugly, or cut some functionality.I think, it is not last question :))
my project (construction in progress)
http://www.vesssna.com if you interesting.
Wedding Workshop with huge catalog (woocommerce).sorry for my bad english.
In forum: Virtue ThemeIn reply to: Sidebar on bbpress startpage
February 2, 2015 at 1:59 pm #29511Because it’s an archive page and you’ve turned the sidebar off for your blog archive pages it’s turned off for your forum archive pages.
You can use this function to make it show on the forum archive page.
add_filter('kadence_display_sidebar', 'bbpress_sidebar'); function bbpress_sidebar($sidebar) { if (is_post_type_archive('forum')) { return true; } return $sidebar; }Ben
In forum: Virtue ThemeIn reply to: Text only page / sidebar primary / Line title
February 2, 2015 at 1:34 pm #295031. You linked to a single product. But your saying pages. Can you clarify?
Also I don’t understand what you mean here: “a formula should not take each page hand”2. A product short description and full description should be separate. Not the same thing. But if you want to hide the short description on your single product pages you can use this css:
div.product .short_description { display: none; }3. You can use this css:
#ktsidebar { border: 1px solid #eee; }Ben
In forum: Virtue ThemeIn reply to: Sidebar on bbpress startpage
Hi Hannah,
I tried alle virtue page templates with sidebar (standard, sidebar and even feature sidebar), but none shows a sidebar on the forum startpage.
My problem is, that bbpress has no sidebar settings at all. So where can there be a conflict…?Thanks
MatthiasIn forum: Virtue ThemeIn reply to: Sidebar on bbpress startpage
In forum: Virtue ThemeTopic: Sidebar on bbpress startpage
Hi Hannah and Ben,
I can not show the sidebar on the bbpress startpage (see link below).
The Sidebar appears on all subpages!?
I thought I just have to choose a virtue template with sidebar for the forum page an it will display it.
Do I miss something?
*Login to see linkThanks
MatthiasIn forum: Virtue ThemeFebruary 2, 2015 at 11:35 am #29480Hi Ben
I’ve got two things to do:1. I would like to put a text in all pages (single page) above the title above Related products (eg Linck: mobilexgrup.ro/produs/mobila-comoda-adelaide/), if possible, a formula should not take each page hand.
2. On the products under each title’d like to Aiva product line (eg Linck: mobilexgrup.ro/categorie-produs/mobila-comode/), I put a line short description of the product, but the single page is doubled .
3. The primary sidebar if it is possible to aive a 1 pixel border.Thanks for the help
In forum: Virtue ThemeIn reply to: Missing Sidebars in Shop
February 1, 2015 at 12:47 am #29364Hey,
Just so you know the theme has the option to create custom sidebars. Go to theme options > misc settings.Ben
In forum: Virtue ThemeIn reply to: Missing Sidebars in Shop
In forum: Virtue ThemeTopic: Missing Sidebars in Shop
Hello!
I want to show a sidebar throughout the shop on this site, and I cannot make it appear.
I have set sidebar to appear in Theme Options >> Shop Settings, and I have created a special sidebar for the Shop using the WooSidebars plugin, and ticked all the proper boxes there. I could swear we had the the sidebar appearing properly at one time. What am I doing wrong?
Thanks for your help!
-
AuthorSearch Results


