ojasya
Forum Replies Created
-
Hey @matheusfd
Thanks a lot for your reply.
I did what you suggested.. but it didn’t the issue .
Can I do something and regenerate tables? perhaps that would fix issue?Hey @matheusfd
Thanks a lot for your reply.
By default, slug is “donation” so URL for forms are
https://example.com/donation/form1
https://example.com/donation/form2
https://example.com/donation/form3
But I have a client – “Client 1” who don’t want slug to be “donation” , and rather want it to be “campaign”
so for him we handle this by adding following code in wp-config.phpdefine('GIVE_SLUG', 'campaign');
and the URLS becomes
https://client1site.com/campaign/form1
https://client1site.com/campaign/form2
https://client1site.com/campaign/form3
but suppose in future a new client – “Client 2” comes in and demand that he want slug to be
“fundraiser” i.e. the URLs will be
https://client2site.com/fundraiser/form1
https://client2site.com/fundraiser/form2
https://client2site.com/fundraiser/form3
SO this is the use case .
and I suppose that only way to change slug is via wp-config.php
OR am I missing something?
Nope I don’t have any solution.. For now I am using third party plugins- Permalink manager to remove slug or edit slug to handle this .. But that is creating unnecssary redirects and I want to avoid that.
So please let me know if you come up with some solutionhey Reju
Thanks for your message
here is a little video demo explaining the issue
I hope the problem should be clear. but if its not then please let me knowHey @reedwanul
Thanks a lot for your reply and taking time to do that video
That is really helpful knowing that for font size we can control it for all break points. But I guess this is for PRO.
But my question was regarding the dimension i.e margin and padding . There I don’t see such options . we can control margin & padding just for one screen
Or is it that this avaiable in PRO version?Hey Reju
Greetings!
Thanks a lot for the details explanation ??Forum: Plugins
In reply to: [WP Job Manager] Unable to switch author of job listing@gaurav984
thanks a lot for you replyThanks for your prompt reply!
Yes your explanation completely makes sense.
If you can help me with excluding required scripts, that would be awesome.Thanks
- This reply was modified 2 years, 11 months ago by ojasya.
Ok I got it.
$meta = give_get_meta( $donation_id ); $form_id = $meta["_give_payment_form_id"][0];
Sorry for bothering you
Thanks a lot for your reply.
But since I am running logic based on the form id
there is no way to get the form id
is there a way to get the form id from donation id ?
Hey
Ok got it working using following javascript code
jQuery(document).ready(function(){ var oj=0; jQuery( document ).ajaxComplete(function() { if (jQuery(".give-embed-form-wrapper iframe").length>0){ jQuery('.give-embed-form-wrapper iframe').load(function () { setTimeout(function () { oj = jQuery('.give-embed-form-wrapper iframe').contents().find('#give-receipt').length; }, 2000); }); } }); jQuery( document ).on( 'elementor/popup/hide' , function (){ if(oj){ location.reload(); } }); });
- This reply was modified 3 years, 5 months ago by ojasya.
I am trying this following code
jQuery(document).ready(function(){ jQuery( document ).on( 'elementor/popup/hide' , function (){ if (jQuery("#give-receipt")[0]){ location.reload(); }} ); });
But since this is inside the iframe , the code is not able to detect the element with id “give-receipt”
so I am struck here
- This reply was modified 3 years, 5 months ago by ojasya.
Thanks @mrdaro
Thanks so much ..
that was the issue indeed.Hey @baljitdhanjal
Thanks for getting back
Here is the link
https://kwc.servers-hosting.com/about-us/
plugin version is Version 1.2.2
I have deactivated every other plugin but still same error
here are other plugins that are currently installed
- This reply was modified 3 years, 7 months ago by ojasya.
Forum: Plugins
In reply to: [Max Mega Menu] clicking on submenu is not changing the urlHey Tom
Thanks a lot ..
Yes that seems to be it.
I also commented that code , but seems my browser cache was not clear when I rechecked.
And I would have never relooked into it againTons of thanks Tom
- This reply was modified 4 years, 4 months ago by ojasya.