Issue with Kadence Slider on internet explore. All other websites it works.
*Login to see link
Wow I finally found the plugin. I must have had a chached version of my site working on desktop that was different than what was on my phone.
Thanks!
Brady
Hey guys, got the site http://www.calordelatierra.cl, and it goes to the mobile version of the header at a width value I would like to change, but don´t know how. The problem is that for small lap top screens it shows the mobile version which I don´t want. With the inspect element tool I can see is turning to mobile version when width is around 1050 px, How can I change that value?
saludos desde Chile
Hello,
I’m running into a problem on one of my sites (*Login to see link Only on a mobile device, when clicking add to cart on the product page (not the shop page), the product is added, the page refreshes, and then the product is removed from the cart seconds later. Not quite sure what is going on, and it’s strange that this is only on mobile. Adding to cart from the shop page works fine though.
I know this is a third party plugin issue but I’m wondering if it has anything do to with the theme. I have disabled many plugins and tested to no avail. If you have any ideas that would be great!
Thanks,
Brady
Hey,
Max width isn’t doing that at all.
Your image is center aligned so it’s set with :
display: block;
margin-left: auto;
margin-right: auto;
clear: both;
It’s the display block that makes the image “fullwidth” and it’s just because it’s display block, not because of max-width settings.
The purpose of max width is to make images responsive so that a 1000px image doesn’t force off screen on mobile. Its max width is 100% so it will be contained by it’s container.
On your site because your image is wrapped in a p tag with text align center applied to that p tag you can use this css:
.entry-content p img.aligncenter, .main p img.aligncenter {
display: inline-block;
}
But just note that means that if you add an image and select that it align center but don’t also wrap it with a “text align center” your image won’t align center. so that could create confusion if you add the above css.
Ben
I’m still seeing this CSS take effect on your site:
.entry-content .wp-caption {
margin-top: 0;
}
What exactly are you wanting to change about the images? I’m seeing that they are currently aligned with the paragraphs.
-Kevin
Some time ago and a few updates ago I entered a site wide message. I believe it was part of the theme options. I would now like to remove that message, but I can’t seem to find that option anymore. Who can help me?
Hi Hannah & Kevin,
@Hannah: it creates change, the image becomes static and does not repeat, it’s just not what was intended.
The site as it was build some years ago worked with fixed backgrounds on all images and start slider. Unfortunately i didn’t notice when or on what update this changed.
@Kevin: The image is already center-top. I also tried other background positions.
Thanks,
B.Anders
Hey,
This would all have to be done through custom coding in a chid theme.
This tutorial here outlines how to add to siteorigin stuff: https://siteorigin.com/docs/widgets-bundle/form-building/icons-and-fonts/
In terms of virtue theme options and shortcodes. You can filter in you icon class names through a custom function like this:
add_filter('kadence_icon_list', 'my_custom_icon_classnames');
function my_custom_icon_classnames($icons) {
$my_icons = array(
'my-icon-home',
'my-icon-cog',
'my-icon-star'
);
return array_merge( $icons, $my_icons );
}
Then you would just make sure the css for your icons along with the font is loaded in the front and backed of your site using
function my_custom_icons_css() {
wp_enqueue_style('my_custom_icons', get_stylesheet_uri() . '/css/my_custom_icon_styles.css', false, '1.0.0');
}
add_action('admin_enqueue_scripts', 'my_custom_icons_css');
add_action('wp_enqueue_scripts', 'my_custom_icons_css');
remember to prefix your icon class with something unique so it doesn’t conflict.
Ben
got the same problem that Angelo: would like to reduce the size of the square around social icons, and increase the size of icons. CSS you propose Hannah didn´t work. My site is http://www.calordelatierra.cl
thanks from Chile
Hi guys!
I have a some icon-fonts and I would like to install it to Virtue and SiteOrigin.
How can I do this? Is it possible?
Thanks advance!
Just so you know that plugin does filter all the html as well and so it turns src and srcset into data. What images on your site are you not seeing this happen with?
Ben
This reply has been marked as private.
Hey,
I’m not familiar with that system so I suggest contacting them to see if their product has any implementation with wordpress and woocommerce. It doesn’t seem like it based on the information I’m seeing on their site, but they will be able to tell you for sure.
-Kevin
Are you familiar with this event ticket program that says you can embed a widget on website? And how it may affect woocommerce plugin?
*Login to see link
http://www.rcstone.celebratingyourjourney.com
Hi,
i’m having this strange Parallax on one image (middle of page) where the top of the image appears under the image – and is the only one out of the 3.
I changed images from small to big, the one in the snapshot is my last try and is 3840×2160.
I also commented out all my custom CSS, but still the same, so i have no idea where to look further.
I appreciate your input on this.
Site: xlservices.de
Screenshot: *Login to see link
Thank you,
B.Anders
Hi Ben
please, what’s your email address so I can set up access to our website?
John
Hi Kevin
It is a product category page. It was created through Categories.
I am sending a login to the site in my private message to Ben.
Thanks
John
I have a page that’s set up to display a grid of posts
But I’d like to not have the date and category on that one page
I can’t disable from theme options as my other blogs on that site need categories and dates.
here’s the page:
*Login to see link
Many thanks
Nic