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: Space between sidebar and header
In forum: Virtue ThemeIn forum: Virtue ThemeHi there.
I recently noticed that a page with template type “Feature-Sidebar” that had no feature image selected and no Feature page type options set was displaying the latest image uploaded to the media library as its feature page header image. Nowhere on the page was this selected.
Is this the default behavior? It’s not a problem for me, as I was able to fix it by selecting a different page template. Just wanted to report it, as it seemed strange.
Thank you
AmyIn forum: Virtue ThemeIn reply to: Possibilities for blog site with Virtue Premium
Hey Costa,
Virtue does not have a function for two sidebars. At least not without creating a custom function in a child theme. What you could do is use a page builder such as Elementor to create a similar layout. If you wanted this layout across your entire site you would have to manually add it to each page.
You can read about different page builders here: https://www.kadencewp.com/recommended-page-builders-for-wordpress/
Let me know if you have more questions regarding this! I would be happy to help get your set up as you’re wanting.Hannah
In forum: Virtue ThemeIn reply to: mobile shop layout and single product page layout
Hey,
1. Unfortunately, there aren’t built-in functions for either of these. You can use css to remove the sidebar from mobile view. Then you can add your sidebar content to your product description and use css and media queries to only show that in mobile. Would that work for you? Let me know and I can help with the css.2. You can remove them with css like this:
.product .product_meta { display: none; }Just paste that into your custom css box in Theme Options > Advanced Settings.
Hannah
In forum: Virtue ThemeIn reply to: Tiny icon behaving badly
Hey!
Yes, that worked perfectly for my footer. The icons look great now. Thanks! 😀
However, there seems to have been a small knock-on effect.
https://www.ckmartialhearts.com/faq/
As you can see in the sidebar, all the icons are now appearing strangely ting. It’s the same footer, but inserted into a sidebar widget.
Is that something you might be able to suggest a fix for, or do I need to contact the widget maker?
In forum: Virtue ThemeHi
I have a client who’s looking for a specific layout for a blog site, and was thinking that virtue would be the right theme to use.
The blog:
– One featured blog entry (most recent) as the front page body content.
– 2 sidebars (one on the left for the index/navigation/other items and one of the right for the most recent posts in date sequence)
– For mobile view The left sidebar to collapse normally for mobile, and the right sidebar to cascade/flow under the featured (most recent) blog entry.Herewith a link in the next message to what the client has requested – let me know if this is possible (especially the left hand navigation tabs)
Regards
Costa
In forum: Virtue Themehttp://www.ezycaresucculents.com.au
Hi again,
1.
i can see that my website when accessed with a mobile automatically rearranges the shop page so that the products comes first and the side bar comes at the end.
a) how do make it so that the sidebar comes first?
b) can i make a separate sidebar just for the mobile devices?
2.
on the products page there is SKU, Catergory and tags displayed small near the bottom. how do remove all 3?
Thanks,
In forum: Membership ForumsHi
URL: *Login to see link
I’ve added brands to products and I would like to filter to brands – to this extent I have added the Product List: Product Brands widget to my sidebar (please see *Login to see link to view the sidebar). Unfortunately when a brand is clicked the link takes you to a 404 – please see:
as an example.
I would like this widget to work and I also need to post a link to a brand on another of my sites. I haven’t changed any of the defaults within the Woo Extras Brands settings.
Grateful for help.
Thanks, Bruce
In forum: Pinnacle ThemeIn reply to: Sidebar with sibling pages?
August 1, 2018 at 4:20 pm #197620Your sidebar is simply hidden behind the fullwidth header image you are adding at the top of your page. You can’t add a fullwidth image that that would sit on top of your sidebar.
If you want a layout like this simply turn off the sidebar. Add a two column section below the fullwidth row and place your menu in thr right column and your content in the left.
Ben
In forum: Pinnacle ThemeIn reply to: Sidebar with sibling pages?
You can create a separate menu from Appearance > Menus with only the sibling pages as menu items. Then create a new sidebar from Theme Options > Misc Settings. Then navigate to Appearance > Widgets and add a custom menu widget to your new sidebar and select your new menu. Then assign that sidebar to your specific pages. Would that work for you?
Hannah
In forum: Virtue ThemeHi,
I have updated my own products categories, and deleted your template product categories from woocommerce categories section.
However, there are two product categories (mens, womens) looks been deleted but in fact, they are not. When i put the “product categories” widget at the Shop sidebar, these two deleted categories shows up in my categories menu. When I click on it, mens for example, it gives me the error like this one:
Catchable fatal error: Object of class WP_Error could not be converted to string in /home1/nl8s007yl/healthbeautystore.co.uk/wp-content/themes/virtue_premium/lib/breadcrumbs.php on line 312
You can find the problem from my website: *Login to see link select a category, click on womans, then you will see the error above.
Could you please help me to sort out this problem?
thank you so much!
In forum: Pinnacle ThemeIn reply to: Sidebar with sibling pages?
Thanks, yes that makes sense, but that’s not quite the issue. I’m able to get a sidebar to display on my pages, but I want to be able to populate it with sibling pages only. So for our site (saintmarks.ecwwblog.org), for example under “ABOUT” I would want the page for “Who We Are” to have “History, Become a Member, Clergy” etc. as the menu options on that sidebar. Is there a way to do this?
Thanks!
LizIn forum: Ascend ThemeIn reply to: Monthly archive of a single category
Hello,
You can add an Ascend: post grid widget to your sidebar and set it up to only show a certain category within the widget settings.
Another option would be to add the posts via shortcode like this:
[blog_posts type="grid" orderby="date" items="4" cat="photos"]Just replace the “cat” with whatever category you want to display, and paste the shortcode into a text widget within your sidebar.
More shortcode options can be found here:
http://docs.kadencethemes.com/ascend-premium/shortcodes/Let me know if that works for you.
-Kevin
In forum: Ascend ThemeHi!
Is there a way to have a monthly archive that only displays the articles of a single category? I’d like to make that happen in the sidebar of a blog page that only shows articles belonging to one category, but the default archive widget only seems to list every article in the entire website. Any ideas?Thanks!
In forum: Ascend ThemeIn reply to: Issues with “homegrown” sidebar
July 30, 2018 at 9:31 am #197351Hey,
1. You have to target the content not a sidebar since their height is not the height you want. You want the content height so you must target the content like we did with the left side. css like this:
@media (min-width: 992px) { #content .main.kt-sidebar { position:relative; } #content .main.kt-sidebar:after { border-right: 2px solid #e8e8e8; content:''; height:100%; position:absolute; display:block; top:0; right: 31%; } }2. because of forcing in the sidebar you just have to set the min height of your content to match the height of your second sidebar. If you ever add more to the sidebar you will need to increase this min height:
@media (min-width: 992px) { #content .main.kt-sidebar { min-height:820px; } }Ben
In forum: Ascend ThemeIn reply to: Issues with “homegrown” sidebar
In forum: Ascend ThemeBen helped me configure a right sidebar using a child theme so I could use 2 sidebars on that site. To be fair, he make it clear that customizations could be iffy. I have one question relating to customizing things a bit, but the other is related to quirky behavior.
First, the site is HERE.
I’m trying to add a vertical divider line that runs the full length of the content area using code similar to what I use for the standard left sidebar, but the divider only extends as far as this “artificial” right sidebar. Here’s the CSS I’m using:
@media (min-width: 992px){
#content #ktsidebar-second {
border-left: 2px solid #e8e8e8;
}
}Not sure if there’s anything we can do about that given the nature of the best.
The 2nd problem, however, can be seen if you visit the Membership page HERE.
In situations where the page content is shorter than this right sidebar, the sidebar goes busting through the footer and the bottom of the page. I’m hoping we can do something about that other than padding out the content.
Thanks for any help!
In forum: Pinnacle ThemeIn reply to: Sidebar with sibling pages?
In forum: Pinnacle ThemeTopic: Sidebar with sibling pages?
-
AuthorSearch Results


