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,921 through 1,940 (of 5,356 total)
  • Author
    Search Results
  • #170264

    It doesn’t look like you’re assigning the sidebar in Theme Options> Home Layout. be sure that the correct sidebar is selected there.

    -Kevin

    #170240

    Hey,
    Can you post a link to a page that is showing your sidebar? Have you tried clearing your cache?

    Hannah

    #170239

    Hello Nigel,

    Can you please share a link to where this sidebar is displaying so that I can take a look?

    Also, be sure that you’re clearing your cache after adding the widget, otherwise it may take awhile for the change to appear.

    -Kevin

    #170222

    I am using Virtue Premium with wordpress v4.9.1 All plugins etc are up to date. I have the aweber plugin which I want to place in the primary sidebar. I am doing this by navigating to appearance/widgets and then dragging the aweber plugin to the sidebar. It shows there but does not appear on the web site page. Some guidance would be helpful please.

    #170098

    Ben,

    I tried to output it in both places, however in my case it didn’t work. Probably because I had unique ids inside it. So I removed it out of sidebar completely.

    #169965

    1. Yes I would output it in both places and hide one or the other depending on screen size.

    Or build the page in pagebuilder without a sidebar and create the look of the sidebar but with that shortcode first in the collapse order.

    As for problems it shouldn’t but that could depend on what your shortcode does.

    2. You would need to add

    'post_type' => array('post', 'portfolio'),

    to the query.

    Ben

    #169900

    Hi Ben,

    How would you do it, if you wanted to show something from a sidebar above content on mobile devices? I have one important block displayed with a shortcode in a sidebar. But on mobile devices it appears after the content. Would it be correct to place it both in content and sidebar and wrap in divs, which are visible/invisible on different width, e.g below:

    <div id="incontent" style="@media(max-width:767px){display:none}">
    [shortcode for php function]
    </div>

    <div id="insidebar" style="@media(min-width:768px){display:none}">
    [shortcode for php function]
    </div>

    Can it cause any problems?
    ——————————–

    Q2: There is an author posts loop in lib/authorbox.php, can I show both portfolios and posts in that loop mixed?

    <?php
    global $authordata, $post;
    $temp = null;
    $wp_query = null;
    $wp_query = new WP_Query();
    $wp_query->query(array(
    'author' => $authordata->ID,
    'posts_per_page'=>3));
    $count =0;
    if ( $wp_query ) :
    while ( $wp_query->have_posts() ) : $wp_query->the_post(); ?>

    Thanks!

    #169695

    Hey,
    Thanks for posting, I’ll update this with the next version to check for a sidebar on the front page.
    Ben

    #169588

    Hi guys!
    I have the latest version of your Virtue premium theme and wordpress 4.9.
    I recentely had to make a rollback to fix something on my website, but since I upgraded the virtue theme, I don’t have any access to my “Product Data” section in woocommerce.
    That’s a screenshot of what I mean:

    And no matter what I click on the left sidebar, everything stays that way 🙁

    Thanks in advance for your attention 🙂

    #169497

    Hi Tom,
    You can use css like this:

    @media (max-width: 992px) {
    .sidebar {
        display: none;
    }
    }

    Just paste that into your custom css box in Theme Options > Custom CSS.
    Hope it helps!

    Hannah

    #169487

    Hello
    Is it possible to hide the sidebar completely and have fullwidth of main content on mobile devices (when the sidebar would appear at the bottom of the main page content)?

    Thank you

    In forum: Virtue Theme
    #169480

    Hey,
    You can add this css in addition to your previous css to make them only appear on your landing page:

    .page-id-23229 .sidebar ul.menu ul.sf-dropdown-menu {
        display: block !important;
    }

    Hope that helps!

    Hannah

    #169477

    I found this post – which gave me half my answer on how to create a collapsible side bar menu.

    This css works to hide the submenu items

    .sidebar ul.menu ul.sf-dropdown-menu {
    display: none;
    }

    The trouble I’m having is that I want the submenu items to appear on the landing page for the main menu items.
    Here is a link to my test site showing all menu items, both main and sub.

    Could you give me the css to do this?

    In forum: Virtue Theme
    #169358

    Yeah it’s not an issue of the child theme. There isn’t anything in the child theme when you activate it from here. the issue is with sidebars (the error points to this). Either with a plugin or with some internal database error that just needs to be resaved. With a login, I can find that out.

    Ben

    #169294

    Hi,

    I downloaded the Virtue Premium Child Theme. When activating, these Errors appear:

    Warning: array_merge(): Argument #5 is not an array in …/wp-includes/widgets.php on line 1159
    -> 1159 $shown_widgets = call_user_func_array( ‘array_merge’, $sidebars_widgets );

    Warning: array_diff(): Argument #2 is not an array in …/wp-includes/widgets.php on line 1160
    -> 1160 $lost_widgets = array_diff( $registered_widgets_ids, $shown_widgets );

    Warning: Invalid argument supplied for foreach() in …/wp-includes/widgets.php on line 1162
    –> 1162 foreach ( $lost_widgets as $key => $widget_id ) {

    Warning: array_merge(): Argument #1 is not an array in …/wp-includes/widgets.php on line 1170
    –> 1170 $sidebars_widgets[‘wp_inactive_widgets’] = array_merge( $lost_widgets, (array) $sidebars_widgets[‘wp_inactive_widgets’] );

    Working with the current WordPress, Kadence Virtue Premium and other Plugins. Everything is up to date.

    Any idea?

    In forum: Pinnacle Theme

    In reply to: Full Width Blog Page

    #168912

    Ok, so it seems like you want full-screen width. Where full page width means no sidebar.

    For a full screen width you can use this css:

    .page-template-template-blog-grid #content {
        width: 100%;
    }
    @media (min-width: 1300px) {
    .page-template-template-blog-grid .kad_blog_item { width:25%}
    }
    @media (min-width: 1600px) {
    .page-template-template-blog-grid .kad_blog_item { width:20%}
    }

    Ben

    #168745

    Hi,
    when on the sidebar you choose “Archives” and for example the month “March/2017” the page which show the result as this one :
    https://www.tranquila.fr/Blog/en/2017/03/
    Show the right background image but not a good title in the example English.
    The point it’s how to show on the header “2017/03” instead of “English”.
    I do not understand where that title “English” come from.
    Who can get directly to the site https://www.tranquila.fr/Blog/en/ and on the bottom page choose an archive.
    Regards

    #168675

    Hi

    I am using Thrive leads to create opt-ins, and whenever I add an image to an opt-in, the selection box that wraps around the image is offset from the image, which means I cannot centre it or apply effects properly (ie drop shadow), as it is taking the offset selection box into account, and not my image.

    I have been in touch with Thrive support, and they say it is the theme placing a margin around images that is causing this. They said: “This is caused by your theme adding a 15px margin to every element that is imported to Thrive Architect. As soon as we switch to a default WordPress theme this issue is gone.”

    Here are a couple of screenshots so you can see what I mean. The green selection box does not wrap tightly around the image:

    (in this one the drop shadow is applied to the selection box)
    (Here the drop shadow is part of the image)

    You can see it live in the sidebar here, how it will not centre, despite being set to centre:

    I saw on another support question mentioning Thrive you said to turn off select2. I did this, but it had no effect on the problem.

    Please help! Many thanks!

    Janine

    #168616

    Hey,
    I’m seeing your sidebar display beside your product as it should. What browser are you using?

    Hannah

    #168581

    Hello,
    I have problem in product page. I cannot see anymore The Primary Sidebar on the right of the product, as usual, but it is traslated on the bottom of the page.
    The effect is terrible. Please see this example link:
    For the new product this doesn’t happen. Is very strange.
    Let me know something.
    Thank You

Viewing 20 results - 1,921 through 1,940 (of 5,356 total)