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 'widget area'

Home / Forums / Search / Search Results for 'widget area'

Viewing 20 results - 1,321 through 1,340 (of 2,437 total)
  • Author
    Search Results
  • #123723

    The recent posts widget is only designed to display recent posts. You may be able to accomplish a random post widget type deal by assigning a text widget to that area, and instead placing shortcode into the text widget to add the blog posts. The shortcode will look something like this:
    [blog_grid orderby=date items=4]

    You can read more about the available shortcodes within the theme here:
    http://docs.kadencethemes.com/virtue-premium/shortcodes/

    Let me know if that works for you!

    -Kevin

    #123706
    This reply has been marked as private.
    #123658

    In Theme Options > Topbar Settings set Enable widget area in right of Topbar to On. Then you can add a widget from Appearance > Widgets.

    Hannah

    In forum: Virtue Theme

    In reply to: Widget header

    #123627

    Hey Peggy,

    In Theme Options> Main Settings, are you setting “Logo Layout (Standard Header only)” to the widget option?

    If you don’t set the header widget area there, then the widgets you assign via Appearance> Widgets wont appear.

    Does this help?

    -Kevin

    #123541

    Hey Lief,

    Your best course of action for getting a phone number into your topbar will be to use a widget. Otherwise, you’ll have to code into a child theme to add it, which will add a lot more complexity than a simple widget.

    I would start by enabling the widget area in the topbar via Theme Options> TopBar Settings. Then, go into Appearance> Widgets and add a text widget to the topbar widget area that contains your phone number. If you need help styling it, I can gladly help you there.

    Also, what is your reason for not wanting to use a widget? It’s possible that we can remedy the situation with more widgets in the topbar. Just let me know and I’ll be glad to work through it with you.

    -Kevin

    In forum: Virtue Theme

    In reply to: Sidebar doesn't show

    #123165

    Hey,
    It’s possible the shortcode isn’t clearing the query back to the original page query and therefore when the theme searches for what sidebar to show it’s seeing the page as the custom post type query and not as the page. Hard to know without seeing some code. But if your “primary sidebar” widget area doesn’t have any widgets or if it only has widgets that show on certain pages that would make sense. If you can send me a temp login to your site I would be happy to take a look.

    In terms of adding a meta box for your sidebar options on a custom post type you would just register the meta boxes then add a filter on the kadence_sidebar_display function and kadence_sidebar_id function

    I can help further if you need some examples.

    Ben

    #123037

    Hey Professionals,

    on the home site of the pinnacle template I would like to add a site-wide row with grey background and widgets similar to the footer style but somewhere in in the main area. How would you advise to realize. See sample pic:

    Related to this: A site-wide row which is transparent and shows scrolling over the background picture. Is this a standard functionality in Pinnacle theme? It is shown in the example page at the row with big white letters *Responsive Design. Powerful Options. Read More”

    Thanks and best regards,

    Seb

    In forum: Pinnacle Theme

    In reply to: Code

    #122709

    1. Header Footer scripts have to be enabled theme options > theme extensions. But using widget area is a great option as well.

    2. In your settings > reading you have not assigned the page you set up as the home page to be your front page.

    Ben

    In forum: Virtue Theme
    #122683

    Hey,
    This is more tricky then even that.

    In your child theme you need to override the tempaltes/content-singleportfolio.php file.

    On line 19 you need to change this:

    <a href="<?php echo get_page_link($parent_id); ?>" title="<?php echo get_the_title($parent_id);?>" >

    to this:

    $terms = get_the_terms( $post->ID, 'portfolio-type' );
    if ( $terms && ! is_wp_error( $terms ) ) : 
    $link_hash = $terms[0]->slug;
    $link_hash  = preg_replace("/[^a-zA-Z 0-9]+/", " ", $link_hash );
    $link_hash  = str_replace(' ', '-', $link_hash);	
    else :	
    $link_hash = '';	
    endif;?>
    <a href="<?php echo get_page_link($parent_id).'#'.$link_hash; ?>" title="<?php echo get_the_title($parent_id);?>" >

    Then go to your appearance > widgets. Add a text widget into one of your footer widget areas and add this js:

    <script type="text/javascript">jQuery(document).ready(function ($) { 
    var url = document.location.toString();
    if (url.match('#')) {
    $('#portfoliowrapper').isotopeb({ filter: '.'+url.split('#')[1] });
    var $optionSets = $('#options .option-set');
    var $this =  $optionSets.find('a[data-filter=".'+url.split('#')[1]+'"]');
    if ( $this.hasClass('selected') ) {return false;}
    var $optionSet = $this.parents('.option-set'); $optionSet.find('.selected').removeClass('selected'); $this.addClass('selected');
    }
    });</script>

    Ben

    In forum: Pinnacle Theme

    In reply to: Code

    #122671

    You can add something like that in your footer widgets area. Apperance > widgets.

    Ben

    #122569

    Your screenshot isn’t properly hosted online so I can’t see it. You may want to use a service such as this so we can see the image:
    postimg.org

    WooCommerce does have it’s own price filter option though. You can add that to a sidebar via Appearance> Widgets. Simply assign the WooCommerce Price Filter area to the area that you’d like it to appear.

    Does this help?

    -Kevin

    In forum: Pinnacle Theme

    In reply to: Menu problem

    #122512

    Thank you for your help.

    For the topbar, I disable the widget area for test and I forgot to enable. That’s ok now, you can check 😉

    #122489

    1. The only way to re-arrange things like that would be to use a child theme and change when items are added. But a simply option would be to add your search and social icons though a widget. Then they would both show on the right or left side depending on your settings.

    So in your theme options > topbar options enabled the topbar widget area. Then go to appearance > widgets and add a search and social widgets into the widget area.

    2. Help me understand what your wanting. There are three even columns. If you don’t want the text or content within the widgets to be centered is there a way you can post a screen shot of how you are wanting this to look?

    Ben

    In forum: Virtue Theme

    In reply to: Topbar call to action

    #122408

    Hey Stephenie,

    Would it work for you to first go into theme Options> Top Bar settings> and enable the topbar widget area. Be sure you’re turning off the search and the cart in the same area.

    Then, add a text widget to the topbar via Appearance> Widgets. The text will appear to one side at first, but after you get it configured, post a link to your site and I’ll be able to center the widget with CSS.

    Let me know if that works for you!

    -Kevin

    In forum: Pinnacle Theme

    In reply to: Top bar additions

    #122266

    Hey,
    You can either use the icon menu options (theme options > topbar settings) or you can enable the topbar widget area (theme options > topbar settings) and add whatever widgets you would like in the appearance > widgets area to the topbar widget area.

    Ben

    In forum: Virtue Theme
    #122110

    Hi Malini,
    The topbar search won’t work if the topbar widget area is enabled. You would have to add your search bar as a widget. I would be happy to provide css to style the widget area as you want, you would just need to add your widgets so I know what css to give.

    Hannah

    In forum: Virtue Theme
    #122068

    You can access the widget from Appearance > Widgets and place it into any widget area. Or if you want to add this to a page you can use page builder.

    Hannah

    In forum: Pinnacle Theme

    In reply to: Portfolio link

    #121835

    THANK YOU !

    On the homepage, the Social Share button doesn’t show after content, even if i check “before and after” it only shows on top of the page.
    Is there another way to put the simple SHARE button at the bottom of the homepage, like on the Homepage widget area ?
    Or does it have a shortcode, maybe ?

    In forum: Virtue Theme

    In reply to: Logo layout and widget

    #121712

    Hey Eszter,

    You can set the widget area in the header by going into Theme Options> Main Settings, and finding “Logo Layout (Standard Header only).”

    Select the farthest right option for the widget area.

    Then assign widgets to the header in Appearance> Widgets.

    Let me know if you’re able to figure it out!

    -Kevin

    #121695

    Hi! I’d like to use the widget area next to the logo but I don’t know how. Header syle: Standard, Logo layout: 4. Can you help me? And what the image size is have to be? Thanks, Eszter
    url: brainturbo-veszprem.hu

Viewing 20 results - 1,321 through 1,340 (of 2,437 total)