21
Dec
2024
Huddard park Hike
The following message is displayed on admin bar:
jQuery Migrate(Previously known: 4 discovered on this page:(0)
jQuery Migrate is used to preserve the compatibility of jQuery code developed for versions of jQuery older than 1.9. The message states that there are 4 instances of deprecated functions being used.
The message can safely be ignored. However, jQuery Migrate cannot be safely removed without fixing the warning messages.
For more info:
This document describes the steps to update Mailchimp with New and Renewed Members from the MemberPress data in myHPREC.
Extract data to import into Mailchimp from MemberPress
Note- The columns can be in any order as the column headers indicate the data field being imported.
Import data into Mailchimp
The data can be imported into Mailchimp by copy and paste or loading it from the saved .txt file
This blue bar or something like it is a unifying design element for the myHPREC site.
Couple of ways to add the blue bar:
Use Ultimate Shortcuts shortcode: [[su_divider top=”no” divider_color=”#0096D6″ size=”30″]]
Use Shortcoder plugin designed shortcode: [sc name="blue-bar"]
Use shortcode [blue-bar] which was added via Snippets plugin.
Personal choice. They all do the same thing.
Sometimes it is necessary to keep a string of text together on one line:
Example:
"Industry Updates - 8th
September 2013"
What is desired is for the date to be kept together.
"Industry Updates
–
8th
September 2013"
First method
HTML – use  
"Industry Updates - 8th September 2013"
2nd Method CSS
.nowrap {
white-space: nowrap;
}
HTML
<span class="nowrap">Industry Updates -</span>
<span class="nowrap">8th September 2013</span>