Show excerpt on Woocommerce archive list
test
This function makes Woocommerce automatically select the lowest cost shipping by default function ea_default_shipping_method( $method ) { $_cheapest_cost = 100000; $packages = WC()->shipping()->get_packages()[0][‘rates’]; foreach ( array_keys( $packages ) as $key ) { if ( ( $packages[$key]->cost > 0 ) && ( $packages[$key]->cost < $_cheapest_cost ) ) { $_cheapest_cost = $packages[$key]->cost; $method_id = $packages[$key]->id; } }…
How to remove empty rows in an Open Office spreadsheet document. Select all (Ctr+A) in the spreadsheet document Go to last cell (Ctr+Shift+End) From the main menu, navigate to Data>Sort, then select value for ‘Sort by’ and ‘Then by’ Done
This is the standard CSS for making video embeds responsive. The CSS <style> .video-container { position: relative; padding-bottom: 56.25%; padding-top: 30px; height: 0; overflow: hidden; } .video-container iframe, .video-container object, .video-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; } </style> The iframe wrapper <div class=”video-container”> <iframe width=”1280″ height=”720″ src=”https://www.youtube.com/embed/GY25hkrZyZA?rel=0&showinfo=0″ frameborder=”0″…
Internet Terms and Conditions Meetings For clients located in the Sarasota, FL, an initial physical meeting may be included in the quoted price. Any physical meetings note specified in the contract may incur fees billed at the standard hourly rate. Training Training provided to the client must be specified in the contract, which includes but…
Create the CSV file in spreadsheet software like Excel or Calc. Include the columns from your database that you want to import data to. Then save the spreadsheet to a CSV file. Open the CSV file and cut the column header row. Save the final CSV. Paste the cut header row names into a blank text document in your…
Meta Title tooltips are default browser behaviors. Current research shows that the only way to hide the tooltip, is to hide the Meta Title, which would devastate a website’s SEO. In the rare event that a client wants the tooltips hidden, hiding the meta title upon rollover with JS would be one way to satisfy…