dave9621
Forum Replies Created
-
That’s awesome! I got the idea about asking ChatGPT from a YouTuber I follow, he had this great vid on how to make AI answer your tech questions. Have a look if you’re interested.
Dan, I see that I can Share my ChatGpt with you.
https://chatgpt.com/share/67165fb9-2f2c-8002-a84d-225c59f0536e
Hey D9Dan, I think I solved my issue, I used ChatGPT to give me some advice. Here’s what it told me to try:
- Defer Javacript Execution by adding this JS code (I put it in the header):
jQuery(window).on(‘load’, function() {
jQuery(‘.twentytwenty-container’).each(function() {
jQuery(this).twentytwenty();
});
}); - Disable Lazy Loading for Twenty20 Images
- Check for Conflicting Scripts
- Increase Load Delay for Widgets (using custom JS):
jQuery(document).ready(function() {
setTimeout(function() {
jQuery(‘.twentytwenty-container’).twentytwenty();
}, 500); // Increase delay as necessary
});
I hope one of these ideas helps you.
Same for me. I had to go back a version in order to log back into my site.
Forum: Plugins
In reply to: [Directory Listings WordPress plugin - uListing] Quick Edit missingHi, thanks for the reply. That’s fine for the listings, BUT it has also removed the Quick Edit on my Posts and Pages. Is there anyway to restore that?
Thanks!Forum: Plugins
In reply to: [Unyson] Trouble after updating plugin extensionsI think I have resolved my problem. I removed the plugin and reinstalled it. That seems to have done the trick, I’m back in business.
My problem is the parameters change when I move around the site. But I’ll look into a javascript solution. Thanks for considering.
Maybe we can think of it like this. What if I wanted to show one special ad for people that come to my site with the “/?src=ra” parameter and I only wanted to show them this one particular ad no matter what page on my site they were looking at, is there a way of doing that? What’s happening for me is the parameter drops out (of course) when I click another nav link. Any work arounds for something like this?
Forum: Plugins
In reply to: [YITH WooCommerce Wishlist] id="yith-wcwl-form" …I had the exact same problem. This fix worked the trick! Thanks.
Forum: Plugins
In reply to: [Gravity Forms Advanced File Uploader] [get_adv_uploads] customizationOkay, with some digging into the plugin’s php code I found out how to do what I needed above. I only have one issue now, how can I display the file name? I have a button that says “Download” and the hyperlink is correct, it loads the correct document, but I want to display the file name of the document next to the button. But I can’t figure out how to output only the file name. I can get it to output the entire path, or the ID content (ex. form-1-entry-7-fileupload-1) but I only want to display the file name, any ideas?
Thanks for your direction. I’m working with a colleague and I think we’re almost there. He said it looks like the email list is built from the function:
function get_registered($args = ”)
If so, all we need is the query clause to ignore the role, something like
$AND .= ” AND role <> ‘subscriber’ “;
Could you tell us what that line would look like, to skip any user with that role?
Thanks for your help!I’ll look into Pluginception, thanks. But we’re 99% of the way there with your plugin, it’s up and running and we only want to tweak it so that someone that has a role of “substitute” does not get the email. That’s it. If I can do that we’ll be all set. Starting from scratch by creating a new plugin seems like the long way around, no?
Thanks for your reply. I’ve looked over the documentation and I’m a bit confused on how this works. I’m by no means a PHP pro, I know enough to edit and be dangerous I guess. What is the PHP file I need to edit? what happens when an email is sent, will my client be given a choice what what “roles” get the emails? I’m sorry I’m not knowledgeable on how the API works. Any help would be greatly appreciated. Thanks.
Laura, so frustrating, I know. But before you give up, try using someone else’s computer. I know it’s a long shot, but it could be something to do with your system creating the conflict. I can’t think of another reason if you’re using a generic theme and turning off all plugins except Cool Vid Gallery. So try all of that on a different system and see if it works.
As a last resort you can do one last thing (I was doing this before I discovered the theme switching theme that worked for me). If you want to edit a gallery, don’t. Create a new gallery the way you want it and use that one instead. You’ll be getting more and more galleries in your list of galleries, but who cares, as long as the end user is seeing what you want them to see it doesn’t matter. Not an elegant solution, but it in the end it’ll give you what you’re needing.
Sorry I can’t be more help.
Davehmmmm…the only other thing I can think of trying is to switch to TwentyEleven and then one by one disable any installed plugins you have, and try again. There is probably a plugin that is causing a conflict. If you do them one at a time you’ll know which is the troublemaker. If this doesn’t work I would try logging in with another browser, I use Firefox. I’ve read somewhere that clearing the browser’s cached can clear up conflicts too, but I’m not 100% certain of that, worth a try.
- Defer Javacript Execution by adding this JS code (I put it in the header):