erikrobles
Forum Replies Created
-
Forum: Developing with WordPress
In reply to: Post author initials not displaying to pageAnswer. The code works. I needed to make sure that the first and last name fields within the wordpress admin were filled out. I filled them and the code displayed the info.
Forum: Developing with WordPress
In reply to: Adding Icon to $arg[‘label_submit’]Thank you @bcworkz. I will probably translate this theme at some time. the unicode is actually a fontawesome icon. With the code above, I was able to get it to work. Now I can tranlate it in the future with no worries? I sure hope so. I lost a whole day investigating how to put this darn icon in with out it printing the html tag to the screen. Either that or I was getting the blank icon box. Thank you again for your comment.
Forum: Developing with WordPress
In reply to: Adding Icon to $arg[‘label_submit’]Answering my own question, I did the following to get it to work:
in the footer.php I added before the closing body tag –jQuery(document).ready(function() { jQuery('input#submit').after('<i class="far fa-comments move-right"></i>'); });in the functions.php, I have this code –
function isa_comment_reform ($arg) { $textAndIcon = 'Post Comment '; $arg['title_reply'] = __('Leave a Comment'); $arg['label_submit'] = __($textAndIcon); $arg['class_submit'] = 'withIcon'; return $arg; } add_filter('comment_form_defaults','isa_comment_reform');in my header, I included this css( my style sheet is pretty long and was taking forever to save changes) –
<style> /* overrides */ .move-right { position: absolute; margin-left: -35px; margin-top: 21px; color: #fff; z-index: 2000!important; } input[type="submit"] { z-index: 5!important; } input[value="Post Comment "] { padding-right: 50px!important; } </style>And now, I have an icon in the comment Post Comment button.
Thank you. Yes, I have confirmed that I was dealing with some server issues. Thank you for your response.
Forum: Fixing WordPress
In reply to: My Website Just Crashed As I was Updating WordPress 5.8I have had to revert to 5.7 as it caused my site to throw a load of errors. I hope WP Fixes it so I can upgrade back to 5.8
Hello Tobias. I too just sent you an email.
I just downgraded to 5.6 but the problem persists. I reupgraded to 5.7. Same issue.- This reply was modified 5 years, 2 months ago by erikrobles.
I am also having trouble with this. I spoke to my host and they suggest that it may have something to do with cgi timeout issues. I am not sure because the problems just started today. Any hints? Thank you Tobias. What a wonderful plugin.
Edit: I should mention that I just upgraded yesterday to the latest version of WP.
Additionally, I can sometimes create a new table no problem and save it but when it comes to modifications is where I see the error occur.- This reply was modified 5 years, 2 months ago by erikrobles.
- This reply was modified 5 years, 2 months ago by erikrobles.
Hello @wfpeter and thank you. I will give that a shot and report back with the results either way. Cheers.
ErikThank you for your response @wfpeter. I did put it into learning mode but was still unable to access the elementor widget. If the site was completey finished (which it isn’t) I would simply enable wordfence. If you want to poke around the site, I can set you up with the creds. Thanks again.
Erik RoblesHello. I am having trouble with the add to cart button. It was visible and now it is only visible on the single product display. The store used to have the add to cart button as well as the featured products I displayed on the home page. The only thing I did differently was update, elementor, wp to 5.5, astra theme to the latest as of the date I am posting this query. I have eleminated and restarted all plugins one by one and the issue remains. As Wildfield mentions going to Product catalog, I have no add to cart button action available. Please help me see what I might be missing. Thank you.
I simply removed the ,true from that line and the error went away. I hope this helps anyone else having this issue. Cheers.
Forum: Plugins
In reply to: [reCAPTCHA in WP comments form] Cannot read property ‘secret’ of nullHello and Thank you for helping me out. I have posted this on Github gist so if you can check out my code, that would be great. I wasn’t using a plugin so I know this does not fall under your scope but if you can see something I missed, I certainly would appreciate it. Thank you in advance.
Sincerely,
Erik Robles
The link is Here:
https://gist.github.com/ErikRobles/a97ac48d4f005d6ef20f5f440de253daForum: Plugins
In reply to: [reCAPTCHA in WP comments form] Cannot read property ‘secret’ of nullSame. But still flummoxed about the issue so if you find out anything, we’d sure appreciate the info. Cheers.
Forum: Plugins
In reply to: [reCAPTCHA in WP comments form] Cannot read property ‘secret’ of nullI also am receiving the same error and when I use the recaptcha and then submit, I get the following notice on my screen:
“Notice: Trying to get property ‘success’ of non-object in…”
The form does not post to the database so it is just not working. Thank you for your work on this issue.
Sincerely,
Erik Robles