NextGen Gallery Name of Picture
Add Name of picture in NextGen Gallery In Gallery – put this code to show Names of Picture : [nggallery id=2 template=caption]
Add Name of picture in NextGen Gallery In Gallery – put this code to show Names of Picture : [nggallery id=2 template=caption]
Adds a Line Break in WordPress Text Editor //This ads a line break ( White Space) in wordpress <br />
code for HTML input box //Code for HTML Input Box <label for=”message”>Message: Max characters 100</label> <input type=”text” field_id=”message” name=”message” maxlength=”100″>
Elementor Forms – Changes the uploaded image back to original file name, change File_ID = form Id / Changes the uploaded image back to original
CHANGE READ MORE TEXT ON Woocommerce Button //CHANGE READ MORE TEXT ON Woocommerce Button// By Wayne Junor from wayneswebworld.com.au add_filter( ‘gettext’, ‘ds_change_readmore_text’, 20, 3 );
Change Default WordPress@ email // Change default WordPress email addressadd_filter(‘wp_mail_from’, ‘new_mail_from’);add_filter(‘wp_mail_from_name’, ‘new_mail_from_name’); function new_mail_from($old) {return ‘yourname@yourdomain.com’;}function new_mail_from_name($old) {return ‘Your Name’;}