jaket89
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Insert Image using CSSHey Lorro. Thanks for your reply!
I went with your second option and have successfully added the image using the CSS however, I have a slight issue.
The image is inserted right down the bottom of all the other content. How can I change its priority so that it appears right at the top?
Cheers.
- This reply was modified 2 years, 8 months ago by jaket89.
Forum: Plugins
In reply to: [WooCommerce] How to hide content on mobile using the functions.php fileHi, no it didn’t work but I’ll start a new thread.
ThanksForum: Plugins
In reply to: [WooCommerce] How to hide content on mobile using the functions.php fileGreat thanks.
Now, what would the CSS code be to insert an image after the single product summary?Forum: Plugins
In reply to: [WooCommerce] How to hide content on mobile using the functions.php fileHi, Thanks for your reply.
I’m a complete noob at this, would the CSS still be inserted into my functions.php file?Would it look something like this:?
@media (max-width: 768px) { add_action('woocommerce_after_single_product_summary', add_content_on_woocommerce_after_single_product_summary',1); function add_content_on_woocommerce_after_single_product_summary() { echo "<img src='https://mywebsite/wp-content/uploads/2022/02/blocks.png' >" ; } }
Forum: Plugins
In reply to: [WooCommerce] CSS to Center ImageHi Mirko,
I sorted it out. The answer was to edit the line as below:
echo "<img src='https://simplysupersteals.com/wp-content/uploads/2021/10/GREY-PAYMENT_TRUST_BADGES.png' style='display:block;margin-left: 15%;width: 70%;'>" ;
Thanks
- This reply was modified 3 years, 1 month ago by jaket89.
Forum: Plugins
In reply to: [WooCommerce] CSS to Center ImageHi,
The code is written exactly as you see it in the post above. This code is in the functions.php file.I tried adding your bit of code in-line, above and below but it didn’t work.
Sorry but I’m a complete novice when it coems to this stuff.
Thanks
Forum: Plugins
In reply to: [WooCommerce] Display Flat Rate Shipping Without Having to Enter AddressYes, perfect! That worked.
Thanks ??