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 ThemeIn forum: Virtue Theme
In reply to: How to integrate premium theme with exsisting theme?
In forum: Virtue ThemeIn reply to: > Symbol at top of page
Hi Ben,
The only thing i edited in the was the sidebar.php file but i ended up changing it back to default. This is the content in the current sidebar. Do you have any idea of what this could be?
Thanks for the quick response,
Kelley
class Kadence_Sidebar {
private $conditionals;
private $templates;public $display = true;
function __construct($conditionals = array(), $templates = array()) {
$this->conditionals = $conditionals;
$this->templates = $templates;$conditionals = array_map(array($this, ‘check_conditional_tag’), $this->conditionals);
$templates = array_map(array($this, ‘check_page_template’), $this->templates);if (in_array(true, $conditionals) || in_array(true, $templates)) {
$this->display = false;
}
}private function check_conditional_tag($conditional_tag) {
if (is_array($conditional_tag)) {
return call_user_func_array($conditional_tag[0], $conditional_tag[1]);
} else {
return $conditional_tag();
}
}private function check_page_template($page_template) {
return is_page_template($page_template);
}
}In forum: Virtue ThemeIn reply to: Product SEO and sidebar
February 12, 2014 at 6:46 pm #4532Hey Michael,
Yeah I’ll add a default product sidebar, next update.As for seo you should really use a more advanced seo option like Yoasts SEO plugin. The theme seo options where meant to be pretty basic but for shops you need to get the more advanced settings that seo plugins have.
Ben
In forum: Virtue ThemeTopic: Product SEO and sidebar
Hi Ben,
I’m testing WooCommerce and I’ve hit two issues with products.
First, could you maybe include a way to choose the sidebar for all products in Virtue Settings (like for the shop and the categories)? By default it takes the main sidebar of the website, which is different and I have to manually change it on all products.
Second, why isn’t there SEO options in the product page? I would love to be able to change the title and description of each product page.
Thank you!
Michael
In forum: Virtue ThemeTopic: Sidebar pushed down
In forum: Virtue ThemeIn reply to: Emergency Help!!
Thank you, I will follow Twitter for now.
Updated and all is back to normal, though Woo got rid of the Featured Products Widget which I really liked.
And, when I updated Woo, it got rid of all my widgets in the sidebar, I had to reset all of them, something to keep in mind for those that are updating.
In forum: Virtue ThemeIn reply to: Moving Sidebars to Left Side
February 11, 2014 at 9:18 am #4406This can’t be done with css, you would have to change the file structure. It’s in the base.php file you would need to move the call for a sidebar above the call for content.
This isn’t the norm for mobile layouts, thats a lot of scrolling to get to content. If you are just wanting a widget to show above your content use can use a plugin to add a widget area to your site with a shortcode then hide it unless the viewer is on mobile…
Ben
In forum: Virtue ThemeIn forum: Virtue ThemeIn reply to: Moving Sidebars to Left Side
Hey Ben,
I was wondering if you can do the same in changing the placement of the sidebar in the mobile version. So when I view the desktop the sidebar is on the left because i float the .main to the right. But in the mobile version, I would like the sidebar to appear first before the .main. How would I do that for the CSS?
Thanks,
VinIn forum: Virtue ThemeIn reply to: When there are several ways to style a thing
February 10, 2014 at 11:24 am #4327Ok, Let me try and make sense of this.
For your blog page with no sidebar create a blog page by following this tutorial : https://www.kadencewp.com/creating-a-blog-page-with-virtue/
The to make the archive and category pages have sidebar set the option like you did in the theme options for BlogCategory/ArchiveDefaults
To create more sidebars there is a place in the misc settings of the theme options to add more.
This refers to the single post page: ThemeOptions/BlogOptions/BlogPostDefaults/BlogPostSidebarDefault so doesn’t effect the pages that show more than one blog post.
Ben
In forum: Virtue ThemeThat’s when I get anxious. Here’s an example about sidebar:
Thanks for your very good tip/warning:
at Settings/Reading/FrontPageDisplay: Leave Posts page option Unselected because if you select it you’ll get the Primary Sidebar. (which I don’t want)
But also there is:
Appearance/Customize/StaticFrontPage. I presume I’ll want to leave that Post page unselected also.
And there is ThemeOptions/BlogOptions/BlogPostDefaults.
I want to have a front page for my blog that has all the posts in that lovely infinite scroll, but No Sidebar. But on the subsequent clicks or possible views (More, Categories, Monthly Archives) I do want the sidebar.
So at ThemeOptions/BlogOptions/BlogPostDefaults/BlogPostSidebarDefault — I choose No.
But I read in that name there, ‘blogpost’ so not sure, because I consider my selection to do with the Archive of all, my blog entry page, which is not my home page or my front page. Am I aiming for something not possible?
And below, BlogCategory/ArchiveDefaults I choose With Sidebar graphic. And I guess the Primary Sidebar is the one to choose. You don’t get to create other Sidebars, other than HomeWidgetArea. (He’ll be handy for putting a Log-out widget.)I’m still confused about which template gets called: which Dashbd/Page/Page Attribute Template matches up with which php template residing in the directory folder(s). If I knew what to look for, or where to look when I use Firebug. I’ve read about the template hierarchy, but I just don’t see template calls… Still learning.
I see something today I never noticed before: In Appearance/Editor on the right side above all the templates listed there, there’s a pulldown menu to choose which theme you want to edit. The provides a nice bath for copy&paste from the Virtue theme to the Child theme. I’ll work with that today, see if I mess things up!
In forum: Virtue ThemeIn reply to: Virtue Primume help
Hi Ben,
i am realy having trubel with that Ajax filter.
is thear any docemention on that? i looked on it site, didnt fined any.
my issue is that when i chose it to fo on the sidebar, it let me chose the attrabuts( the sub attrabuts) and not the catagorys.
i wish that evry product sub catagory will have a boutton, just like the Demo.
how can i create that attrabute that will be conected to that subcatagory product?
like kites, boards, bars…
and i dont wont that filter above the products. only at the sidebar.
please gide me.
thank youIn forum: Virtue ThemeIn reply to: Change Category font size or column width
February 6, 2014 at 12:58 pm #4152Hmm you have a couple options,
In the theme options you can make the whole site thinner. By limiting the max width to 980px. That will remove some white space or you can use this css to adjust the width of the sidebar and main content.
@media (min-width: 1200px) { .main {width: 66.66666666666666%;} aside.col-lg-3 {width: 33.33333333333333%;} }Ben
In forum: Virtue ThemeIn reply to: Change Category font size or column width
February 6, 2014 at 12:40 pm #4149One way to do it is by adding this to your custom css in the theme options > advanced settings :
.sidebar .widget_categories li a { display: inline-block; }Let me know if that is what you were thinking.
Ben
In forum: Virtue ThemeHi,
I have “Category” in the Primary Sidebar – but the look is not nice (http://arminstravels(dot)com)
How can I change the font size to have the category (including the number of posts) fit into 1 line?
How can I set the right column larger – will this make appear everything in 1 line?Thanks,
ArminIn forum: Virtue ThemeIn reply to: Virtue Primume help
February 6, 2014 at 11:53 am #4141Do you have woocommerce installed? You can set a sidebar for the shop page in the theme options. There is options to choose a sidebar for that page. You can create widget areas in the misc settings of the theme options.
As for the ajax filter, that is this plugin, it uses attributes.
http://wordpress.org/plugins/yith-woocommerce-ajax-navigation/
Ben
In forum: Virtue ThemeTopic: Virtue Primume help
Hi,
i updated the primume theam, and i love the shop page design.
how do i create a shop page like in the demo?
how do i create a spetial sidebar? and place it in the ship page?
how do i create the buttons catagoris in the side bar under the search?
i meen like this : *Login to see link
ThanksIn forum: Virtue ThemeTopic: Moving Sidebars to Left Side
In forum: Virtue ThemeHi Ben, after I run a search using a filter the results page shows without the sidebar despite i’ve set standard sidebar in the template options.
pls have a look at *Login to see link and select “road bikes itineraries” with the filter on the sidebar… the results page will be a full with one -
AuthorSearch Results


