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: Ascend Theme
I initially thought this might be an issue with the cache not being flushed on my iPhone (even after explicitly clearing it), so I grabbed someone else’s phone that had never visited this site (it’s brand new) and the results are the same.
I’ve defined a custom logo for mobile and I’ve also enabled the mobile topbar with icon and widget area and even placed something in the widget area. None of this is showing up. I’ve set parameters for height and width for the mobile header, done everything I can think of. There are no plugins installed other than those that come with Ascend, and I’m running the latest version of everything.
I’m baffled!
In forum: Virtue ThemeTopic: Queries with Customization
February 2, 2021 at 12:25 am #263099Hello Team
Thank you so much for the wonderful theme that you have created. I have developed e-commerce website with Virtue theme. I have few queries with the customization. *Login to see link is my website.
Question 1:
I used Text widget for top bar widget area to display phone number and email. Phone number is displaying fine with android devices & desktop but for iphone phone number is not displaying. I am unable to find a solution for the same.Question 2: Top bar icons are displaying differently in homepage & rest of the pages. Not sure what is making this change
Question 3: I am using elementor for Home page. I would like to use same content as of Shop Page (*Login to see link in my home page products tab. Is there any way I could import shop page content to the Elementor Section.
Will be happy to provide any additional details if requested.
Regards
Ashokkumar MIn forum: Kadence BlocksIn reply to: Is modal supposed to pop up on page load?
Hi Amy,
The modal pop-up is triggered by a click. See examples here: https://www.kadenceblocks.com/modal-block/
If you’re wanting a modal to be triggered by scroll you could use the Kadence Widget Dock plugin or another plugin similar. https://www.kadencewp.com/product/kadence-widget-dock/
Hope that’s helpful!Kindly,
HannahIn forum: Virtue ThemeIn reply to: Custom or 2nd Search Results Page
Ivory Search?
I guess my solution would be to use a child them and make a new page template using your search.php and editing it to fit.
Something I wanted to avoid and still do 🙂
Anyways I came up with a work around using a custom sidebar for the search results page.
Putting the widget(s) for both the standard search tool and below it the Plugins single category search tool.So now the sidebar has the 2 search options. 1.) “Entire site” & 2.) “Videos Only”
The setting in Theme Options> misc. > search settings to have the newly created sidebar and not search tool/bar at the top of the search results page.
This all worked….until this morning anyways. The setting is clearly set to “False” in regards to the top of the page search tool.
but now it is showing again if there are no results???
Images attachedNEW NOTE: I may have mis-spoke. It looks like the search results page does NOT DISPLAY a search tool at the top of the page WHEN there are results!
It only displays at the top of the page when there are NO RESULTS.
Any way to change that?-
This reply was modified 5 years, 3 months ago by
Frank.
In forum: Virtue ThemeIn reply to: CSS // Change border px size
Hey Guido,
Try adding this to your custom css box in Theme Options > Advanced Settings:.panel-widget-style { border: 3px solid #ededed !important; } .home .panel-widget-style.panel-row-style.panel-row-style-for-8-8 { border: 0 !important; }Hope that helps!
Hannah
In forum: Membership ForumsIn reply to: Kadence Simple Share
In forum: Kadence ThemeJanuary 25, 2021 at 3:35 pm #262887Hi there – I have no idea if this is Kadence specific, or just general WordPress but thought I’d start here.
Website: beverleycigarstore.com
Client wanted two fonts: Italianno for Header, and Italiana for everything else. Uploaded the new fonts, and then noticed on mobile that it’s extremely difficult to read his store address in Italiana, so it needs to change. Was able to change it everywhere else, but could not for the life of me figure out how to edit the font family in the footer. I most definitely did not add or edit any CSS to change it the first time from the default font, but can’t seem to find how I did it.
Any ideas? Thanks in advance for your help!
Emily
In forum: Virtue ThemeIn reply to: Category Widget Not Working Properly
January 25, 2021 at 10:25 am #262863I’m guessing the updates to WordPress effectively broke the original CSS changes? That probably means that the category widget isn’t part of the Kadence theme. If so, is there a Kadence replacement that works better with this theme?
-
This reply was modified 5 years, 3 months ago by
Chris Savage.
In forum: Kadence ThemeIn reply to: Moving from Virtue to Kadence theme
Hi,
Thanks for reaching out!1. I am seeing this showing. What browser are you using?
2. When in the customizer, click the edit icon when hovering over the footer as seen in screenshot. Then you’ll see layout options for the footer, including the ability to set the container width.

3. That will pull from your color palette. If you’re wanting something different you can use css.
4. I would suggest using the Icon List block from Kadence Blocks. Then you can use a plugin like the following to add it to your widget area as a shortcode: https://wordpress.org/plugins/reusable-blocks-extended/
5. The same as #2, but for the header instead of the footer.
6. Sorry, can you clarify? Thank you!
7. From the customizer click the edit icon when hovering over the search then open the design tab. There you can add a border and extra padding to create the same look as your current theme.
8. Can you confirm you’re not overriding this setting in your edit pages?
9. Is your homepage a static page? You can remove the page title from your home edit page.
Hope this is helpful!
Best,
HannahIn forum: Membership ForumsMy current checkout is made with Kadence Woocommerce Elementor Pro. Though I am looking to transition off Elementor soon. However, after our site launch, we want to add a the option to donate a small amount of money to a charity during checkout.
Are there any plugins with known conflicts with Kadence’s checkout widgets? And ones that are known to work?
In forum: Ascend ThemeIn reply to: Target blank in button shortcode
In forum: Membership ForumsAs of the most recent version of Kadence Blocks (1.9.14), custom buttons that are loaded on a page through a widget, the color and transparency of the button isn’t honored. The hover color and transparency is honored though. On regular pages/posts, it’s fine. Here’s an example: *Login to see link The home page is widgetized using the Genesis Featured Page widget. In the section with four horizontal buttons (web words, media guru, etc.) if you inspect the element you’ll see the background color is #555555 and transparent. What it should be as defined in the page is a color of #BCD2D4 and transparency of 1. I temporarily rolled back to a previous version of the plugin (1.9.9) and it’s fine. This is happening on multiple websites with multiple themes, all Genesis child themes. So something happened between that version and 1.9.14.
In forum: Pinnacle ThemeIn reply to: username shortcode
Hello Arjan,
Thank you for reaching out to us.
There is no built-in shortcode within the Pinnacle theme for this. What you can do is install a code snippets plugin and add this PHP code snippet:
function show_current_username( $atts ) { global $current_user, $user_login; wp_get_current_user(); add_filter('widget_text', 'do_shortcode'); if ($user_login) return 'Welcome ' . $current_user->display_name . '!'; else return '<a href="' . wp_login_url() . ' ">Login</a>'; } add_shortcode( 'show_loggedin_as', 'show_current_username' );This will produce a shortcode that you can call using
[show_loggedin_as].Hope this helps and let us know if we can assist you further.
Regards,
KarlaIn forum: Virtue ThemeIn reply to: Category Widget Not Working Properly
January 21, 2021 at 8:09 pm #262795I hope you don’t mind me resurrecting this thread. I put my site back up and used the same theme as before (Virtue), however, the css code you previously gave me seems to have no effect on the Category Widget. I wonder if you might be so kind as to help me get this working again. Here is a new link to the site showing the issue and an image of how it looked fixed last time. Thanks for any and all help.
P.S. – If there is a Kadence replacement, please let me know.
In forum: Ascend ThemeHey,
I think using CSS is the best way to achieve this. If using the Ascend Post Grid widget you can use the following css to make your images 100px.a.imagegrid_item.lightboxhover, img.attachment-widget-thumb.wp-post-image { width: 100px; }Let me know how that works for you!
Best,
HannahIn forum: Ascend ThemeIn forum: Ascend ThemeIn reply to: Social Links: Github
Hi Sebastiaan,
The Ascend social links widget is meant to be basic. I suggest using a plugin like this: https://wordpress.org/plugins/ultimate-social-media-icons/
Hope it helps!Best,
HannahIn forum: Ascend ThemeJanuary 12, 2021 at 9:54 am #262499Is it possible to have a banner with text either above the topbar or between the topbar and header?
I have some text within the topbar widget – BUT I would like it to be centred and above the menu – or below – just so it’s more visable.
How can I do this?Here’s the site:
*Login to see linkThe text I am working with is the “free delivery over £50” part…..
Many thanks
Nic
-
This topic was modified 5 years, 3 months ago by
Nicola Crossley.
In forum: Ascend ThemeTopic: Social Links: Github
January 10, 2021 at 11:51 am #262452I just wanted to put my Github profile within the social links widget, when I noticed it is not among the options.
Could you please add Github to the social links widget?In forum: Membership ForumsIn reply to: modify footer widgets
-
This reply was modified 5 years, 3 months ago by
-
AuthorSearch Results





