ZealousWeb
Forum Replies Created
-
Hello caleao,
Using our plugin, you find two options for showing video i.e. either by using lightbox and other by embedding to image part of product page. If you use lightbox, default WooCommerce code for setting src in iframe is used. But if you dont use lightbox, then video src for iframe will be set by our code. To check this issue getting affected by WooCommerce code, please disable the lightbox. Your video will be easily played.
Though you are using lightbox, you have to make a little change in PrettyPhoto js used by WooCommerce. Here is the path for it.
YOUR-SITE-FOLDER\wp-content\plugins\woocommerce\assets\js\prettyPhoto\jquery.prettyPhoto.min.js. Replace all http: to https:, and enjoy your video.Let us know if this works for you.
Thanks,
ZealousWebForum: Plugins
In reply to: [Accept PayPal Payments using Contact Form 7] Submit errorHello wordpressgroup,
You have to put item amount field in the Contact Form 7 with its ID attribute. Then you have to assign its ID name to Item Amount field of PayPal Submit button. Your shortcode for PayPal submit should look like,
<p>[paypalsubmit class:paypalbtn email:[email protected] itemamount:itemamount itemname:itemname return_url:https://mysitename.com cancel_url:https://mysitename.com "Pay With PayPal"]</p>
If you pass proper ID values of Contact Form 7 fields to PayPal Submit button, it will not show the message notifying you “You are not redirected to PayPal as you have not configured PayPal Submit Button properly”.
Feel free to contact us at https://opensource.zealousweb.com/ if you still find the issue.
Thanks,
ZealousWebForum: Plugins
In reply to: [WooCommerce Teams] Custom Team NamesHi Michael Vieth,
I have solved this issue. You can add this code in plugin file if this could be helpful to you.
Replace the function “save_wooteam_on_checkout” with below given code of same..
function save_wooteam_on_checkout( $order_id ) {
// get teams
$teamsRaw = explode(‘,’, esc_attr( get_option(‘wcft-teamList’) ));
$teams[] = “Select your fundraising team…”;
/*Changed by ZealousWeb, To save custom team names*/
foreach($teamsRaw as $t) {
if(!empty($t))
{
$teams[] = trim($t);
$newteam[] = trim($t);
}
}
/*Ends here*/
// save selection
if ( !empty($_POST[‘team_id’]) && $_POST[‘team_id’] != “0” ) {
$teamName = $teams[$_POST[‘team_id’]];
update_post_meta( $order_id, ‘Team Name’, $teamName);
}
// save user-submitted
else if(!empty($_POST[‘team_name’])) {
$teamName = $_POST[‘team_name’];
update_post_meta( $order_id, ‘Team Name’, $teamName);
/*Added by ZealousWeb, To save custom team names*/
$newteam[] = $teamName;
$newteam = implode(‘,’, $newteam);
update_option(‘wcft-teamList’,$newteam );
/*Ends here*/
}
// save default
else {
$teamName = “No team selected”;
update_post_meta( $order_id, ‘Team Name’, $teamName);
}
}Thanks,
ZealousWebOur plugin uses default WooCommerce Lightbox. So if you want to display lighbox on single product page, it is compulsory to enable lighbox feature in Woocommerce Settings. It may not support any theme other than wordpress themes.
Hi mr.zatan,
You can disable default lightbox functionality from WooCommerce Settings. This plugin uses default lightbox of WooCommerce itself.
Let us know if any issue.
Thanks,
ZealousWebHello mr.zatan,
You cannot directly add video from Google Drive but can upload to YouTube or Vimeo site and then use it using “WooCommerce – Embed Videos To Product Image Gallery” plugin.
Thanks,
ZealousWebForum: Plugins
In reply to: [Accept PayPal Payments using Contact Form 7] Mail not sendingHi Zabrin,
I hope you solved your issue with mail settings in your Contact Form 7 form and satisfied with our plugin and support.
Thanks for your review and feel free to contact us if any issue further.
Forum: Reviews
In reply to: [Accept PayPal Payments using Contact Form 7] Any option with Gravity formHi Roberson Travis,
Thank you for showing your interest in our plugin. For now, there is no option to integrate PayPal with Gravity form. And in near future we will surely plan to meet all your requirements of PayPal extension.
Thanks,
ZealousWebForum: Plugins
In reply to: [Accept PayPal Payments using Contact Form 7] Mail not sendingHi zabrin,
You can check this to contact us, https://opensource.zealousweb.com/contact-us/.
Thanks,
ZealousWebForum: Plugins
In reply to: [Accept PayPal Payments using Contact Form 7] Mail not sendingHi Marius (Clorith),
Thank you for guiding us regarding The Bad Stuff of WordPress. We are sorry for this we will take care of this in future.
@kirio7 – Please follow our documentation and if you find any issue then contact us at https://opensource.zealousweb.com/product/contact-form-7-paypal-extension/.
Thanks,
ZealousWebHi Marius (Clorith),
Thank you for guiding us regarding The Bad Stuff of WordPress. We are sorry for this we will take care of this in future.
@kirio7 – Please follow our documentation and if you find any issue then contact us at https://opensource.zealousweb.com/product/contact-form-7-paypal-extension/.
Forum: Plugins
In reply to: [Accept PayPal Payments using Contact Form 7] Mail not sendingHi zabrin,
This plugin has no affect on Contact Form 7’s mail sending feature. Can you please check if mail settings in this particular form has been properly set up? If yes, will you please provide your wordpress admin details so that we can check it from our end.
Feel free to ask for the support further.
Thanks,
ZealousWebHi kirio7,
Sorry for the late reply. Can you please make sure that you have installed Contact Form 7? It is compulsory to install & activate Contact Form 7 before activating “Contact Form 7 – PayPal Extension” plugin? If you have done so, let us have access to your wordpress admin.
Feel free to ask any support further.
Thanks,
ZealousWebForum: Reviews
In reply to: [Accept PayPal Payments using Contact Form 7] Multi Language supportYes Patrick, we will surely support Multiple Languages in next release of this plugin.
Thanks,
ZealousWebHi joym,
You are welcome anytime. It would be our pleasure to have your reviews and ratings to our plugin.
Thanks,
ZealousWeb