Show excerpt on Woocommerce archive list
test
RewriteEngine On RewriteCond %{HTTP_REFERER} !example.net RewriteCond %{REQUEST_URI} ^/wp-content/uploads/protected RewriteRule . – [F]
If WordPress doesn’t show a title be default on a blog page. This code is for Genesis, but will work for any theme if you change the hook. Create a new file called home.php with the following code. That’s the template file that WordPress uses for its Posts Page. $content = get_post( $posts_page )->post_content; $title_output…
How to test if Google Adwords Call Forwarding is working on a website? Add the following to the end of the url string: #google-wcc-debug Then click “Force” in the Google AdWords Website Call Conversions debug window .
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…
To target iOS specific devices: @supports (-webkit-overflow-scrolling: touch) { /* CSS specific to iOS devices */ } @supports not (-webkit-overflow-scrolling: touch) { /* CSS for other than iOS devices */ } It works because only Safari Mobile implements -webkit-overflow-scrolling: https://developer.mozilla.org/en-US/docs/Web/CSS/-webkit-overflow-scrolling I used this because a WordPress Genesis responsive menu had some icon alignment discrepancies on iPhone only. Here is…
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; } }…