efadyn
Forum Replies Created
-
Forum: Plugins
In reply to: [12 Step Meeting List] New Temporary Closure type not working in mobile app@jessibelle Awesome so glad that worked for you!
Forum: Plugins
In reply to: [12 Step Meeting List] New Temporary Closure type not working in mobile appI updated the app this morning, and it seems to be reflecting the temporary closures now.
Forum: Plugins
In reply to: [12 Step Meeting List] New Temporary Closure type not working in mobile appI am looking for a solution here as well.
@sultan00rextheme for a temporary solution, I overrode in my custom css using the below, but it seems like overkill:
.fa {
font: normal normal normal 17px/1 FontAwesome !important;
}.infinite-footer-wrapper .fa {
font: normal normal normal 25px/1 FontAwesome !important;
}@sultan00rextheme, I am not using a plugin for social sharing. I’m using font awesome icons/font to display social media icons in the header and footer. I think some CSS in your plugin is overriding the font awesome font my theme is calling. What is the solution here?
@sultan00rextheme The font awesome icons on the site are no longer functioning – top header right and bottom footer left area. I deactivated the WP VR plugin and they showed back up. Please advise.
https://shuttlewagon.com is the site it’s happening on. Thank you!
I am now using version 3.6.0 (it was 3.5.0, but I updated this morning).
I cleared cache and it’s working now.Thank you!
Here is my page. I added text above the tour shortcode so it would be clear where it was.
Forum: Developing with WordPress
In reply to: Remove DAY from displaying in the Blog Post published datesThank you!
Forum: Developing with WordPress
In reply to: Remove DAY from displaying in the Blog Post published datesDivi theme by Elegant Themes. I am using a child theme as well.
Forum: Developing with WordPress
In reply to: Populate variable with value from ID or classThank you. I have tried this and I think it’s still executing before the dynamic phone number replacement script is running because I’m still having the same issue. I have the code in an HTML block as the very last field in the Gravity Form before the Submit button.
Got it about demarcating my code in the future – thanks for letting me know! ??
Forum: Developing with WordPress
In reply to: Populate variable with value from ID or classI want to pass the value to a hidden field in Gravity Forms. The desired end result is to include the phone number displayed to the user in the forms notification email, so we know what number they saw when they filled out the form.
I’m not sure where/how to implement jQuery.
I had gone about this in an entirely different way previously (unsuccessful). I added javascript to an HTML Block on the Gravity Form, and it displays the correct value. However, when I then pass that value to a hidden field on the Gravity Form, it sends the original value, versus the html value displayed to the user.
This is the javascript code I have described above:
Phone Number Displayed is <span style=”font-weight: bold;” id=”demo”>
<script>
var mmPhone = document.getElementById(“mm-cphone”).innerHTML;
document.getElementById(“demo”).innerHTML = mmPhone;
//pass value to hidden field
document.getElementById(“input_5_10”).value = mmPhone;
</script>Forum: Developing with WordPress
In reply to: Populate variable with value from ID or classThe html code is surrounding a phone number:
<span id=”myID”>800-800-8000</span>.We have dynamic phone number replacement on the site, so the phone number will change based on the channel the user entered the site via.
I want to capture the phone number that is displayed to the user (versus the 800-800-8000 in my example above) and store it in $myVar.
Are you saying this is not possible?
Forum: Fixing WordPress
In reply to: Function to capture a value and store it in a variableThank you.
Forum: Fixing WordPress
In reply to: Function to capture a value and store it in a variableThank you @jaycbrf. I will check out the Gravity Forms forum. I did, however, think that the function to capture a value displayed on the website and store it in a variable would be related to WordPress / php coding. Am I incorrect there?