2 https://www.toonkamerwebshop.nl/product-categorie/alle-tafels/

3 https://www.toonkamerwebshop.nl/product-categorie/alle-kasten/

4 https://www.toonkamerwebshop.nl/product-categorie/alle-lampen/

5 https://www.toonkamerwebshop.nl/product-categorie/alle-spiegels/

6 https://www.toonkamerwebshop.nl/product-categorie/tuinmeubelen-2/

7 https://www.toonkamerwebshop.nl/product-categorie/stoelen-en-banken/

8 https://www.toonkamerwebshop.nl/over-ons/

9 https://www.toonkamerwebshop.nl/winkel-impressie/

10 https://www.toonkamerwebshop.nl/iets-kopen/

11 https://www.toonkamerwebshop.nl/portfolio/

12 https://www.toonkamerwebshop.nl/historie/

13 https://www.toonkamerwebshop.nl/zoeken/

14 plugin ajax : zoeken naar product (onder op home)

15 plugin child theme : veranderingen die blijven bij update

16 plugin foogallery : history

17 plugin huge it : alle sliders behalve home

18 Afrekenen pagina :

19 Mijn account pagina :

Inloggen

20 Winkelmand :

Je winkelwagen is momenteel leeg.

Terug naar winkel

21 Via filezilla toevoegen aan header, footer en functions

IN HEADER TOEVOEGEN:

<head>

<title>TOONKAMERWEBSHOP</title>

<meta name=”keywords” content=”antiek, brocante, industrieel, oud, Art Deco, hoge kast, lampen, tafels, spiegel, kasten” />

<meta name=”De Toonkamer: Mooie niet alledaagse frivole Franse en Hollandse meubelen en decoratief kleingoed.” />

<meta charset=”<?php bloginfo( ‘charset’ ); ?>”>

                <meta name=”viewport” content=”width=device-width, initial-scale=1, minimum-scale=1″>

                <link rel=”profile” href=”http://gmpg.org/xfn/11″>

                <?php wp_head(); ?>

</head>

EN IN HEADER TOEVOEGEN NAVIGATIE MENU :

                                * Hook for top of inner wrap.

                                */

                               do_action( ‘kadence_before_content’ );

                               ?>

<?php wp_nav_menu( array( ‘theme_location’ => ‘primary’ ) ); ?>

<?php

/**

 

IN FOOTER TOEVOEGEN GOOGLE TRANSLATE EN LINK NAAR KADENCE

                 * @hooked Kadence/footer_markup – 10

                 */

                do_action( ‘kadence_after_footer’ );

                ?>

<div style=”text-align:center”><h3>Choose language:</h3><?php echo do_shortcode(‘

‘); ?></div>

<div style=”text-align:center”><h6>De toonkamer/wordpressthema:<a href=”https://www.kadencewp.com” target=”_blank”> Kadence</a></h6>

</div>

</div><!– #wrapper –>

 

 TOEVOEGINGEN FUNCTIONS PHP:

function tyches_hide_prices_on_all_categories( $price, $product ) {
if ( is_product_category() ) {
return ”; // Empty string = no price!
}

return $price;
}
add_filter( ‘woocommerce_get_price_html’, ‘tyches_hide_prices_on_all_categories’, 10, 2 );


remove_action( ‘woocommerce_single_product_summary’, ‘woocommerce_template_single_meta’, 40 );

// Remove the product description Title
add_filter( ‘woocommerce_product_description_heading’, ‘__return_null’ );

22 Codes in customizer om achtergrond van foto’s gelijk te maken en te verwijderen:

/* Kleur van het blok (achter de .naam product en toevoegen aan winkelwagen) op de product pagina. Hier dezelfde kleur invoeren als in de customizer, woocommerce, productcataloges, ontwerp, inhoud achtergrond */

ul.products {
background: #E5D5BE !important;
}
/* Kleur van het blok achter fotos WPB slider weghalen */
.wpb_slider_area figure {
margin: 0!important;
}

.wpb_slider_area .item {
background: unset!important;
}