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 - 4,701 through 4,720 (of 5,356 total)
  • Author
    Search Results
  • In forum: Pinnacle Theme

    In reply to: how to remove sidebar

    #29248
    This reply has been marked as private.
    In forum: Pinnacle Theme

    In reply to: how to remove sidebar

    #29229

    If you want to customize the single image post page (is’t called the attachment page) you can use this function in your child theme functions file.
    This theme doesn’t really use the attachment page since there is a lightbox but here:

    add_filter('kadence_display_sidebar', 'attachment_sidebar');
    function attachment_sidebar($sidebar) {
      if (is_attachment()) {
        return false;
      }
      return $sidebar;
    }

    Ben

    In forum: Pinnacle Theme

    In reply to: how to remove sidebar

    #29201

    Hi Angelo,
    No, there isn’t really an option to to turn the sidebar off site-wide. It’s done page to page, as it is in virtue. The option you’re referring to (theme options > main settings) only turns the sidebar on/off for the homepage.

    but if I go to Media > Library then click on a picture the page open with sidebar.

    Are you referring to your back-end? The sidebar that shows is a list of settings for your image. Without the sidebar you wouldn’t have options? This also has nothing to do with your blog?

    Hannah

    In forum: Pinnacle Theme

    In reply to: how to remove sidebar

    #29192

    In virtue I suppose there’s this theme options > main settings > Site Layout Style where you can choose to have wide site or boxed with sidebar. If I’m not wrong.
    In Pinnacle I set on Blog Options > Post Defaults > no sidebar the same in Blog Category/Archive Defaults but if I go to Media > Library then click on a picture the page open with sidebar.

    So my question is simple, is there a way you can add an option that user can deselect sidebar sitewide and activate on single page if needed?

    thanks
    Angelo

    #29187

    It’s in the sidebar and footer!
    http://www.gpaed.de/blog/forums/forum/unterricht/

    Matthias

    In forum: Pinnacle Theme

    In reply to: how to remove sidebar

    #29185

    What option are you talking about in virtue? virtue you can set sidebars on pages based on the page template. Pinnacle you have a select box option on your pages.

    Ben

    #29134

    Hello Ben,

    I’d like to know if there’s a place where I can choose to remove or not the sidebar for all the site in a click like exists in Virtue.

    thanks
    Angelo

    #29132

    Hi,

    I followed these instructions. I got a nice white page. Then, I wanted to add a background picture to the whole page. But it does not cover the place of the topbar. (I added the background page with a plugin, because I did not find way).

    Here is the link how does it look like now: http://bakancslistasutazasok.krajcar.org/?page_id=195

    Here here are the CSS lines I should add: /* This piece of code turns off topbar, footer and header for landing pages*/
    .page-id-195 #pageheader {
    display: none;
    }
    .page-id-195 #topbar {
    display: none;
    }
    .page-id-195 #containerfooter {
    display: none;
    }
    .page-id-195 .headerclass {
    display: none;
    }
    .page-id-195 .kt-call-sitewide-to-action {
    display: none;
    }
    /*end*/

    What I want to achieve within the theme is the following: I want to have a page without topbar, header, footer and sidebar. I want to add to it a background picture that covers the whole screen. And on that I would put some text, and some buttons (or some form). I want to use them as capture page and thank you page within my sales funnel.

    Is this possible to achieve within this theme, taking into consideration that I am not a programming expert.

    Thank you for your help.

    #29127

    Hello.

    I can’t see my featured image in the frontpage. I set a featured image and selected “image” in the featured options, the template is “featured-sidebar”. Other featured images are shown properly in other pages.

    The image is 1102x278px, does it matter? can you have a look?

    The page not showing the image is:

    Camilo

    In forum: Virtue Theme

    In reply to: blank page

    #29105

    This was code I was fooling with:

    <?php
    /*———————————————————————————–*/
    /* Include Theme Functions */
    /*———————————————————————————–*/
    load_theme_textdomain(‘virtue’, get_template_directory() . ‘/languages’);
    require_once locate_template(‘/themeoptions/options/virtue_extension.php’); // Options framework extension
    require_once locate_template(‘/themeoptions/framework.php’); // Options framework
    require_once locate_template(‘/themeoptions/options.php’); // Options framework
    require_once locate_template(‘/lib/utils.php’); // Utility functions
    require_once locate_template(‘/lib/init.php’); // Initial theme setup and constants
    require_once locate_template(‘/lib/sidebar.php’); // Sidebar class
    require_once locate_template(‘/lib/config.php’); // Configuration
    require_once locate_template(‘/lib/cleanup.php’); // Cleanup
    require_once locate_template(‘/lib/custom-nav.php’); // Nav Options
    require_once locate_template(‘/lib/nav.php’); // Custom nav modifications
    require_once locate_template(‘/lib/metaboxes.php’); // Custom metaboxes
    require_once locate_template(‘/lib/gallery_metabox.php’); // Custom metaboxes
    require_once locate_template(‘/lib/comments.php’); // Custom comments modifications
    require_once locate_template(‘/lib/shortcodes.php’); // Shortcodes
    require_once locate_template(‘/lib/carousel_shortcodes.php’); // Carousel Shortcodes
    require_once locate_template(‘/lib/custom_carousel_shortcodes.php’); // Carousel Shortcodes
    require_once locate_template(‘/lib/testimonial_shortcodes.php’); // Carousel Shortcodes
    require_once locate_template(‘/lib/testimonial_form_shortcode.php’); // Carousel Shortcodes
    require_once locate_template(‘/lib/blog_shortcodes.php’); // Blog Shortcodes
    require_once locate_template(‘/lib/image_menu_shortcodes.php’); // image menu Shortcodes
    require_once locate_template(‘/lib/google_map_shortcode.php’); // Map Shortcodes
    require_once locate_template(‘/lib/portfolio_shortcodes.php’); // Portfolio Shortcodes
    require_once locate_template(‘/lib/portfolio_type_shortcodes.php’); // Portfolio Shortcodes
    require_once locate_template(‘/lib/staff_shortcodes.php’); // Staff Shortcodes
    require_once locate_template(‘/lib/gallery.php’); // Gallery Shortcode
    require_once locate_template(‘/lib/post-types.php’); // Post Types
    require_once locate_template(‘/lib/premium_widgets.php’); // Gallery Widget
    require_once locate_template(‘/lib/widgets.php’); // Sidebars and widgets
    require_once locate_template(‘/lib/Mobile_Detect.php’); // Mobile Detect
    require_once locate_template(‘/lib/aq_resizer.php’); // Resize on the fly
    require_once locate_template(‘/lib/revslider-activate.php’); // Plugin Activation
    require_once locate_template(‘/lib/taxonomy-meta-class.php’); // Taxonomy meta boxes
    require_once locate_template(‘/lib/taxonomy-meta.php’); // Taxonomy meta boxes
    require_once locate_template(‘/lib/scripts.php’); // Scripts and stylesheets
    require_once locate_template(‘/lib/custom.php’); // Custom functions
    require_once locate_template(‘/lib/admin_scripts.php’); // Icon functions
    require_once locate_template(‘/lib/authorbox.php’); // Author box
    require_once locate_template(‘/lib/breadcrumbs.php’); // Breadcrumbs
    require_once locate_template(‘/lib/custom-woocommerce.php’); // Woocommerce functions
    require_once locate_template(‘/lib/custom_css.php’); // Fontend Custom CSS
    require_once locate_template(‘/lib/wp-updates-theme.php’);
    new WPUpdatesThemeUpdater_647( ‘http://wp-updates.com/api/2/theme&#8217;, basename( get_template_directory() ) );

    function virtue_shortcode_init() {
    if(is_admin()){ if(kad_is_edit_page()){require_once locate_template(‘/lib/kad_shortcodes.php’); }}
    }
    add_action(‘init’, ‘virtue_shortcode_init’);

    In forum: Virtue Theme
    #28912

    https://www.kadencewp.com/frequently-asked-questions/

    see the section about a sidebar on the left.

    Just need to add the css.

    Ben

    #28911

    I think it would be nice to have the option of positioning the sidebar on the left.

    Please consider adding this an an option in a future update. 🙂

    In forum: Virtue Theme
    #28780

    Try rescanning? the file is there in templates > account-sidebar.php

    Ben

    In forum: Virtue Theme
    #28775

    “Edit account” and “Logout” in my account. are theme strings. The theme is what is adding the sidebar. The strings are in the theme text domain.

    You can remove the profile image with this css:

    .kad-customer-image {
    display: none;
    }

    Ben

    In forum: Virtue Theme
    #28753

    Hey,

    1. If the search in the sidebar is the same as the one your using in the topbar then I can totally see why it would happen. You can contact the developers and ask them to change the js to allow for multiple search bars on a page without them all opening. add the below css.

    #topbar .autocomplete-suggestions {
        top: 35px;
    }
    #topbar .yith-ajaxsearchform-container {
        position: relative;
    }
    #topbar .autocomplete-suggestion {
        color: #444;
    }

    2. Has to do with the title tag which is there for SEO purposes in the image link. What image are you wanting to remove it on?

    Ben

    In forum: Virtue Theme
    #28734
    This reply has been marked as private.
    In forum: Virtue Theme

    In reply to: Page width too narrow

    #28732

    Its set to full width Hannah – take it you mean via Theme options /Home Layout / Display a sidebar on the home page? I’ve been through all theme options but cannot see anything obvious.
    Sandra

    #28716

    ok, well that is your issue. Since your having your child theme override all the templates you have to code them to work. You can see what I mean if you activate the parent theme.

    What in your child theme are you wanting to change? You planning to override all those files.

    All the “extras” files will need to have the “get_sidebar” calls removed. It also means you won’t be using the theme framework for your css so you’ll need to add in your own css to make the content area work and be responsive.

    Ben

    #28713

    Hi Ben,
    My initial idea was to remove the sidebar but it didn’t work. I thought it might be easier to move it to the right. That code has no impact. I guess it is overwritten somewhere.

    I created in my child theme two directories:
    1) bbpress : I then copied the files from wp-content/plugins/bbpress/templates/default/bbpress into bbpress directory in my child theme.
    2)css : I then copied the files from wp-content/plugins/bbpress/templates/default/css into css directory in my child theme.

    I also copied the files from wp-content/plugins/bbpress/templates/default/extras into my child theme directory.

    Any help to remove the sidebar or adjust it would be appreciated.

    Thanks,
    Jay

    #28703

    Hey, Now I see it broken, before I didn’t (your using super cache… so it’s hard to know what it live and whats not.

    What else is in your child theme, and if you want a sidebar then you shouldn’t add that code. It’s only for if you don’t want a sidebar.

    Ben

Viewing 20 results - 4,701 through 4,720 (of 5,356 total)