webgoddess.me
Forum Replies Created
-
Dang it. 🙁
What about looking through older data than just the first page of data?
Forum: Plugins
In reply to: [Meta Box] 4.7.3 conflict with wp-admin post.php?I’m having the same issue, but Meta Box Updater isn’t giving me any indication that there are updates available. My site is running 1.0.1 of “Groups” so I have to deactivate it and temporarily separate the grouped items. 🙁
Forum: Plugins
In reply to: [Contact Form 7] Checkboxes in Contact Form 7 … need helpbuzztone, that is not a helpful answer at all, because the label text renders as one line of text, so altering the CSS won’t do anything at all related to what shobha22 needs.
I’m currently having this exact same issue.
Basically the problem is this:
You can’t force a line break in the middle of a string when it doesn’t let you add html.Forum: Plugins
In reply to: [Contact Form 7] Get all Contact Form 7 forms available$args = array('post_type' => 'wpcf7_contact_form', 'posts_per_page' => -1); if( $cf7Forms = get_posts( $args ) ){ foreach($cf7Forms as $cf7Form){ echo(do_shortcode('[contact-form-7 id="'.$cf7Form->ID.'" title="'.($cf7Form->post_title).'"]')); } }Just had to figure this one out on my own; should work for you too, or for whoever else comes across this looking for answers. 🙂