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'

Home / Forums / Search / Search Results for 'sidebar'

Viewing 20 results - 1,781 through 1,800 (of 5,356 total)
  • Author
    Search Results
  • In forum: Virtue Theme
    #178603

    Is the contact page the only page you’re not using a sidebar?
    Try adding this css:

    .contact-us #content:before {
        display: none;
    }

    Hannah

    In forum: Virtue Theme
    #178600

    Thanks Ben. That works great. Just one thing though…the grey block also shows on the contact page (behind the contact form) where there is no sidebar. Is it possible to remove it on just the one page? No problem if not. Cheers Phil

    In forum: Virtue Theme
    #178592

    Hey,
    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%;
        }
    }
    #178535

    Hi.

    is it possible to change the colour of the sidebar (to pale grey) all the way from the header to the footer? And if so can the padding of the sidebar contents be changed so it’s not right up to the edge?

    Thanks
    Phil

    #178476

    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.

    #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

    #178431

    Hi 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:

    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 Theme

    In reply to: Sidebar dissappears

    #178280

    Hi,
    You can create custom sidebars from Theme Options > Misc Settings.

    Hannah

    #178276

    Hello,
    I had a sidebar1 that I was using on my shop pages then it disappeared then appeared again, now it is gone again.
    I could see it in widgets now when I go to widgets there is only the primary sidebar.

    Is there a way to make a custom sidebar?

    #178206

    Hey 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 Theme

    In reply to: Custom Font Issue

    #177882

    I hadn’t uploaded the functions.php file, but that shouldn’t matter for the font URL. The /fonts are 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/fonts

    Here’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' );
    ?>
    #177812

    Woocommerce 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

    #177802

    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.
    Olympia

    In forum: Virtue Theme
    #177510

    Hello Lesly,

    You can set a sidebar for your shop in Theme Options> Shop Settings.

    You can create a new sidebar in Theme Options> Misc Settings. Sidebar widgets are assigned in Appearance> Widgets.
    Let me know if this is helpful.

    -Kevin

    #177453

    Sidebar 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';
    	}
    }
    #177413

    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!

    #177194

    Hi,

    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 Forums

    In reply to: AMP Kadence

    #177076

    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

    #177010

    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,
    Val

    EDIT: This was the tutorial: http://www.wpbeginner.com/wp-themes/how-to-add-a-wordpress-widget-to-your-website-header/

    #176991

    Hey,
    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

Viewing 20 results - 1,781 through 1,800 (of 5,356 total)