RaySmerlin
Forum Replies Created
-
Forum: Plugins
In reply to: [EventCalendar] Not able to add Event since UpdateJust discovered the same issue. Yikes!
Forum: Plugins
In reply to: [EventCalendar] Premium and Add-OnsThis isn’t a support question. It is a sales question. Are you really serious in making me jump through hoops just to get a simple sales question answered?
Forum: Fixing WordPress
In reply to: WordPress 4.8 editor “Failed to load content css”Yes, also had this problem appear after updating to 4.8
Failed to load content css: https://fonts.googleapis.com/css?family=Allura%2C
Running Tempura ThemeWhen I have time (which I really don’t), I’ll disable plugins and start there.
Until then, I’ll watch this thread.
Forum: Plugins
In reply to: [Fast Secure Contact Form] Confirmation Email Message imbed query stringI found the problem. I was getting my Field Tags confused with my query strings to send.
I must remember:
Field Tags are what are used in conformation emails
Query strings are used to send data from one form to the next.
Case resolved.
Forum: Plugins
In reply to: [Fast Secure Contact Form] Confirmation Email Message imbed query stringYes, I’ve had that document bookmarked for reference for quite a while. Passing the variable to another page works. What I’m trying to accomplish is getting it embedded correctly in the confirmation email, as part of a link that can be clicked on.
field tag = [First-Name] (let’s say “John”)
In the html confirmation email I want to have a link that includes name(john).
example:
P.S. You don’t have to keep us a secret. If you have friends who would like to get on our invitation list just forward this email to them, and have them click on this
link: Check out this Fantastic Show!But when sent, the email is not ?refer=John, it shows ?refer=[From-Name].
Forum: Plugins
In reply to: [Fast Secure Contact Form] Confirmation Email Message imbed query stringForgot this: If you want to try this out as it is set up now, the form is at http://www.magicdinnerbourbon.com.
Ray
More than likely if this crops up, it is due to the the theme. Of course, one could edit theme css, but for those of us who are not so bold, here’s how I got around the issue:
To show the current 3 articles:
Instead of using a global
[display-posts category=”article” posts_per_page=”3″ include_excerpt=”true”]I used separate shortcodes with offset
[display-posts category=”article” posts_per_page=”1″ include_excerpt=”true”]
[display-posts category=”article” posts_per_page=”1″ include_excerpt=”true” offset=”1″]
[display-posts category=”article” posts_per_page=”1″ include_excerpt=”true” offset=”2″]http://www.raysmerlin.com/ – it’s the section on the page “Articles by Ray Smerlin”
Using shortcode: [display-posts category=”article” posts_per_page=”3″ include_excerpt=”true”]
You put me on the right path. Tempera Theme takes control – it’s the them itself doing this. Thanks!
Forum: Plugins
In reply to: [Fast Secure Contact Form] passing variables wordpress page to wordpress pageMike, thank you for the link. Answered the pre-fill variable passing perfectly.