JonEMac
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Cannot rename slug as it keeps putting -2 after nametimiambeing: Your solution/observation was exactly right. Odd how WP can’t differentiate between a physical file and a permalink.
How hard could it be to test for a file extension?
Forum: Plugins
In reply to: [WooCommerce] featured product image & thumbnail comes up blankAre you sure the images exist in the right folder on your host?
Forum: Plugins
In reply to: [Broken Link Checker] Ability to set retention on log fileIf you have access to your hosting (and it’s Linux based) via SSH you might be able to setup a cron job that deletes the offending file every 10 days or so..
In lieu of the plugin author actually fixing the issue, that might be your best bet.
Forum: Plugins
In reply to: [WooCommerce] Adding Simple Text after PriceNo problem..glad it helped.
Forum: Plugins
In reply to: [WooCommerce] Adding Simple Text after PriceCorrection:
<p class=”price”><?php echo $product->get_price_html(); ?> (per person)</p>
??
Forum: Plugins
In reply to: [WooCommerce] Adding Simple Text after PriceUsing Filezilla, WinSCP or something similar, drill into the Woocommerce plugin folder to:
\woocommerce\templates\single-product\price.php
Amd change the price paragraph tag to..
<p class=”price”><?php echo $product->get_price_html(); ?> (each)</p>`
And you should be good.
Forum: Plugins
In reply to: [WooCommerce] Woocommerce category on result-count.phpThanks – it worked great!
It makes the results text much more informative.
By “something” I mean put a link in the ‘body’ of the mailto request to the thumbnail in question..
“brings up a new email” – in the viewer’s e-mail client?
Since most e-mail clients can accept some instruction via the mailto: protocol, you could always do something with it.
https://www.labnol.org/internet/email/learn-mailto-syntax/6748/
I posted the same answer to someone earlier. Your best bet is “Woocommerce Advanced Shipping”. It’ll handle this easily.
Not free ($16), but works well and Jeroen will help you sort it out..
Forum: Plugins
In reply to: [WooCommerce] Change empty search results message stringIdeally, you should do this on a child-theme, but the text you’re looking to change resides in the no-products-found.php file located in the woocommerce/template/loop folder..
?>
<p class=”woocommerce-info”><?php _e( ‘No products were found matching your selection.’, ‘woocommerce’ ); ?></p>Forum: Plugins
In reply to: [WooCommerce] Adding Simple Text after PriceOn the shop page or the single-product page?
Forum: Plugins
In reply to: [WooCommerce] WooCommerce Help NeededYour best bet is a plugin like “Woocommerce Advanced Shipping”.
I had virtually the exact same types of issues and the logic Jeroen built into this plugin (along with his amazingly sunny disposition and help) really worked for us.
It’s not free ($16) but it’s worth every penny.
Forum: Fixing WordPress
In reply to: Woocommerce category on result-count.phpWill do – thanks!