Show total sales for each products on search results page Woocommerce

You can use third-party WooCommerce plugin ‘Woo Total Sales’ to display total sales of the specific product on product archive, product single or product search page. Woo Total Sales: https://wordpress.org/plugins/woo-total-sales/ You can also use below shortcode that plugin provides and add product ID to display its count. [awts-total-sales product_id=”0″ include_setting=”true/false”]

Set custom banner image size with wp_customize

Turns out it’s fairly straightforward, just a case of knowing what to search for https://codex.wordpress.org/Class_Reference/WP_Customize_Manager In my tyc_banner_image function I added the last four arguments below. $wp_customize->add_control( new WP_Customize_Cropped_Image_Control($wp_customize, ‘tyc_banner_image-control’, array( ‘label’ => ‘Image’, ‘section’ => ‘tyc_banner_image-section’, ‘settings’ => ‘tyc_banner_image-image’, ‘flex_width’ => true, ‘flex_height’ => true, ‘width’ => 1920, ‘height’ => 500, )));

Custom CSS working on home page but not on NEW created PAGE

Copied from comments, so the question will indicate an answer has been provided: Found your key symptom. Inspecting your Impressum page with Chrome indicates loads of 404 errors. For example: http://darius-mann.com/smardigo/impressum/costum/hexagon/hexagon.js not found. If I remove the “impressum/” the file opens correctly. However your theme is building your reference URLs, it is including the current … Read more

how do i add logo in my site

Given the information and by looking at the site it’s hard to know exactly how you can add the logo. If you can give us the theme link/documentation then it will be much easier to know the exact solution. But with my years of knowledge, here are the best possible solutions. You should check “Appearance … Read more