ruymanbr
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce Cart Abandonment Recovery] wp_cartflows_ca_email_history missingI had to manually create the database, then create the relationships, comparing a “working” database with the correspondant table.
But this won’t work for people that don’t have that “luxury”.
It’d be great if you guys provide a SQL query to create table, columns, and relationships all in one.
Forum: Plugins
In reply to: [Contact Form 7] jquery not workingHi @jessezy
I have your solution. Do this exactly, very carefully:
First, create a “.js” fille inside a folder called “js” inside your child-theme (important to have a child theme so it won’t brake or be lost in the next update).
Let’s say: “scriptNameHere.js”
Forget jquery.min file… it’s already loaded by your theme, almost certain.
Your code isn’t properly done. First, … identation for good sake!
Then, You’ll need to use something like this:
jQuery(document).ready(function($) { // vars here // your functions here }
in that “scriptNameHere.js” file
Finally you’ll need to call the “js” file in your childtheme’s functions.php using an action:
function add_custom_script() { wp_enqueue_script( 'scriptNameHere', get_stylesheet_directory_uri() . '/js/scriptNameHere.js', array ( 'jquery' ), 1.0, true); } add_action( 'wp_enqueue_scripts', 'add_custom_script' );
Voilà!!
Hope that helps.
Yes. Example working here –> dynamically adding fields
Forum: Plugins
In reply to: [Contact Form 7] forward the output based on inputHi @Ping79
Yes, totally.
In the “To: ” field, use a TAG that you, for example “hide” using JQuery. More help about this here –> Hide/Show fields in Contact Form
Then fill it by using conditional programming with JQuery aswell, depending on values user select or fill in the form.
You’ll need to use if $(“#example”).change() { // whatever } so reacts like a “listener” acting on every change on that field. Well… extend that reactiness to every sensible field to consider when evaluating the address you need to decide.
PseudoCode:
In contact form it could be as
-> [text hidden-element html_id="hiddenElement" html_class="thisIsHidden"]
In email form as
-> To: [hidden-element]
You’d need to add a script loaded withing the “enqueue_scripts” action so you make sure JQuery is loaded and working before reading the script as the link I provided recommend.
possible script file would be like this pseudocode one:
jQuery(document).ready(function($) { // some variables declarations if (this changes) { if ... // Check if some conditions are fullfill { // Do something about that --> modify $("#hiddenElement").innerHtml("SOMETHINGHERE") } else { // do nothing or something else } } If (this other thing I want to overview changes...) { // blabla - same as above } If ($("#hiddenElement").change() { // Check if everything is ok with the other sensible elements to consider // If necessary modify this element } }
I hope this points you in the right direction. Good luck!
Forum: Plugins
In reply to: [Contact Form 7] get email@vinceperez Hi there.
Use flamingo plugin to store emails, and use flamingo functions to create and populate a file on your hosting with it via php functions.
Forum: Plugins
In reply to: [Contact Form 7] File Upload – Style the "Choose File" buttonHere is a more fine solution. You’re wellcome
How-to-customize-and-display-file-upload-button-for-a-contact-form-7-plugin-using-css-and-jquery
You’re an awesome helper.
Thanks. I’ll give it a few more checks, and If I can’t resolve it, I will use the Google XML Sitemaps as you recommended.
Thanks, and I DO really hope to see this and all your plugins get improved over time.
I think you have talent.
And btw, you should get an english co-website (linked in your main one), and start doing a little more: Themes, sell your services proffesionally.
You got talent, and you can make a living out of this. Trust me ;).
That was my first attempt to clear this issue.
I’ll tell you what I’ve tried so far, unsuccessfully:
1) Cleared Full cache.
2) Saved permalinks (save the day most of the times… XD).
3) Deleted unused plugins.
4) Updated versions of in use plugins (but they only had minor bug-fixes, unrelated to this… Anyways, I tried it, just in case it might had something to do with this, but nope).
5) Tried modifying The Seo framework itself (Line 61 in the sitemap class… Same result).
6) … Etc.I’m gonna try now:
1) Deactivating the plugin and reactivating it again.
2) Deactivating all cache functions.
3) Reactivating them, if 2 doesn’t work.
4) …The comments?
I didn’t remove anything. Just added the filter you gave me to my child’s theme’s functions.php.
I keep seing it as usual, 747 total url in the index… It’s not different than before.
Something isn’t working.
That was helpful.
I found it on this route:
…/autodescription/inc/classes/sitemaps.class.php
On the same lines.
I added the filter on my child-theme functions.php.
But so far, I keep seing a diminished index.
How long until the change takes effect?
Hi.
It seems I didn’t make myself clear. I already knew all that. Thanks anyways.
What I mean is.. Where did YOU have that filter (700 post limit in index) added??
If you don’t remember, it’s ok, I’ll spend some time looking for it, just let me know.
I’ll check on functions.php from the plugin (if there is such file) whether you tell me or not.
Thank you. Great plugin (I started following you in LinkedIn today).
Thank you for your response.
What file should I edit and where is it?
Forum: Reviews
In reply to: [SEO Data Transporter] Very usefulFake comment?
It doesn’t support YOAST SEO to take the data from…
I’m stuck with this issue now.
Sorry, I settled them back to where they were. You can verify them now.
As you can see HERE, funnel isn’t working properly either. It count the checkout/order-received as normal checkout, and miss the real checkout before paypal…
Forum: Reviews
In reply to: [Parallax Gravity - Landing Page Builder] InstallallationAgree.