Diego Rodrigues
Forum Replies Created
-
Thanks for the help!
Forum: Plugins
In reply to: [Contact Form 7] Redirect to a website after submittingI solved the problem creating a button without plugin.
<label> <input id="codigo" class="form-inputs" type="text" placeholder="Your code"> </label><input class="botao" type="button" value="See the content"/> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script> <script> $(document).ready(function () { let botao = $('.botao'); botao.on('click', function () { let cod = $('#codigo').val(); location = 'https://mysite.com/' + cod; }) }) </script>
Forum: Plugins
In reply to: [Contact Form 7] Redirect to a website after submittingThank you for the help.
but I’m still having a little problem, how do I add the URL https://mysite.com/ with the code entered in the form for example 1234 so that it ends up being https://mysite.com/1234
I tried using the following code but it didn’t work.
JavaScript code:
<script> document.addEventListener('wpcf7mailsent', function (event) { if ('2090' == event.detail.contactFormId) { var codigo = document.getElementById("drive-codigo").value; location = 'https://skydiveboituva.com.br/'+codigo; } }, false) </script>
Form code:
[text* codDrive id:drive-codigo placeholder “Enter the Code”][submit “See the Content”]
Hi,
The translation file is stored in Author option: plugins/classified-listing/languages/classified-listing-pt_BR.po
In this case should I relocate the file to the system location?
Thanks!
I use this shortcode to show related ads, is correct?
[rtcl_filter_listings related_listings=’4′, view=’grid’ limit=’4′ orderby=’date’ order=’DESC’ columns=’4′ show_image=’1′ image_position=’top’ show_category=’1′ show_labels=’0′ show_price=’1′ show_date=’0′ show_user=’0′ show_views=’0′ pagination=’1′]
Thanks for the answers.
- This reply was modified 3 years, 11 months ago by Diego Rodrigues.