Hello Napoli Team,
can you please update woocommerce file templates
I can see this “errors” in WordPress/Woocommerce
napoli/woocommerce/emails/plain/customer-new-account.php version 3.7.0 is deprecated. The kernel version is 6.0.0,
napoli/woocommerce/emails/plain/email-addresses.php version 3.4.0 is deprecated. The kernel version is 5.6.0,
napoli/woocommerce/order/form-tracking.php version 3.6.0 is deprecated. The kernel version is 6.5.0,
napoli/woocommerce/order/order-details-customer.php version 3.4.4 is outdated. The kernel version is 5.6.0,
napoli/woocommerce/single-product/add-to-cart/grouped.php version 4.0.0 is deprecated. The kernel version is 4.8.0,
napoli/woocommerce/single-product/add-to-cart/variable.php version 3.5.5 is deprecated. The kernel version is 6.1.0
Thank you,
Peter
Hello, on mobile, the post slider moves up and down depending on the length of the excerpt while the posts are transitioning, how do I fix this.
]]>Hi,
How to hide featured image on pages?
Thanks
]]>Hello. How are you Napoli?
If I update my theme, does the previous settings of theme (customized) change?
As I have made lots of changes in the theme and i dont remember them clearly, I wonder if you
]]>Just in case…
I checked style.css in css validator websites and I got Parsing error for the following code :
/* Fix Flexbox issues for Safari 6.1-10.0 */
@media screen and (min-color-index:0) and(-webkit-min-device-pixel-ratio:0) {
@media {
.post-layout-columns .post-wrapper .post-column,
.widget-magazine-posts .magazine-grid .post-column {
margin-right: -1px;
}
}
}
]]>
I have hatom (markup: microformats.org) errors on my google search console with the following errors :
Missing: updated
Missing: author
Missing: entry-title
Hello,
Does anybody know how to plug in the widget titled “Recommended” in the Napoli demo theme? https://preview.themezee.com/?demo=napoli
I really like the page such as it’s presented and would like to essentially copy the same layout. I can’t locate this “recommended” box feature, and there is only 1 “magazine” widget for the free version.
Perhaps I should try another ThemeZee theme…?
This is the site “under development”:
https://chez-close.com/wordpress/
Many thanks in advance for any help!
All the best,
Denise
]]>Hi,
Great theme! I’m displaying my blog posts on the home page with the post slider (not using magazine grid layout).
The default posts is displaying 6 posts, then the rest are paginated.
Can I have more posts showing on my home page? If so, where can I change?
Thanks,
Ashley
the sidebar of your theme isn’t compatible with some mobile browsers and it disappears. I had to add the following css code to my style.css to fix the issue:
@media only screen and (max-width: 60em) {
.sidebar {display:block !important; clear: both; }
}
plz remember to update your next version with the following fix…
have a good one
]]>I guess all I need is located in navigation.js but since I’m not a coder and I’m just trying to play with codes I have no idea how to figure it out…
/**
* Navigation Menu Plugin
*
* Copyright 2016 ThemeZee
* Free to use under the GPLv2 and later license.
* https://www.gnu.org/licenses/gpl-2.0.html
*
* Author: Thomas Weichselbaumer (themezee.com)
*
* @package Napoli
*/
(function($) {
/**--------------------------------------------------------------
# Add Desktop Dropdown Animation
--------------------------------------------------------------*/
$.fn.addDropdownAnimation = function() {
/* Add dropdown animation for desktop navigation menu */
$( this ).find( 'ul.sub-menu' ).css( { display: 'none' } );
$( this ).find( 'li.menu-item-has-children' ).hover( function() {
$( this ).find( 'ul:first' ).css( { visibility: 'visible', display: 'none' } ).slideDown( 300 );
}, function() {
$( this ).find( 'ul:first' ).css( { visibility: 'hidden' } );
} );
/* Make sure menu does not fly off the right of the screen */
$( this ).find( 'li ul.sub-menu li.menu-item-has-children' ).mouseenter( function() {
if ( $( this ).children( 'ul.sub-menu' ).offset().left + 250 > $( window ).width() ) {
$( this ).children( 'ul.sub-menu' ).css( { right: '100%', left: 'auto' } );
}
});
// Add menu items with submenus to aria-haspopup="true".
$( this ).find( 'li.menu-item-has-children' ).attr( 'aria-haspopup', 'true' ).attr( 'aria-expanded', 'false' );
/* Properly update the ARIA states on focus (keyboard) and mouse over events */
$( this ).find( 'li.menu-item-has-children > a' ).on( 'focus.aria mouseenter.aria', function() {
$( this ).parents( '.menu-item' ).attr( 'aria-expanded', true ).find( 'ul:first' ).css( { visibility: 'visible', display: 'block' } );
} );
/* Properly update the ARIA states on blur (keyboard) and mouse out events */
$( this ).find( 'li.menu-item-has-children > a' ).on( 'blur.aria mouseleave.aria', function() {
if( ! $( this ).parent().next( 'li' ).length > 0 && ! $( this ).next('ul').length > 0 ) {
$( this ).closest( 'li.menu-item-has-children' ).attr( 'aria-expanded', false ).find( '.sub-menu' ).css( { display: 'none' } );
}
} );
};
/**--------------------------------------------------------------
# Reset Desktop Dropdown Animation
--------------------------------------------------------------*/
$.fn.resetDropdownAnimation = function() {
/* Reset desktop navigation menu dropdown animation on smaller screens */
$( this ).find( 'ul.sub-menu' ).css( { display: 'block' } );
$( this ).find( 'li ul.sub-menu' ).css( { visibility: 'visible', display: 'block' } );
$( this ).find( 'li.menu-item-has-children' ).unbind( 'mouseenter mouseleave' );
$( this ).find( 'li.menu-item-has-children ul.sub-menu' ).each( function() {
$( this ).hide();
$( this ).parent().find( '.submenu-dropdown-toggle' ).removeClass( 'active' );
} );
/* Remove ARIA states on mobile devices */
$( this ).find( 'li.menu-item-has-children > a' ).unbind( 'focus.aria mouseenter.aria blur.aria mouseleave.aria' );
};
/**--------------------------------------------------------------
# Add submenus dropdowns for mobile menu
--------------------------------------------------------------*/
$.fn.addMobileSubmenu = function() {
/* Add dropdown toggle for submenus on mobile navigation */
$( this ).find('li.menu-item-has-children').prepend('<span class=\"submenu-dropdown-toggle\"></span>');
$( this ).find('li.page_item_has_children').prepend('<span class=\"submenu-dropdown-toggle\"></span>');
/* Add dropdown animation for submenus on mobile navigation */
$( this ).find('.submenu-dropdown-toggle').on('click', function(){
$( this ).parent().find('ul:first').slideToggle();
$( this ).toggleClass('active');
});
};
/**--------------------------------------------------------------
# Setup Navigation Menus
--------------------------------------------------------------*/
$( document ).ready( function() {
/* Variables */
var main_menu = $('.main-navigation-menu'),
header_menu = $('.header-navigation-menu'),
menu_wrap = $('.main-navigation-menu-wrap');
/* Add Listener for screen size */
if(typeof matchMedia == 'function') {
var mq = window.matchMedia('(max-width: 60em)');
mq.addListener(widthChange);
widthChange(mq);
}
function widthChange(mq) {
if (mq.matches) {
/* Reset desktop navigation menu dropdown animation on smaller screens */
main_menu.resetDropdownAnimation();
header_menu.resetDropdownAnimation();
/* Copy header navigation items to main navigation on mobile screens */
header_menu.appendTo( menu_wrap ).addClass('mobile-header-menu');
} else {
/* Add dropdown animation for desktop navigation menu */
main_menu.addDropdownAnimation();
header_menu.addDropdownAnimation();
/* Copy Header Navigation back to original spot */
$('.mobile-header-menu').removeClass('mobile-header-menu').appendTo( $('#header-navigation') );
}
}
/* Add Menu Toggle Button for mobile navigation */
$("#main-navigation").before('<button id=\"main-navigation-toggle\" class=\"main-navigation-toggle\"></button>');
/* Add dropdown slide animation for mobile devices */
$('#main-navigation-toggle').on('click', function(){
menu_wrap.slideToggle();
$( this ).toggleClass('active');
});
/* Add submenus for mobile navigation menu */
main_menu.addMobileSubmenu();
header_menu.addMobileSubmenu();
} );
}(jQuery));
Any help would be appreciated
]]>Installed theme. Set menu, and it shows up fine on my laptop. No menu shows on my mobile phone though. What do I need to do to show the menu on mobile?
]]>Good day,
I purchased Napoli photography theme from Forest theme and feeling lost and discouraged. I am a beginner at this, and I really hope you can help.
I installed the theme successfully, and its pluggings that were suggested by the system. When I try to edit website, it doesn’t show me any options for Home page nor menu styles (for example, if I want to place menu on the left side…there is only top navigation option). I also don’t see drag and drop option promised when I was purchasing the theme.
Please, help..
Natallia
]]>Hi,
is it possible to change the font type for the headlines of the blog and for the recipes?
With best regards,
lieblingsrezepte
https://www.martinas-lieblingsrezepte.de
Hi,
yesterday we changed theme from Omega to Napoli, but all widgets have been lost and had to be created new. It was the first time we changed theme and don’t know if it is normal that all widgets are lost, or if it was a mistake we made or a mistake importing widgets from the theme. We created widgets new but for the future it would be helpful to know if this problem is normal for all themes or it we made a mistake.
With best regards,
lieblingsrezepte
how do I increase the length of an excerpt on posts and the front page slider?
]]>Hi there
I would like to know what I need to do (of it is possible ofcourse) to:
a) see a commentcount in my entry-meta
b) make pagination numeric
When I add my logo, a .png file, using customization Site Identify, and then check the page using validator.w3.org, I get two errors that go away when I remove the logo:
Error: The itemprop attribute was specified, but the element is not a property of any item.
From line 128, column 6; to line 128, column 83
x”>?? <img w
Error: The itemprop attribute was specified, but the element is not a property of any item.
From line 128, column 84; to line 128, column 229
rop=”url”>
]]>