aschoenbrun
Forum Replies Created
-
Forum: Plugins
In reply to: [GiveWP - Donation Plugin and Fundraising Platform] Frontend Donation MetersThanks.
Forum: Plugins
In reply to: [Postman SMTP Mailer/Email Log] GRavity Forms not sending notification emailsDiagnostic test:
OS: Linux ecbiz168.inmotionhosting.com 2.6.32-504.23.4.el6.x86_64 #1 SMP Tue Jun 9 20:57:37 UTC 2015 x86_64 PHP: Linux 5.5.38 C PHP Dependencies: iconv=Yes, spl_autoload=Yes, openssl=Yes, sockets=Yes, allow_url_fopen=Yes, mcrypt=Yes, zlib_encode=Yes WordPress: 4.6.1 en_US UTF-8 WordPress Theme: Effective Media WordPress Plugins: Gravity Forms, Admin Menu Editor, Advanced Custom Fields PRO, Enable Media Replace, Genesis Visual Hook Guide, Google XML Sitemaps, Gravity Forms Logging Add-On, Post Types Order, Postman SMTP, Regenerate Thumbnails, WordPress Importer WordPress wp_mail Filter(s): wp_staticize_emoji_for_email Postman: 1.7.2 Postman Sender Domain (Envelope|Message): youreffectivemedia.com | youreffectivemedia.com Postman Prevent Message Sender Override (Email|Name): No | No Postman Active Transport: SMTP (smtp:tls:login://smtp.office365.com:587) Postman Active Transport Status (Ready|Connected): Yes | Yes Postman Deliveries (Success|Fail): 0 | 5
Forum: Plugins
In reply to: [GiveWP - Donation Plugin and Fundraising Platform] Google analyticsThanks Devin. I’ll look out for it.
Also, I would like to have the volunteer create their own page/post via the front-end using Gravity Forms, so I would rather not create a new form for each volunteer.
Thank you
Forum: Plugins
In reply to: 1 Post per authorI am guessing it will probably be something like a custom
author.php
page outputting the custom fields and leaving out the loop of (non-existent) posts by the author. then an archive that lists author’s names, images & other select info from their user admin page.Help on how to create such a loop and how to allow participants (authors) to upload their profile image, along with any other help on this issue would be great.
Thanks
Forum: Plugins
In reply to: 1 Post per authorI may have participants enter info on profile pages instead of a post by adding custom fields to the author profile page. (https://stackoverflow.com/questions/21312839/how-to-create-a-edit-profile-page-for-users-on-frontend-with-custom-fields-on-wo). I would then need a post (of designated custom post type) to be created automatically for each participant upon author creation for use by visitors to the site.
I’ll keep researching. Any help would be welcome.
Thanks
Forum: Fixing WordPress
In reply to: Add class when scroll a certain amountTrue!
But it would be nice to write things shorthand if possible.Forum: Fixing WordPress
In reply to: Add class when scroll a certain amountThanks Hardeep.
It seems, though, that I get an error when applied. Console outputs: “$ is not a function”. Only when I replace all instances of “$” with “jQuery” does it work.
I enqueued the script in functions.php as follows:
add_action( 'wp_enqueue_scripts', 'add_my_script' ); function add_my_script() { wp_enqueue_script( 'HeaderChangeOnScroll', // name your script so that you can attach other scripts and de-register, etc. get_template_directory_uri() . '/assets/js/HeaderChangeOnScroll.js', // this is the location of your script file array('jquery') // this array lists the scripts upon which your script depends ); }
Have I done something wrong?
Thanks