jfarr07
Forum Replies Created
-
Thanks Bill! I will look at doing this.. What I entered currently in my functions.php was this… but I’m not the greatest with PHP so I’m not sure if its fully correct code wise but it does seem to work.
add_filter( 'display_posts_shortcode_output', 'format_dps_outer', 10, 7 ); function format_dps_outer( $output, $atts, $image, $title, $date, $excerpt, $inner_wrapper, $wrapper) { // Make Outer Wrapper $wrapper = ' <div>'. $wrapper .'<div>'; // Now let's rebuild the output. $output = '<div class="customportfolio">' . '<' . $inner_wrapper . ' class="listing-item">' . $image . $title . $date . $excerpt . '</' . $inner_wrapper . '>' . '</div>'; // Finally we'll return the modified output return $output; }
Forum: Plugins
In reply to: [ZM Ajax Login & Register] New User Notification???
Forum: Plugins
In reply to: [WP-Members Membership Plugin] Radio ButtonsAlso with this plugin can you request more info if a user is trying to access a certain page?
Forum: Plugins
In reply to: [Contact Form 7] Breaking up Contact Formthe example is here https://farrfolio.com/wp/start/
I have two contact forms that I am trying to connect pretty much. I have the same title name on both but I want to link them on the same page as if they were one contact form. Thanks for your help!
Forum: Plugins
In reply to: [Contact Form 7] Breaking up Contact FormI’m more talking the same contact form where on the first section you have a name field, email field without a submit button and in another div you reference the same contact form with phone and company then a submit button.
Forum: Plugins
In reply to: [Easy Modal] Modal RedirectSo if you go to https://www.mylaundrylady.com you will see a signup button which opens the easy modal with a form. Upon submission it redirects you to the homepage and doesn’t leave the modal open for the message to say “successful please login” and show the login modal. It also closes the modal if the fields are wrong. If you click sign up again it shows “failed to fill out X fields” or Success login in..