aviv86
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Updated to the latest WordPress, now all of my pages are gone@marynugent the same thing happened to me about a month ago, around the same time it happened to you. I have a feeling it had to do with an update. I was able to resolve the problem today! If we both have the same exact issue, here is how I resolved it. Maybe it will help you, too:
- Go to your Dashboard and go to the Notio > Plugins page (Not the Dashboard Plugins page, the one within the Notio theme menu)
- ACTIVATE ALL OF THE REQUIRED PLUGINS
That’s it. My portfolio and every page that pulled-in images from my portfolio, are all back. Good luck.
- This reply was modified 4 years, 6 months ago by aviv86. Reason: Clarification on Plugins page
Forum: Plugins
In reply to: [Contact Form 7] Mail 2 sends email sometimes, not others.@buzztone I did see your article. However, I didn’t find my answer there. Thanks for the reference.
Forum: Plugins
In reply to: [Contact Form 7] Contact Form 7 in a Visual Composer page. Avada Theme.Share your Mail and Mail (2) code?
Forum: Plugins
In reply to: [Contact Form 7] Change [checkbox] output in email from "on"?@buzztone In all honesty, I’m certain there are better ways to apply the styling and attributes that I’ve managed to hack together. I just did a little trial and error and pieced together a form that works for my RSVP page. Thanks for the interest.
Forum: Plugins
In reply to: [Contact Form 7] Change [checkbox] output in email from "on"?@buzztone Hmm for the countdown script, I think I searched and found something like this, and added it to one of the plug-in .js files: https://stackoverflow.com/questions/24478360/jquery-count-number-of-checked-checkboxes-with-a-given-id-value
I had already added this (below) to the theme functions.php file, to hide blank fields (that way, when I receive an email, it just tells me which events they’re coming to, omitting the unchecked boxes):
// Don't show blank fields in email for WPCF7 add_filter( 'wpcf7_mail_components', 'remove_blank_lines' ); function remove_blank_lines( $mail ) { if ( is_array( $mail ) && ! empty( $mail['body'] ) ) $mail['body'] = preg_replace( '|\n\s*\n|', "\n\n", $mail['body'] ); return $mail; }
And now for the easy part. This is the countdown and checkbox form code I used:
<label for="events"><a id="status"><font id="count" color="#ffbdb3">[count id:count 0]</font><font color="#ffbdb3">?events.</font></a></label> [checkbox events id:events class:contactForm "CEREMONY" "DRINKS & LAWN GAMES" "RECEPTION"]
And this is the shortcode for the email form: [events]
Hope that helps. Live example is temporarily here, if you’re interested.
Forum: Plugins
In reply to: [Contact Form 7] Change [checkbox] output in email from "on"?Figured something out.
Forum: Plugins
In reply to: [Contact Form 7 Datepicker] Date Field & Month SelectionI was using multiple date fields and needed to have separate IDs.
Forum: Fixing WordPress
In reply to: MISSING: Images, Buttons, Sliders, PagesThank you! ??
Forum: Fixing WordPress
In reply to: MISSING: Images, Buttons, Sliders, Pages@respectyoda & @dave THANKS! I deleted all files & folders except for wp-content and wp-config.php. This fixed EVERYTHING, EXCEPT for the links to internal pages/permalinks (i.e. dev.mylesandann.com/photos/ threw a 404). I was able to resolve the broken permalinks by going to Settings > Permalinks, and changing it to Default, saving changes, and changing it back to Post Name.
It appears that everything is resolved! What a mess. Thank you!
Forum: Fixing WordPress
In reply to: MISSING: Images, Buttons, Sliders, PagesChanged a line in the header.php theme file to:
.animated { visibility: visible; }
Now I can see the images and buttons on the homepage, but links to other pages, animation, and the slider at the top of the page are still not visible. I’ve posted to ThemeFusion here.
And fwiw, when I refer to “slider,” this should be appearing and animating below the header on the homepage.
Thanks,
AnnSuper easy. Thanks, Frank!