When adding your image from the media library, set the alignment in the attachment display settings in the media library. Add to child theme css: @media only screen and (max-width: 600px) { figure.alignleft, img.alignleft, figure.alignright, img.alignright {...
Robin Snow
Using the Insert Pages plugin
We often want to be able to "include" some text from pages or posts into other pages on a website. An advantage of this is the ability to change it in one place and have those changes appear in other places without one having to go in and make those changes...
WordPress Forms
Many people like the idea of adding forms to their sites as a means of collecting information from site visitors. Anything requiring more time from the web developer will drive the website cost up. The same goes for the additional back and forth between the developer...
Divi boxed layout – full width on mobile
add following to css /*** Full Width On Mobile ***/ @media (max-width: 481px) { .et_boxed_layout #page-container { max-width: 100%!important; width: 100%!important; } #main-header, #top-header { max-width: 100%!important; width: 100%!important; } }
Testimonials in BNI
Benefits of Testimonials: Many of us often give testimonials in BNI during the last part of meeting. What happens when you give a testimonial? Establishes your credibility in front of potential customers It reassures the potential client that this product or service...
Protected: Create Dropbox Folder for Client
Password Protected
To view this protected post, enter the password below:
Media Library
Recently I found the "Real Media Library". It helps you with media management. You can organize thousands of uploaded files into folders, collections, and galleries. It is a real file manager that allows you to manage large amounts of files in WordPress. It's my...
Changing Out of Stock Text in WooCommerce
Add to functions.php file: function themeprefix_change_soldout ( $text, $product) { if ( !$product->is_in_stock() ) { $text = '<div class="">Sold out</div>'; } return $text; }
WooCommerce tab names
https://docs.woocommerce.com/document/editing-product-data-tabs/
Copying from Word Documents to WordPress
Many users write their content directly into the dashboard, while others often copy the content from Microsoft Word, Google Docs, etc. When copying and pasting content that has been formatted using other tools, such as Word, Google Docs, etc, you end up...