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 'site'
-
AuthorSearch Results
-
In forum: Virtue Theme
Topic: removing logo from home page
Hi there.
Could you please kindly supply with some css coding. I have a band at the top of my home page above a rev slider which I do not want. Any assistance would be greatly appreciated. One of your colleagues sent me some coding to hide the banner but I decided to go with a logo on the site and this seems to have put another space on the home page above the slide.
Kind regards, Paul
Here is the link
*Login to see linkIn forum: Pinnacle ThemeIn reply to: Site Header disappeared
February 14, 2019 at 11:29 pm #216652Hey,
If we could do something to define how ad blockers read a site we would be happy to. The issue is that if we could then ad companies could too and then ad blockers wouldn’t work because ad companies would just define that their ad should show.The best thing is for you to “report” the issue as a user and link to your site. Then if the ad blocker support offers a fix that you or we can implement I would be more then happy to, but in most of these cases, the fix has to come from there end.
Does that make sense?
Ben
In forum: Membership ForumsIn reply to: Kadence Simple Social Share – No Instagram
February 14, 2019 at 11:20 pm #216647Hey Josh,
You can’t “share” to Instagram. If you could share a site then I would add that to the simple sharing plugin.
If you would like to “link” to an Instagram account then you would use a social linking widget. Sharing is totally different than linking. Your sharing buttons don’t link to your fecebook, they create a post of the user to share on their own account about your webpage.
Does that make sense? We are not using sharing buttons in our footer. Those are social profile links.
Ben
In forum: Virtue ThemeIn reply to: Page Loading Issue
February 14, 2019 at 11:11 pm #216642You are using MailChimp embed. Which causes problems with WordPress because it reloads jQuery outside of the WordPress core version. I can’t emphasize enough how unstable that makes your site. In general, it will work but on a slow network, it will break javascript functionality.
So while I was able to test on a Motorolla Moto G4 and it worked because I was on a fast network I did dig into your site a little bit and saw that you are using MailChimp embed.
We recommend using plugins to load mailchimp: https://www.kadencewp.com/getting-started-with-mailchimp-for-wordpress/
Ben
In forum: Ascend ThemeFebruary 14, 2019 at 10:16 pm #216635Hi,
finally i will give a try to Elementor (free) ( i always use siteorigin pagebuilder) but i immediately found a difference: with page builder, if i want to build a more complex template in a widget i used to add a pagebuilder widget into the footer widget and there i used to build my layout…. with elementor i cannot find that widget … do you have an idea to solve my problem?thank you very much
AngeloIn forum: Virtue ThemeTopic: Line Break in Virtue Widget
Hi Ben and Hannah and you guys
I’m working on a site with the split content virtue widget in elementor, and I have two questions.
How can we insert a line break in the title field of the split content (I tried <br> and </br> but no bueno.
*Login to see linkAlso can we control the speed of the split closing?
Thanks!
Mark – your evangelist all over the web. Don’t DIVI, GO KADENCE!!In forum: Virtue ThemeIn reply to: Change Site Identity
I had also changed the tagline in settings – general. But it doesn’t seem to impact the site identity. When the browser is minimized and the mouse hovers over it, I see the Virtue test. If I start typing the site name in the address bar in the browser, same thing. I have looked all over through the WordPress options and settings pages but cannot find the text that needs to be changed.
In forum: Pinnacle ThemeTopic: Feature Image Not Showing
February 14, 2019 at 2:13 pm #216596Hi,
On the latest post on my site (Best Travel Booster Seats), the feature image is not showing on my homepage (*Login to see link ). I can’t see anything that I have done differently. I always size the feature image to be 600 x 750px. I have also tried to drop in another feature image (that is working from another post) and it still doesn’t work. Any thoughts?
Thank you.
Tara
In forum: Virtue ThemeTopic: Change Site Identity
Hi,
For my site http://www.amundson.me, I have changed the site tagline in customizing, site identity. However, the description for the site is still showing as “Virtue Premium – Demo Site for a Powerful WordPress Theme”.
Where can I change it so that it no longer shows the demo site description?
Erling
In forum: Ascend ThemeIn reply to: KT Share on blog archive
Try adding this function to your function.php file in your child theme:
add_action('ascend_post_excerpt_footer', 'custom_share_in_excerpt'); function custom_share_in_excerpt() { echo do_shortcode('[kadence_simple_share]'); }If you do not yet have a child theme on your site, you can download one from here:
http://www.kadencethemes.com/child-themes/-Kevin
In forum: Virtue ThemeIn reply to: bugette with topbar social icons?
In forum: Virtue ThemeIn reply to: Parallex Settings
In forum: Virtue ThemeIn reply to: Parallex Settings
In forum: Virtue ThemeTopic: Parallex Settings
Hi,
I am building a couple of websites and using the parallex option but it’s not seeming to work as smoothly as it should.
I have had a look at some of your demo sites using parallex and the background seems to stay in position, with mine it is slowly moving up with the page when I scroll??
Are there any settings I can tweak? I’ve turned it off on one of the sites I wanted to use it with as it just didn’t look right??
Will post the link below.
Thanks, for your help.
Mel
In forum: Ascend ThemeTopic: Kandence Slider
Just to let you know recently the slider is not showing all the text I have previously had on the slider,
*Login to see link
In the backend it shows it positioned nicely but where its positioned on the image it does not appear on the site and cuts some of the added text fields i’ve addedCan you advise many thanks
Steve
In forum: Virtue ThemeIn reply to: Page Loading Issue
February 13, 2019 at 12:15 pm #216491Hey,
It’s possible your server, firewall, or robots text is blocking Google from accessing the scripts. It’s also possible you have so much content to load or that your server is particularly slow and so the mobile test just times out of trying to load all the scripts.I suggest you talk with your hosting provider and see if they are in fact blocking google wit some security measure, else you can look into optimizing your site better as that could resolve.
Or you can do what many do and ignore the test. Do some searches and you will find tons of people that get the same error for no apparent reason. The mobile test just simply isn’t very good.
If you are worried about mobile usability the best testing is done with a real mobile phone and as a real person, a bot only gets you so far.
Ben
In forum: Membership ForumsIn reply to: both side sidebar
February 13, 2019 at 11:21 am #216477Using a child theme,
Add this into the function.php file:
add_action( 'virtue_sidebar', 'custom_second_sidebar_markup', 40 ); function virtue_sidebar_markup() { <aside id="second-ktsidebar" class="kad--second-sidebar" role="complementary" itemscope itemtype="https://schema.org/WPSideBar"> <div class="sidebar"> <?php dynamic_sidebar( 'sidebar1' ); ?> </div><!-- /.sidebar --> </aside><!-- /aside --> }Then post a link to your site with that added and I can get you some css to make that work.
Ben
In forum: Virtue ThemeIn reply to: Different social icons shape in footer
CSS will not effect your speed at all. If you are concerned about site speed, I suggest making sure you follow the steps outlined here:
https://www.kadencewp.com/need-for-speed/-Kevin
In forum: Virtue ThemeTopic: Kadence Galleries
Dear Kadence,
While using the K Gallery plugin for our press-site .. it only seems to show the first 10 items in a gallery. Can we change this amount manually? We have some categories with more than 10 items.
Something like:
[kadence_album slug=”…” amount=”20″]Thanks in advance.
In forum: Virtue Theme -
AuthorSearch Results


