• Resolved jb0591

    (@jb0591)


    Do you know if there is a way to export the menu items? I know it is Jetpack’s menu functionality but as you have probably used it the most I do wonder if you know how to export the items. We need to print a list of the items for the kitchen.

Viewing 1 replies (of 1 total)
  • Hi,

    By export you probably mean print. You see, you can export WordPress content in Tools → Export, but reading your question I think you are looking for to print the food menu.

    To do so, you can try some plugin or use some custom CSS such as:

    @media print {
    	* {
    		background: #fff !important;
    		color: #000 !important;
    		font-family: sans-serif;
    		letter-spacing: 0;
    	}
    	
    	div {
    		font-weight: 400 !important;
    	}
    	
    	h2, h3 {
    		font-weight: 700 !important;
    	}
    	
    	h2 {
    		font-size: 2em;
    		margin: 0;
    	}
    	
    	body {
    		padding: 0;
    	}
    	
    	.site,
    	.site .food-menu-items {
    		width: 100%;
    		max-width: none;
    	}
    	
    	img,
    	.entry-media,
    	.site-header,
    	.breadcrumbs-container,
    	.site-footer,
    	.menu-group-nav-container,
    	.menu-group-nav-link,
    	.content-area > *:not(.food-menu-items) {
    		display: none;
    	}
    	
    	.items .menu-items {
    		width: 100%;
    		margin: 0;
    	}
    	
    	.items .menu-items > * {
    		float: none;
    		width: 100%;
    		margin: 0 0 20px;
    	}
    	
    	.items .entry-summary {
    		margin: 0;
    	}
    	
    	.menu-group-header {
    		padding: 20px 0 0;
    		border-top: 1px solid
    	}
    }

    Please note I provide support via https://support.webmandesign.eu/ Also, please read https://support.webmandesign.eu/modifications/

    Best regards,

    Oliver

Viewing 1 replies (of 1 total)
  • The topic ‘Export Menu Items’ is closed to new replies.