Igor Benic
Forum Replies Created
-
Hi @phatwp, sorry you’re experiencing this. Seems like you’re on an older version of WordPress?
This function was introduced with 6.4.x.
I’ll see to add a check first before calling such functions.
Hi @bjrnet21, sorry for replying so late. I’ve been working on a new update and will see what could it be..
Hi @dm5point0, this plugin focuses on the product’s price.
Are you referring to the “signup-price” for Subscription products?
So the recurring price X/month stays the same but their first sign-up price is actually increased?
Hi @jonathanlespect thank you for all those inputs.
I thought I have fixed the DST part but I guess some parts are still there to be fixed. Will need to dig in further to make sure the transitions between DST and regular time work fine.
I am actually not sure if I redirect the page after countdown. That’s a pretty good idea! Will see to add it in the next update.
I thought registrations are not available if the giveaway has ended. I’ll see to add a few more “flags” there to check during registration.
Hi @iannich, I have pushed a new version that should fix such issues.
Interesting idea, could be used in case it missed a few pages to find.
As for crawling, the system goes from the homepage and then follows links that are found there. Then, for each link, we check if it’s a page or asset and crawl it if needed.
Links are:
- any URL pointing to a page/post etc on the site
- any assets that has been found (image, CSS, JS and such)
Mainly due to images, JS & CSS files which can be many, the number of pages/files might look big.
This way we’re making it more bulletproof that everything that needs to be on a page, it’s downloaded and follows the same structure as on the WordPress site.
But as I said, your suggestion might be an interesting way to see if some pages are missed so we can include it.
Hi @ctrlsync, we’ll check the Robo gallery to see what it might be.
If it uses lazy loading for images, the first page load might not show them so something like this won’t be found.
Same happened with some Elementor sites where we had to inspect how it stores/shows images to lazy load them. Then read the whole structure of the page and find such to be sure to include them.
If it’s like that, then that’s the issue for sure.
Hi @jessejones, what is the JavaScript that needs to run as navigation? What options did you use in Elementor for it?
Would like to recreate it and test it out locally as well.
Hi @jessejones, so this only happened on 2.3.0, not on the version before?
Don’t remember that we’ve done anything regarding URLs on that point, but will check it out.
The files with random strings are generally included always by scanning the folder of Elementor and putting them in folders.
We had to do this because such libs are loaded conditionally through their main JS file. And since we’re scanning the HTML on page load, such don’t exist until JS is loaded.
Will check what might have happened that would not include such files.
Hi @jessejones, do you have access to any debug/erros logs that have information about the freezing/stalling?
Once you hit generate, does it not do anything after a while? The “button” says “Cancel” and nothing happens? If you reload the page, does it start to do the same or finish the process?
Hi @chrisdavidmiles, we have implemented a way to include such files when adding them in the option Additional directories/files under Settings > Includes/Excludes.
Does that not work for you?
Hi @josdejong, we’ve worked on a fix for this. Next version will fix it.
For now, you could add find the class
src/class-ss-url-extractor.php
, find methodextract_and_replace_urls_in_script
and instead ofhtml_entity_decode( $text )
addhtml_entity_decode( $text, ENT_NOQUOTES )
Hi @nanaboakye, that’s on my feature list for the next version.
As it’s a complex thing to do and will require a bit of refactoring, it might not be put in the free version. But I have to decide that yet. Will see how it goes.
Hi @saneldesign, I am so sorry for such a late response. As I had some big events in personal life, I neglected the emails completely. Going through them now.
The WP Automator, when creating a flow, should ask if it’s for a visitor or a logged-in user. When the visitor is chosen, it should show the Giveaway for that.
I’ll check it out. If something like that is missing, I’ll work on it to add it.
Hi @jonathanlespect, ty for providing the explanation and code example.
I’ll have to check it out and see if there is a bigger reason for that happening. If not, I’ll implement the one you suggested.