Sinisa Bajic - bajs
Forum Replies Created
-
I had the same issue and it was due the cache.
Forum: Plugins
In reply to: [Accept Stripe Payments] Prepopulate Form With Query String ParametersSure.
// Fetch Query Strings jQuery(document).ready(function($){ function getParameterByName(name, url) { if (!url) url = window.location.href; name = name.replace(/[\[\]]/g, '\\$&'); let regex = new RegExp('[?&]' + name + '(=([^&#]*)|&|#|$)'), results = regex.exec(url); if (!results) return null; if (!results[2]) return ''; return decodeURIComponent(results[2].replace(/\+/g, ' ')); } //Store them in variables let total = getParameterByName('total'); let email = getParameterByName('email'); let full_name = getParameterByName('full_name'); /* Since I have different scenarios and multiple forms (product shortcodes) on single page I am showing different form based on total amount and want the form to open automatically */ if (total == 165.00) { setTimeout(function() { $(".first-product-class").trigger('click'); $(".asp-popup-iframe").load (function(){ $('.asp-popup-iframe').contents().find('#email').attr('value', email); $('.asp-popup-iframe').contents().find('#billing-name').attr('value', full_name); }); },10); } else if... });
Forum: Plugins
In reply to: [Accept Stripe Payments] Prepopulate Form With Query String ParametersThis is solved by myself.
I fetched the query strings, stored them in variables and then after the iframe is loaded added the values to correspondent fields.
Cheers!
Forum: Plugins
In reply to: [Event Tracking for Gravity Forms] pagination form issuesI was wondering is it possible to completely disable pagination tracking?
Forum: Plugins
In reply to: [Arigato Autoresponder and Newsletter] remove unsubscribe link@kiddan01
I believe plugin author is either telling you that there is no official option for your request or he might be afraid of other violations that will lead to the plugin author, but…
Of course it is possible to remove the unsubscribe link.
Locate plugin folder and bft-autoresponder.php file.
Go to line 447 below // add unsubscribe link.Remove this:
$unsub_url = get_option(‘siteurl’).”/?bft=bft_unsubscribe&email=”.$member->email;
if(strstr($message, ‘{{{unsubscribe-url}}}’) or strstr($message, ‘{{{unsubscribe-link}}}’)) {
$message = str_replace(‘{{{unsubscribe-url}}}’, $unsub_url, $message);
$message = str_replace(‘{{{unsubscribe-link}}}’, ‘‘.$unsub_url.’‘, $message);
}
else {
// add the default one
if($content_type == ‘text/html’) {
$message.= “<br><br>”.__(‘To unsubscribe from our list visit the url below:’, ‘broadfast’).
“<br>$unsub_url“;
$message=str_replace(“\t”,””,$message);
}
else {
$message.= “\n\n”.__(‘To unsubscribe from our list visit the url below:’, ‘broadfast’).”\n”.$unsub_url;
}
}Thats it!
Same thing here.
No progress bar visible.Forum: Plugins
In reply to: [Email Before Download] “No Direct Access” error – can’t download filesYes, it appears on the page but still doesn’t in the email.
Confirmed.
V 1.7.19 works like a charm.
Thanks!Not only last update 1.7.18 but 1.7.17 as well.
I reverted back to 1.7.16 to solve the issue.Forum: Plugins
In reply to: [Site Reviews] Display Rating in Slider CarouselThank you!
Ok. Sent the same question there.
Thanks.Forum: Plugins
In reply to: [WP Photo Album Plus] Plugin caused PHP Fatal errorExcellent job Jacob.
It works like a charm!
Many thanks!Forum: Plugins
In reply to: [WP Photo Album Plus] Plugin caused PHP Fatal errorSince we are updating regularly I assume it is version prior to final.
Current PHP version: 5.4.45Forum: Plugins
In reply to: [WooCommerce] Translation HelpThank you!
This is solved!Forum: Reviews
In reply to: [Genesis Simple Footer Widgets] Saved loads of timeHello Joe
We are running Genesis Framework Child here https://ricksmith.me
The installation worked great on test server with the plugin but after we transferred the website to new server the plugin gave us an error.
Parse error: syntax error, unexpected T_STRING in…/wp-content/plugins/genesis-variable-footer-widgets/plugin.php on line 1
where we have
<?php namespace JD_Genesis_Simple_Footer_Widgets;What could be an issue here?
Tnx