[bug] A few random php bugs/typos

Hi, first of all, thank you for your great theme.

I collected a few small and easily fixable little things:

Typo: at multiple places, parallax is mis-written as parralax. It bugs my eyes when I look at the widget title. :slight_smile:

plugins/shapely-companion/inc/widgets/class-shapely-home-contact.php:
Defaults should contain the phone field:

		$this->defaults = array(
			'phone'        => '',

plugins/shapely-companion/inc/widgets/class-shapely-recent-posts.php:
Defaults typo: limie should be limit:

		$this->defaults = array(
			'limie'   => 5,

plugins/shapely-companion/inc/shapely-navmenu.php:
For unknown (to me) reasons, $_POST[‘menu-item’] is sometimes not set, which triggers an error in function shapely_update_menu_item( $menu_id, $menu_item_db_id, $args ):
if ( count( $_POST[‘menu-item’] ) == 1 ) {
Maybe isset()/! empty() could be added to the if:
if ( isset( $_POST[‘menu-item’] ) && count( $_POST[‘menu-item’] ) == 1 ) {

Hello there,

I hope you are doing well today.

Thanks for posting these issues here. I will pass them along to our developer but you can also raise the issues using this link:

Best Regards,
Support