Hello, I managed to install and use your purchased theme product in general, but I couldn't resolve some problems.
1-) I couldn't remove the shopping bag plugin located at the top of the homepage screen.
2-) I want to remove the preview image section on the Events page or any page, but I couldn't activate the relevant setting in the CSSIgniter Settings section.
3-) I couldn't make the sliders mobile-friendly, they don't fit the screen fully on mobile devices."
1. Do you need to have shop functionality in general? If no please disable Woocommerce plugin from Plugins->All Plugins. If you just want to remove this section add this
.nav-secondary-wrap{
display:none;
}
in your custom CSS box under Customize-▸Additional CSS
2. Add this
.item-thumb {
display: none;
}
in your custom CSS box under Customize-▸Additional CSS to remove it from anywhere
3.This is the way the slider is meant to work, creating a full screen visual effect for the visitor when visiting from mobile. Actually, This is a common technique for images that you want to scale in mobile. The images will adapt their container size. If you look at the demo site you will see the image shrinking as we move towards a narrower width. It is of course obvious that an image with a ration of 16:9 will not be displayed in full in devices like mobile phones. I suggest using a third party slider (Metaslider) instead.
Hello, Thank you for your help. I applied the methods you suggested; 1- I disabled the WooCommerce plugin that I was not using and the problem was solved, thank you. 2- I added the code as you suggested, but it didn't work exactly as I wanted. When I add this code, the preview image disappears from the main section of the page and the text stays. I want it to stay on the pages, but I want it to disappear when I click on the event. I do not want it to disappear on the main page. 3-I will try the plugin you suggested.
4-I also need help with other issues. The name of the songs playing on the radio player is not showing, and I want to add the radio player to all pages.
I believe I solved the issue with the preview image not showing up. The menu I circled in the attached image was not there before, but somehow became active. When I select a different template from here, the preview image does not appear on the page.
Radio song names will not appear if not correctly formatted and properly sended back to the player, In some cases they might not be support depending on your stream server/service.
You want to have the global player in all pages after the header?
I tried the code you provided, it works in desktop format and the image is displayed on all pages as shown in image 1. But it doesn't work on mobile devices and it overlaps with the logo as seen in image 2.
Hello, I managed to install and use your purchased theme product in general, but I couldn't resolve some problems.
1-) I couldn't remove the shopping bag plugin located at the top of the homepage screen.
2-) I want to remove the preview image section on the Events page or any page, but I couldn't activate the relevant setting in the CSSIgniter Settings section.
3-) I couldn't make the sliders mobile-friendly, they don't fit the screen fully on mobile devices."
Attached files: 1.jpg
2.jpg
3.jpg
Hi there,
1. Do you need to have shop functionality in general? If no please disable Woocommerce plugin from Plugins->All Plugins. If you just want to remove this section add this
in your custom CSS box under Customize-▸Additional CSS
2. Add this
in your custom CSS box under Customize-▸Additional CSS to remove it from anywhere
3.This is the way the slider is meant to work, creating a full screen visual effect for the visitor when visiting from mobile.
Actually, This is a common technique for images that you want to scale in mobile.
The images will adapt their container size. If you look at the demo site you will see the image shrinking as we move towards a narrower width. It is of course obvious that an image with a ration of 16:9 will not be displayed in full in devices like mobile phones. I suggest using a third party slider (Metaslider) instead.
Hello,
Thank you for your help. I applied the methods you suggested;
1- I disabled the WooCommerce plugin that I was not using and the problem was solved, thank you.
2- I added the code as you suggested, but it didn't work exactly as I wanted. When I add this code, the preview image disappears from the main section of the page and the text stays. I want it to stay on the pages, but I want it to disappear when I click on the event. I do not want it to disappear on the main page.
3-I will try the plugin you suggested.
4-I also need help with other issues. The name of the songs playing on the radio player is not showing, and I want to add the radio player to all pages.
Attached files: 1.jpg
I believe I solved the issue with the preview image not showing up. The menu I circled in the attached image was not there before, but somehow became active. When I select a different template from here, the preview image does not appear on the page.
Attached files: 1.png
Hi there,
Radio song names will not appear if not correctly formatted and properly sended back to the player, In some cases they might not be support depending on your stream server/service.
You want to have the global player in all pages after the header?
Hi
try this: Open header.php and add
in the end.
Let me know if this worked for you.
I tried the code you provided, it works in desktop format and the image is displayed on all pages as shown in image 1.
But it doesn't work on mobile devices and it overlaps with the logo as seen in image 2.
Attached files: 1.png
2.png
Hi there,
try this
:not(.home) .hero-player {
margin-top: 0;
}
@media(max-width:767px){
:not(.home) .site-logo {
margin-top: 0;
}
}
in your custom CSS box under Customize-▸Additional CSS
Let me know if this worked for you.