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 '
-
AuthorSearch Results
-
In forum: Virtue Theme
In reply to: Problem with Site Origin Post Carusel
Hi there,
I’m trying to create a new home page by using page (page builder with pinnacle widgets) for the entire home page.
This is my 4th attempt to create a new home page but after a while, after updating and review the page it goes almost blank.*Login to see link iday/home4/
I’m using the pinnacle widgets which suddenly are not appearing on the page only the writing (which is not a theme widget).
Can someone please help. I have already deactivated all plugins and can’t find the problem!!!In forum: Virtue ThemeIn forum: Ascend ThemeIn reply to: Sidebar Text Widget
Thanks, Kevin. I might consider some of those options, but this is for a client who isn’t html literate.
What I’m after is pretty simple. I’d like to have the utility of a typical MCE editor (paragraph, heading, lists, line breaks, paragraph breaks, etc.) in the sidebar. The Black Studio TinyMCE Widget usually works just fine for that. For some reason though in this instance, with Ascend, the paragraph breaks are not working. I just tested at one of my sites with Virtue, and they work properly. Line breaks also don’t appear when I use the Kadence Info Box – I don’t know if that one is designed to show them or not.
For example, text that should look like this:
Here’s an idea.
Here’s another idea.
—
Looks like this instead:
Here’s an idea. Here’s another idea.
In forum: Ascend ThemeIn reply to: Add email field to Ascend: Social Links Widget
May 1, 2019 at 1:41 pm #224533Hey,
You would have to use javascript for this. In theme options > header and footer scripts, you would have to add this to the header scripts:<script type="text/javascript"> jQuery(document).ready(function ($) { $('.kadence_social_widget .googleplus_link').attr('data-original-title', 'Email Us'); $('.kadence_social_widget .googleplus_link .kt-social-title').html('Email Us'); }); </script>Ben
In forum: Ascend ThemeIn reply to: Sidebar Text Widget
Hello,
I’m not familiar with that feature of the visual editor widget, but you should be able to just add html to the text editor of it and edit your tags that way.
You can also add raw html to a simple text widget if that’s what you’re trying to do. Another option is to use page builder on your site. Then you’d have access to all of the widgets and options that come with the plugin using the layout builder widget.
Some more specific examples of what you’re trying to accomplish would be helpful in determining the best solution.
-Kevin
In forum: Ascend ThemeTopic: Sidebar Text Widget
I’m looking for a way to add more formatting to sidebar content than the default Text widget allows.
I normally use the Black Studio TinyMCE Widget, but it seems that for some reason it is not inserting P tags, even when the “Insert P Tags” box is checked in the lower left of the panel.
Do you have a suggestion for a different plugin widget, or happen know why the MCE I’m using isn’t working right? (I currently have it disabled.)
I’m using the Ascend Info Box widget for now, but there again it doesn’t allow P breaks either, and is really set up to use icons, which I don’t need. It forces various design elements that I don’t want.
In forum: Ascend ThemeIn reply to: Add email field to Ascend: Social Links Widget
In forum: Ascend ThemeIn forum: Membership ForumsIn reply to: Kadence Blocks on other editors
Hi Kevin,
thank you for your answer. I’m finding difficulty with the editor specially in the building of columns and to drag and drop duplicate widgets. I know there is the “column block” but I don’t know how can I put into duplicate widget. I don’t know if I explain well…thank you!In forum: Virtue ThemeTopic: Vitrue Carousel Widget
Hi there,
I have some woocommerce products displaying on the virtue carousel. It should display one product at a time. It is currently showing 2 small thumbnails and a scrolling/loading wheel that does not stop!
You can see it in action here:
website password: MYSHOP1978
In forum: Virtue ThemeIn reply to: search on top of the menu
Hey Carlos,
There isn’t a built-in function for this, but as a workaround, you could enable the header widget area from Theme Options > Main Settings. Then add a search widget to your header widget area from Appearance > Widgets. Then to align it all, add this to your custom css box in Theme Options > Advanced Settings:@media (min-width: 992px) { .col-md-4.clearfix.kad-header-left { width: 100%; margin: auto; text-align: center; } #logo { display: inline-block; } .col-md-8.kad-header-widget { width: 100%; text-align: center; } .widget-1.widget-first.header-widget-area-header.widget_search { display: inline-block; margin: auto; } }Let me know how that works for you!
Hannah
In forum: Ascend ThemeHey Stephen,
I would recommend using a shortcode like this:[products limit="8" columns="4" category="hoodies"]
You can paste that into your static homepage or into a text widget in your home widget area.
You can remove the product carousel by disabling it from the homepage layout manager in Theme Options > Home Layout.
The image size will depend on the number of columns you use.
Hope that’s helpful!Hannah
In forum: Ascend ThemeIn reply to: Put link behind text editor widget
April 26, 2019 at 9:43 am #224126You could use the custom html widget instead of the text block which would prevent the interpretation that happens when you switch from visual and text.
The way you are adding this is not great for someone to edit, ideally you would find a widget that outputs what you want without the need to force a link to cover the container.
I was looking around and found this plugin, might work really well for you: https://wordpress.org/plugins/make-column-clickable-elementor/
Ben
In forum: Ascend ThemeIn reply to: Put link behind text editor widget
April 25, 2019 at 5:04 pm #224065Hey,
You would have to wrap all your content in a link, for example:<a href="#yourlink"> // All the text box content </a>It’s important to note that you can’t add a link inside of a link so your inner link has to be removed.
There isn’t a way to add a link “behind” content be your other option could be to place a link at the bottom of your text box with a custom class.
<a href="#yourlink" class="make-link-fill-widget"></a>Then using css you can force that link to fill the container:
.elementor-text-editor { position: relative; } .make-link-fill-widget { position:absolute; left:0; right:0; top:0; bottom:0; }I hope that helps,
Ben
In forum: Ascend ThemeHi,
I use the ascend theme in combination with elementor on *Login to see link
On the right hand side of the homepage I have 6 blue blocks with text inside. I used the text editor widget for this.
I have to put a link behind the blue blocks but i’m only able to link the white text inside.
How can I put a link behind the hole block?In forum: Virtue ThemeIn reply to: Blog Archive Pages – Reverse Order
April 24, 2019 at 11:05 am #223909Hey,
Need to clarify some things. A blog archive is not a page. Archives are categories or tags for example and they don’t represent a page in the admin. They are linked to internally and created through an archive template. If you are wanting to edit those archives and change the way posts are queried then you need to use a child theme.If you are creating a custom page and you just want to add some blog posts to it then you can use a shortcode regardless of what editor you are using, for example:
[kad_blog items="10" orderby="date" order="ASC"]If you are using the WordPress block editor (Gutenberg) then you can use Kadence Blocks and Kadence Blocks Pro (comes with theme) and add a post grid/carousel block that would allow you to add this more visually and set the order.
If you are using Siteorigin you can use their loop widget but beware it’s pretty easy to mess up the settings and create an endless loop. I would suggest using the shortcode over it.
Ben
In forum: Virtue ThemeIn reply to: Blog Archive Pages – Reverse Order
Ah ok, I thought you were using the block editor due to referring to it as a block. In page builder there isn’t a widget that is as functional as the post grid block in Kadence Blocks.
I’ll send this over to Ben to see what the best method for adding a reverse order blog.
-Kevin
In forum: Ascend ThemeIn reply to: Ascend: Gallery widget not working
In forum: Ascend Theme -
AuthorSearch Results


