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 - 3,821 through 3,840 (of 5,356 total)
  • Author
    Search Results
  • In forum: Virtue Theme

    In reply to: Sidebar font

    #65460

    ok, so with the error out this css should work.

    .sidebar a,  .sidebar {
        font-family: sans-serif;
    }

    Ben

    In forum: Virtue Theme

    In reply to: Sidebar font

    #65453

    OK, just did that. Still it uses the body font for my sidebar texts. It seems that the custom CSS I posted above affects only the search box, but nothing else on the sidebar.

    Carsten

    In forum: Virtue Theme

    In reply to: Multiple Logo's?

    #65435

    I don’t see a widget added? And the sidebar is where it’s supposed to be did you add css to force it into the header?

    Ben

    In forum: Virtue Theme

    Topic: Sidebar font

    #65388

    Hi,

    I’m really sorry to ask about this again as I have solved it (with your help) a few years ago. Unfortunately I lost all of my site’s configuration (don’t ask) and have to start over.

    I’d love to change the font and size of all the text in the sidebar, including recent posts, categories, archives etc. My impression was that custom CSS like

    .sidebar {font-size:14px; font-family:sans-serif;}

    should do it, but this seems to affect only the fixed texts (‘Recent Posts’ etc.).

    Many thanks in advance

    Carsten

    #65266

    Hey Carsten,
    I assume you mean in the sidebar? Unfortunately there isn’t a built in way to make these larger, but you could stretch them a bit with some css. Try using this:

    .kadence_recent_posts img {
        width: 100px;
    }

    Just paste it in your custom css box in Theme Options > Advanced Settings.
    Hope that helps!

    Hannah

    #65094

    Hello, I created a new page template from the page-sidebar.php and called it page-newhome.php with a template name of New Home Page. It is of course just for the home page. When I go to the wordpress page I can assign the page template to the page but unfortunately none of my changes show up.

    The primary reason I’m creating another template is because I need to use the Advanced Custom fields plugin to output particular items and I don’t want to crossover any other pages by using one of the default templates. I know there are other ways of handling the ACF fields but this was my chosen path.

    So if you can assist in leading me in the right direction on why my page template isn’t kicking in that would be great. I also want to point out that I am using a child theme and have only tried to override the templates/content-page.php. For that I just created a new part call templates/content-homepage.php and changed that reference in my new page template to point to my new part.

    Test site is

    In forum: Pinnacle Theme

    In reply to: cyclone slider problem

    #65078

    can you post a link?

    In your slider settings do you have “force resize” turned on in the right sidebar?

    Ben

    In forum: Pinnacle Theme
    #65060

    #1–Hannah, your code did not work. Text was not wrapping and was positioning under the sidebar I am using on the Home screen. I actually went back to the settings as recommended in the Kadence tutorial for setting up a blog site. Then I used a Custom Link in the Menu settings to link to the correct Home screen layout. All is well here.
    #2–Ben, I think I’ll give up on a customer menu for now. Perhaps I’ll come back to that later after I have more experience.

    Thank you both.

    In forum: Virtue Theme

    In reply to: View Cart button text

    #64814

    Hey,
    I’m not seeing a sidebar on that page? It looks like you’re using a sidebar layout but you haven’t actually assigned one?

    Hannah

    In forum: Virtue Theme

    In reply to: New Page Template

    #64780

    Hi, Ben,

    1. Yes – a left and right sidebar as we needed a 3 column template option. The code seems to work fine and I’ve tested it with several pages. All display the correct sidebars now. I just wasn’t sure if there was a better/cleaner way to implement it.

    2. It worked a few weeks ago but when I logged in the other day, I noticed it wasn’t (this was after the update). I’ll double-check my plugins and retest.

    Thank you.

    #64752

    Hi,

    Can you tell me which menu option dictates the background colors for the “View Cart” button in the sidebar? Right now it’s barely visible, and rolling over it doesn’t do much to make it easier to read.
    Thanks in advance!

    In forum: Virtue Theme

    In reply to: New Page Template

    #64714

    1. Are you trying to have a left sidebar and a right sidebar. like a new page layout? Are you adding that code into your own page template then?

    2. That should work fine. (I just tested) Is there any chance you have a plugin that is loading an older version of redux?

    Ben

    #64708

    ok, I looked and you have the my-account page set to a fullwidth page template? That would make it fullwidth and not show the default sidebar with account info.

    You are using pabuilder and adding the woocommerce my-account into one column.
    I’m not totally sure now what your wanting. This site is using a default page template. with just the my-account shortcode. All the content is added through the woocommerce my-account hooks in a child theme so you can display items for logged in an logged out people.

    I’ve switched your page template to default, then added this css to hide the right column and make the left column fullwidth when logged in. Is that what your thinking?

    .logged-in #pgc-9-0-1 {
        display: none;
    }
    .logged-in #pgc-9-0-0 {
       width:100%;
    }
    

    Ben

    In forum: Virtue Theme

    In reply to: New Page Template

    #64673

    Hi, just an update. I got the 2nd sidebar to work (although the code is not pretty). I used:

    <aside class="<?php echo esc_attr(kadence_sidebar_class()); ?> kad-sidebar-right" role="complementary">
                <div class="sidebar">
                    <?php
    					if ( ! $sidebar = get_post_meta( get_the_ID(), '_kad_sidebar2_choice', true ) )
    						$sidebar = 'sidebar-primary'; // Default sidebar if meta value does not exist.		
    					if ( ! dynamic_sidebar( $sidebar ) ) : ?>				
    				<?php endif ?>
    
                </div><!-- /.sidebar -->
            </aside><!-- /aside -->

    Just in case anyone else needs something like this. If there is a better way to do this, please let me know. Thank you.

    Still trying to figure out the answer to #2. 🙂

    In forum: Virtue Theme

    In reply to: New Page Template

    #64670

    Hello! Sorry to reopen an old thread but I had a few items pop up that I need a little help with.

    1. My Directory Listing template needs to be able to display 2 different sidebars. I’ve created the metabox for it and am able to select the sidebar. I’ve added the code to my template but my new sidebar option seems to override the original option. I copied the code from above to my functions.php file and changed $sidebar_name = get_post_meta( $post->ID, ‘_kad_sidebar_choice’, true ); to $sidebar_name = get_post_meta( $post->ID, ‘_kad_sidebar2_choice’, true ); – this works except the original no longer shows up. If I remove it, the original sidebar shows up but the new one stops working. Can you give me a little direction on how to make the 2 work together?

    2. I updated my theme and the previous code given for removing/hiding theme options no longer seems to work. Did something change?

    Thank you.

    #64631

    Hey Ben, i have tried using page builder for create it. But the problem is, the widget still there when im logged,,,its different when i login kadence the widget information acciunt is dissapeared…i wonder how to create like that Ben. I have no idea about my account page has a sidebar…how can i find it?

    Danny

    #64623

    Hey,
    Just so you know the my-account page has a sidebar for users that are logged in which will only show when your logged in.

    Ben

    #64609

    There is no added functionality through the theme for buddypress so you’ll have the design and options native to the plugin. Things like a sidebar would have to be controlled through a child theme. Otherwise you should be fine.

    AS a side note if you just want a membership I think there are better plugins. Buddypress is more for a social media platform.

    Ben

    #64563

    Hey,
    You just need to add a sidebar to the page. You can do that from your my-account edit page. You can edit the sidebar content from Appearance > Widgets.
    Hope that helps!

    Hannah

    #64503
    This reply has been marked as private.
Viewing 20 results - 3,821 through 3,840 (of 5,356 total)