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 - 2,861 through 2,880 (of 5,356 total)
  • Author
    Search Results
  • #111878

    Choose the sidebar page template and add your widget into the sidebar area.

    Ben

    #111852

    It looks like you don’t have a sidebar active on that page. Did you remove it?

    -Kevin

    #111850

    Only want the sidebar in this page (now), that css i should use? not should use any widget o plugin of wordpress?

    #111844

    3. The header it fullwidth so I’m not sure what you mean but maybe try this and let me know if it’s what your thinking:

    #topbar {
        max-width: 1140px;
        margin: 0 auto;
    }

    4. You can add this:

    p.vcard-address span {
        padding-left: 20px;
    }

    5. you can use this css:

    .footerclass .widget_recent_entries li a {
        background: transparent;
        padding: 5px;
        color: #000;
    }
    .footerclass .widget_recent_entries ul {
        padding-left: 0;
        list-style: none;
    }

    9. you can use this css:

    .kad-primary-nav .sf-menu li a i {
        display: block;
        line-height: 30px;
        font-size: 20px;
    }
    .kad-primary-nav ul.sf-menu>li>a >span {
        line-height: 20px;
        display: block;
    }
    .kad-primary-nav ul.sf-menu>li>a >span.sf-sub-indicator {
        display: none;
    }

    If you change the height of your header then this css would also need to change to match.

    7. Becuase it defaults back to an archive page as it’s not a real page the template doesn’t really matter. You can set the blog category page to be fullwidth and that would also effect the calendar pages because it’s an archive. (theme options > blog options).

    But you can also control this directly with a child theme using this function in your child theme:

    
    function kad_sidebar_events($sidebar) {
    	if(is_archive('events-archive') ||  is_singular( 'tribe_events' ) || is_singular( 'tribe_organizer')){
        	$sidebar = false;
      	}
      	return $sidebar;
    }
    add_filter('kadence_display_sidebar', 'kad_sidebar_events');

    Ben

    #111829

    If you want the above css to only affect the sidebar you can use this instead:

    .sidebar .search {
    background-color: #f2f2f2;
    border: 1px solid #ddd;
    padding: 10px;
    border-bottom-right-radius:0.5em;
    border-bottom-left-radius:0.5em;
    border-top-right-radius:0.5em;
    border-top-left-radius:0.5em;
    color:#FFF;
    font-family: "Georgia, serif";
    font-size: 18px;
    }

    Are you using a plugin to translate your site? You should see an option to change this in the string translations.

    Hannah

    #111810

    3. Try this CSS:

    #nav-main ul.sf-menu .current-menu-item a {
        text-decoration: underline;
    }

    4. If you want that to show in the sidebar, you can try placing a visual editor widget into your sidebar widget area, and pasting the code there. You can set the side that your sidebar displays on in Theme Options> Main Settings. if you only want the sidebar left on that page, that’s something you can accomplish with CSS.

    Hopefully this is helpful.
    -Kevin

    #111763

    Question 1 y 2 is solved.
    About question 3, not like the final result, that css i have use for only underline entry of menu active?
    About question 4, the most difficult, show http://neanails.com/?page_id=439 before any changes the only code contains was [product_categories number=”12″ parent=”0″ columns=”3″] but with PAGE BUILDER I add widget Categories of Woocommerce, and that’s what I want, but in a left sidebar next to the drawers category

    #111759

    Hi Ben, and thanks for reply!

    This custom css is for the graphic of the sidebar widget. Well, I am not too good at this – at least I think that’s what it is.

    Would this be in conflict with changing the header of this page?

    http://xn--snsker-dua6l.se/?s=nallo

    I would like to translate the heading “Search results for” into Swedish.

    Thanks once again!

    //Fredrik

    #111693

    Default isn’t really the template you should do this with… It’s not assigning a template which basically doesn’t make it as selectable. I suggest since you have a sidebar that you use the “sidebar” page template. Then you can add this css:

    .page-template-page-sidebar #content {
        max-width: 600px;
    }

    Ben

    #111649

    So it seems modern tribe updated there conditionals. I updated the codes to this:

    function kad_sidebar_events($sidebar) {
    	if(is_archive('events-archive') ||  is_singular( 'tribe_events' ) || is_singular( 'tribe_organizer')){
        	$sidebar = false;
      	}
      	return $sidebar;
    }
    add_filter('kadence_display_sidebar', 'kad_sidebar_events');
    
    function events_pagetitle($pagetitledisplay) {
      	if(is_archive('events-archive') ||  is_singular( 'tribe_events' ) || is_singular( 'tribe_organizer')){
        	$pagetitledisplay = false;
      	}
      	return $pagetitledisplay;
    }
    add_filter('kadence_pagetitle_display', 'events_pagetitle');

    What call to action are you refering too?

    Ben

    #111506

    So for pinnacle you would need a child theme to control the sidebar for events plugin.

    This would remove the sidebar from all events pages:

    function kad_sidebar_events($sidebar) {
      if (tribe_is_event() || tribe_is_event_category() || tribe_is_in_main_loop() || tribe_is_view() || 'tribe_events' == get_post_type() || is_singular( 'tribe_events' )) {
        return false;
      }
      return $sidebar;
    }
    add_filter('kadence_display_sidebar', 'kad_sidebar_events');

    this would turn off the page title on all events pages:

    
    function events_pagetitle($pagetitledisplay) {
      if (tribe_is_event() || tribe_is_event_category() || tribe_is_in_main_loop() || tribe_is_view() || 'tribe_events' == get_post_type() || is_singular( 'tribe_events' )) {
        return false;
      }
      return $pagetitledisplay;
    }
    add_filter('kadence_pagetitle_display', 'events_pagetitle');

    you can add both to the functions.php file of your child theme: https://www.kadencewp.com/child-themes/

    Ben

    #111495

    I opened the store-listing page and you didn’t have the page template set to fullwidth? so I did that things seem fine?

    I added this for your shop pages.

    function kad_sidebar_off_dokan($sidebar) {
      if(preg_match_all('/store//', $_SERVER['REQUEST_URI'])) {
        return false;
      }
      return $sidebar;
    }
    add_filter('kadence_display_sidebar', 'kad_sidebar_off_dokan');

    Ben

    #111492

    Hi Ben, Hi Hannah:

    So I also downloaded the events calendar for my Pinnacle Premium theme. I am using the default events template as you suggested to Jay above. However in my case the sidebar appears at the bottom of the page underneath the monthly view. In addition, to removing the sidebar completely I want to Hide the Page Title and there is no way of editing the page. – Hannah still has access to the site. The site is not published yet. Can you help with this?

    #111480

    Hi Ben, Hi Hannah:

    So I also downloaded the events calendar for my Pinnacle Premium theme. I am using the default events template as you suggested to Jay above. However in my case the sidebar appears at the bottom of the page underneath the monthly view. In addition, to removing the sidebar completely I want to Hide the Page Title and there is no way of editing the page. http://www.correctionsdesisociety.org/events/ – Hannah still has access to the site. The site is not published yet. Can you help with this?

    #111469
    This reply has been marked as private.
    #111459
    This reply has been marked as private.
    In forum: Virtue Theme
    #111430

    You need to create a widget area :

    https://codex.wordpress.org/Widgetizing_Themes

    function custom_widgets_init() {
    
    	register_sidebar( array(
    		'name'          => 'Header Left',
    		'id'            => 'header_left_widget_area',
    		'before_widget' => '<div>',
    		'after_widget'  => '</div>',
    		'before_title'  => '<h3 class="widget-title">',
    		'after_title'   => '</h3>',
    	) );
    
    }
    add_action( 'widgets_init', 'custom_widgets_init' );

    Then you need to hook that into the header left side:

    function custom_header_widget_left() {
    if ( is_active_sidebar( 'header_left_widget_area' ) ) :
    	dynamic_sidebar( 'header_left_widget_area' );
    endif;
    }
    add_action( 'kt_before_left_header_content', 'custom_header_widget_left' );

    Ben

    #111335

    Ben,

    We received a function from you in the past for dealing with sidebars on blog posts and we have added a section to the function to remove the primary sidebar when displaying the store page. The primary sidebar is removed when we activate that function in our child theme. The problem is that the space on the left side of the screen for the sidebar is not re-allocated–there is an empty space where the sidebar would be and the content is no longer centered because of the empty space.

    Additionally, the Multi-vendor Store plugin adds a left-sidebar that we want and now only works when a Store option to not let the theme render the sidebar is activated. So the above theme function sends an empty value for sidebar, but the Store plugin actually renders the page with the left sidebar. But, we had similar problems when we created a sidebar-store.php in the child theme and used the theme to render the left sidebar–we still had the empty space on the right side of the screen.

    What we need to figure out is how to get the page–without the right-side sidebar–to render across the area where the sidebar was.

    Thanks,
    Brenda

    In forum: Virtue Theme

    In reply to: Sticky/fixed sidebar?

    #111058

    Hi Ben,
    I would like to do something similar so I thought it would be better to ask here than to open a new post. Let me know if I am wrong.
    I have so huge article like this one: http://dresser-son-chien.com/nom-de-chien-en-m and i would like to know if it is possible to fix the sidebar when the visitor reach the end of the sidebar.
    I would like the sidebar to go down normally until the end, but if the article is longer than the sidebar, the last part of it stays visible.
    I am not sure if i am clear but i hope.
    Thanks for your help.

    #111015

    Hello,

    I have two different issues regarding Social media icons. The website is http://www.travelhysteria.com

    1 – I have 4 customized icons in the homepage, below the header slider. In the mobile version they are just too big. Is there a way to make them responsive? I’d like to have them smaller on mobile version.

    2 – I have some other icons in the sidebar on the right, using the Virtue Widget. Is it possible to have the bigger and colored? I couldn’t find any other widget.

    Thanks a lot!

    Enrico

Viewing 20 results - 2,861 through 2,880 (of 5,356 total)