Rose and Josiah
Forum Replies Created
-
In the cf7-elavon-converge-payment-form.php file I ended up replacing: <ssl_description>’.$ssl_description.'</ssl_description>
with:
<ssl_description>’.$ssl_description.'</ssl_description>
<ssl_designation>’.$ssl_description.'</ssl_designation>
<ssl_last_name>’.substr($ssl_cardholdername,strpos(‘ ‘,$ssl_cardholdername)).'</ssl_last_name>It seems to be working.
Forum: Plugins
In reply to: [Quick Donation For WooCommerce] Donation Product Won't DisplayWhy would you charge me for your plugin not working?
Forum: Plugins
In reply to: [Quick Donation For WooCommerce] Donation Product Won't DisplayHi,
I’ve implemented the shortcode and that’s helpful but I still don’t find any of the projects reaching or displaying in my cart. You can see what I mean here: https://www.africanbiblecolleges.net/online-donations/
Forum: Plugins
In reply to: [Quick Donation For WooCommerce] Donation Product Won't DisplayThank you!
Forum: Plugins
In reply to: [WP-Print] Print URL redirects to another pageIn terms of “GET” variables, I have basically resolved my own issue. I added an option to the admin menu (print-options.php) and based on that option, added this to the wp-print.php file under line 97 ($print_link = $print_link.’print/’.$polyglot_append;):
if ($polyglot_append == NULL){ $print_get_variables = intval($print_options['get_variables']); if ($print_get_variables == 1){ foreach($_GET as $k => $v){ $get_variables .= '&'.$k.'='.$v; } $print_link .= "?".substr($get_variables,1); } }I’m open to other suggestions, particularly if they resolve the issue in terms of $_POST variables. I didn’t research what the $polygot_append variable is for but it was coming up null for my site so I worked as though it always will. Time will tell if that was a wise assumption.
Forum: Plugins
In reply to: [WP-Print] Print URL redirects to another pageHi Lester,
I’m pretty impressed with your plugin. Thank you!
The issue I’m having is that I’d like my users to be able to print form input results but as soon as they click the print link they are redirected to a separate tab where all $_GET and $_POST variables are no longer in play. Is there anyway around this?
Thanks so much!
Forum: Themes and Templates
In reply to: [Virtue] Full width posts – virtue themeThanks! This is exactly what I was looking for in terms of that addition to the child theme function file. I appreciate it!
Forum: Plugins
In reply to: [Simple Dropbox Upload] Error: Error: (401) Unauthorizedhmmmm…. it looks like the issue pertained to having Dropbox Photo Sideloader installed.
Thank you!
Forum: Plugins
In reply to: [easyReservations] Two questions…1-payment and 2-form error.I figured out that the 1 is most likely representing my wp current user id and that the error doesn’t occur when I’m not logged into WordPress. This is a hassle in terms of testing things as I sort out the detials of how I’d like things set up but workable. If anyone has any ideas though on why this might be happening, I’d love to hear them.
Forum: Plugins
In reply to: [easyReservations] Two questions…1-payment and 2-form error.I am also using the free version while I test out the functionality and how good a fit this plugin will be.
Every time I submit the form I get this error.
Errors found in the form
There is a problem with the form, please check and correct the following:
1Here is the page: http://www.africanbiblecolleges.net/liberia/reserve-a-spot-in-liberias-guest-housing/
I have deactivated unnecessary plugins and double checked for wp_footer(); in the footer.php file. Any ideas anyone?
Thank you in advance!
Forum: Plugins
In reply to: [Dropbox Folder Share] Can not read shared folderThank you very much! It is working wonderfully again!
Forum: Plugins
In reply to: [Dropbox Folder Share] Can not read shared folderI’m having the same issue but I’m looking forward to the solution.
Forum: Plugins
In reply to: [Dropbox Folder Share] "Can not read shared folder"This is the problem I’ve suddenly started having as well. I updated the plugin just in case that was the issue but, with the latest version, this is still he issue I’ve been having. I have really loved this plugin thus far and appreciate it very much! Thank you!
Forum: Plugins
In reply to: [Simple Dropbox Upload] Link to Multiple Dropbox FoldersHi All. First of all, this is an awesome plugin. Thank you very much! I am also needing to upload to multiple folders (all subfolders of the folder I specified in the plugin’s settings).
I’ve managed this by adding the following code in the wp_dropbox.php file around line 95 (note that the first two lines are part of the pre-existing code):
$wpsdb_up_method = get_option('wpsdb_php_pear'); $wpsdb_path = get_option( 'wpsdb_path' ); /* User defined Subdirectory and Custom Renaming Attributes */ extract(shortcode_atts(array('subdir' => NULL, 'rename' => NULL), $atts, 'simple-wp-dropbox')); if ($subdir != NULL){ $wpsdb_path .= $subdir.'/'; } /* end user-defined subdirectory, etc. */Additionally, because I need the resulting files to have particular names (though not the original file names), I included this code further down around line 276 (again, first two lines are the original, pre-existing code)
$wpsnew_file_name = explode(".",$file['name']); $wpstmpFile = $wpsdb_tmp_path.'/'.str_replace("/", '_', $wpsnew_file_name[0]) . "_" . rand(1000,9999) . "_" . date("Y-m-d") . "." . str_replace("/", '_', end($wpsnew_file_name));//$wpsnew_file_name[1]); /* Renaming file based on custom user-defined input */ if ($rename != NULL) $wpsnew_file_name[0] = $rename; $wpstmpFile = $wpsdb_tmp_path.'/'.str_replace("/", '_', $wpsnew_file_name[0]) . "." . str_replace("/", '_', end($wpsnew_file_name));//$wpsnew_file_name[1]); /* end renaming */Now I can use the shortcode like this:
[simple-wp-dropbox subdir=”My-Custom-Subdirectory” rename=”my-custom-name”]Now I can use different pages on my site to upload to different subfolders or (as is the case) define the subfolder dynamically through a PHP variable.
Both variables remain optional but adding the second code snippet does short-circuit the default renaming so don’t insert that part without considering that.
Forum: Plugins
In reply to: [Simple Dropbox Upload] RenameIs there any chance we could be given the option of choosing how the files are re-named. For instance, I would really like to enforce a particular naming schema where I ask the visitor to provide their name and email address and then I’d like to rename the file based on that.