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: Sidebar colour and padding
In forum: Virtue ThemeIn reply to: Sidebar colour and padding
In forum: Virtue ThemeIn reply to: Sidebar colour and padding
February 9, 2018 at 11:28 am #178592Hey,
It’s fairly tricky to force a background 100% regardless of content size. But here is some css :@media (min-width: 992px){ #content { position: relative; } #content:before { position: absolute; content: ''; width: 30.5%; height: auto; top: -20px; bottom: -30px; right: 15px; background: #f2f2f2; display: block; clear: none; z-index: 0; } aside#ktsidebar { padding: 0 40px; } .main.col-md-12 {z-index: 1;} .main.col-md-12:after { content: ''; background: white; width: 100%; position: absolute; left: 0; top: -20px; bottom: -30px; height: auto; display: block; clear: none; z-index: -1; } } @media (min-width: 1200px){ #content:before { width: 22.5%; } }In forum: Virtue ThemeTopic: Sidebar colour and padding
In forum: Virtue ThemeIn reply to: Adding Custom Sidebar Selection to Quick Edit
Thanks Ben, I can’t get this plugin to work for me… However, in the interim I can say that I was finally able to re-configure the code you gave me in this support thread https://www.kadencewp.com/support-forums/topic/select-different-sidebar-at-each-product-category-top-page/#post-171836 to get the custom sidebars assigned to posts that are tagged in a certain category!
So, now I don’t need to do the Bulk Edit at all to get the right sidebars assigned.
Thank you so much for all you do.
john.
In forum: Virtue ThemeIn reply to: Adding Custom Sidebar Selection to Quick Edit
February 8, 2018 at 11:58 am #178442$GLOBALS['wp_registered_sidebars']can get you an array with all of the sidebars. But it’s a lot more involved than that to put a meta field into the quick edit. I don’t know the plugin your using so maybe there support can help you. There is a blog post about this here that goes over most of whats needed:
https://www.sitepoint.com/extend-the-quick-edit-actions-in-the-wordpress-dashboard/Ben
In forum: Virtue ThemeHi hannah/ben-
Do you know a way to get the Virtue Custom Sidebar Selection field to show up under the Quick/Bulk Edit options for posts?I did find a plugin that will allow me to do this but I can’t seem to get it to work to display the list of custom sidebars.
The plugin in is here: *Login to see link
They indicate that I first need to get the custom sidebars added to the Post Columns but I can’t figure out what the kadence custom sidebar column would be called. Here is the code they suggest, do you know what would replace the ‘custom_stuff’ so that it would grab the custom sidebar data?
add_filter( ‘manage_post_posts_columns’, ‘my_manage_post_posts_columns’ );
function my_manage_post_posts_columns( $columns ) {
$columns[‘custom_stuff’] = esc_html__( ‘Custom Stuff’ );return $columns;
}Thanks,
John.In forum: Pinnacle ThemeIn reply to: Sidebar dissappears
In forum: Pinnacle ThemeTopic: Sidebar dissappears
In forum: Virtue ThemeIn reply to: Change of Product Image Size Display After Updates
February 7, 2018 at 11:39 am #178206Hey John,
While logged in and looking at your shop page click “customize” in the topbar. Then in the customizer, left sidebar click woocommerce.There you will see the settings for the product image sizes.
What recently change in woocommerce (this doesn’t have to do with the theme) is that image sizes are immediately cropped to match whatever settings you select. Previously you had to regenerate thumbnails using a plugin. So if you had changed those settings before the update then not regenerated thumbnails you wouldn’t have seen the changes, then after the update, the changes would have taken effect. This would be the only reason I can think of that would have created a change in image sizes after updating.
Either way, now you should just be able to edit your sizes to whatever you want in your customizer and it would instantly take effect.
Ben
In forum: Ascend ThemeIn reply to: Custom Font Issue
I hadn’t uploaded the
functions.phpfile, but that shouldn’t matter for the font URL. The/fontsare the fonts folder in the same root folder as the main WordPress URL, so I must not have added the child theme properly.public_html/worldlink/wp-content/themes/ascend_premium_child/fontsHere’s what’s in
public_html/worldlink/wp-content/themes/ascend_premium_child/folder:styles.css:
/* Theme Name: Ascend Premium Child Author: Steve Dillon Author URI: http://worldlink.kwsmproductions.com/ascend_premium_child Template: ascend_premium Version: 1.0.0 License: GNU General Public License v2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html Tags: light, dark, two-columns, right-sidebar, responsive-layout, accessibility-ready Text Domain: ascend-premium-child */functions.php:
<?php function my_theme_enqueue_styles() { $parent_style = 'ascend_premium-style'; // This is 'twentyfifteen-style' for the Twenty Fifteen theme. wp_enqueue_style( $ascend_premium_style, get_template_directory_uri() . '/style.css' ); wp_enqueue_style( 'child-style', get_stylesheet_directory_uri() . '/style.css', array( $ascend_premium_style ), wp_get_theme()->get('Version') ); } add_action( 'wp_enqueue_scripts', 'my_theme_enqueue_styles' ); ?>In forum: Virtue ThemeIn reply to: Page not formatted Correctly when filtering products
February 5, 2018 at 10:12 am #177812Woocommerce has its own built-in filter by attribute. That is what you are using.
Move the sidebar? I suppose you mean this:
@media (min-width: 992px){ .sidebar { padding-left: 30px; } }Ben
In forum: Virtue ThemeIn reply to: Page not formatted Correctly when filtering products
Hi Ben,
Thank you for your help.The support for this plugin has not been adequate. So I am looking for other ways to display the products.
It looks like there is a Filter Products by Attribute widget which appears to work fine. is this part of the template?
if so, can you help me move the sidebar to the right a bit?
http://lasallianresources.org/shop/Thanks for all the help!
I appreciate it.
OlympiaIn forum: Virtue ThemeIn reply to: cannot edit my shop page
In forum: Virtue ThemeIn reply to: Further customization of author archive page
February 1, 2018 at 6:54 pm #177453Sidebar is controlled with a function… like this:
function custom_no_sidebar_on_archive($sidebar) { if( is_archive() ) { if (is_author()) { return false; } } return $sidebar; } add_filter('kadence_display_sidebar', 'custom_no_sidebar_on_archive');Slug for testimonials is like this:
add_action('init', 'kt_filter_testimonial_slug', 1); function kt_filter_testimonial_slug() { add_filter('kadence_testimonial_post_slug', 'kt_custom_testimonial_permalink'); function kt_custom_testimonial_permalink() { return 'test'; } }In forum: Virtue ThemeIn reply to: Further customization of author archive page
Ben, so I made a custom template: for example – https://pokupaem-kg.ru/author/vetka/
However still unclear few points:
-how do you add sidebars in virtue templates, I just copy pasted that from archive page, and set all variables to true:global $virtue_premium; $display_sidebar = true; $fullclass = ''; global $kt_post_with_sidebar; $kt_post_with_sidebar = true;but it doesn’t seem to work in my template. Also, I tried to rewrite testimonials slug, however didn’t find similar hook like you gave me for portfolios, where I used:
remove_action( "after_setup_theme", 'kadence_permalinks'); add_action( "after_setup_theme", 'custom_kadence_permalinks');Thank you!
In forum: Virtue ThemeHi,
A row of category icons or thumbnails has suddenly appeared above the products list on my shop page. I have not selected or activated this setting, nor can I find where to disable it.
It is the top row shown in this image:
When you click on one of these category images, it links to each particular category, but as I have categories shown in my sidebar, I have no use for this row of category thumbnails. I’ve checked in shop settings and wooextras, but can’t seem to find where to disable it.
Any hints?
Thanks very much!
In forum: Membership ForumsIn reply to: AMP Kadence
Hello,
Firstly, be sure you’ve installed and activated the plugin from your account here:
https://www.kadencewp.com/my-account/
Once that’s done, you should see “AMP Settings” in your admin sidebar. Is this not the case for you?-Kevin
In forum: Pinnacle ThemeIn reply to: AJAX product search in main menu
Hi Ben,
Yeah, thought that might be the case. My coding skills are not in the level of using hooks fluidly.
I´m using a child theme and I tried to add a extra widget area under the header earlier by following some functions tutorial that I found from the interwebs. I managed to get the header widget visible at back-end in Widget editing screen, but not at all in front-end. I would have been happy having it under header at every page as well.
I would like to avoid using sidebars with this design, but that full page width top bar under header (With ajax search) would work nicely.
Br,
ValEDIT: This was the tutorial: http://www.wpbeginner.com/wp-themes/how-to-add-a-wordpress-widget-to-your-website-header/
In forum: Pinnacle ThemeIn reply to: AJAX product search in main menu
January 29, 2018 at 2:21 pm #176991Hey,
You can’t replace the normal search in the menu without a child theme and your own custom functions to add a search to the menu. Otherwise, you would just need to add that search into a widget area (like sidebar or topbar) to use it.If your using a child theme you can look at the plugins code and find the function that you would have to trigger to activate it, then add that function into a hook that you used to filter in your own menu icon and search. There is no easy way to replace a search in the menu.
Ben
-
AuthorSearch Results


