Md Abdullah Al Arif
Forum Replies Created
-
Hi @dvharrison,
Make sure that the Add to Cart widget is enabled from ShopEngine > Widgets. Please refer to this screenshot. Since you are in development mode, I recommend enabling all the widgets and modules in ShopEngine to ensure full functionality and identify any potential issues.
Regards
Forum: Plugins
In reply to: [WP Ultimate Review] Wp Ultimate Review <= 2.3.3 – IP Spoofing vulnerabilityHi @gmariani405 ,
Thanks for reaching out to us. We are concerned about the issue raised by WordFence and PatchStack. IP-based reviews have some limitations in ensuring the authenticity of user submissions.?IP addresses can be changed or masked by various means, such as VPN services, proxies, or Tor networks.
This means that while we strive to prevent multiple reviews from the same IP address, it is not a foolproof method to ensure one review per user. We have updated our documentation accordingly [documentation link] & [screenshot] and?added a popup with disclaimer information to ensure transparency with the users. Please refer to this video.
Thank you for your understanding and cooperation.
Kind Regards
ArifHi,
TikTok doesn’t have a dedicated URL sharing scheme like Facebook or Twitter. Since TikTok is a video-sharing platform, you can add the link manually to the above code if you find a TikTok URL. If you’re unable to edit the code, please consider installing a social share plugin.
Regards
Hi@chengjianping,
You can add social share buttons to a single product page with the following code snippet. This example includes links for 4 social platforms, and you can add more as needed. To ensure the changes persist through theme updates, add this code to your child theme’s
functions.php
file or use a code snippet plugin.add_action('woocommerce_share', 'custom_woocommerce_share_buttons', 45);
function custom_woocommerce_share_buttons() {
global $product;
$product_url = get_permalink($product->get_id());
$product_title = get_the_title($product->get_id());
$share_text = 'Check out this product: ';
?>
<div class="custom-share-buttons">
<h3>Share this product</h3>
<a href="https://www.facebook.com/sharer.php?u=<?php echo urlencode($product_url); ?>" target="_blank">Share on Facebook | </a>
<a href="https://twitter.com/share?url=<?php echo urlencode($product_url); ?>&text=<?php echo urlencode($share_text . $product_title); ?>" target="_blank">Share on Twitter |</a>
<a href="https://www.linkedin.com/shareArticle?mini=true&url=<?php echo urlencode($product_url); ?>&title=<?php echo urlencode($product_title); ?>" target="_blank">Share on LinkedIn |</a>
<a href="mailto:?subject=<?php echo urlencode($product_title); ?>&body=<?php echo urlencode($share_text . $product_url); ?>">Share via Email</a>
</div>
<?php
}This code snippet will add social share buttons on single product pages [screenshot]. Customize the social share links and icons as needed.
Regards
Hi @nimbuu ,
Maybe it seems unprofessional to you, but it’s a required options to other users. Anyway, I will talk to our dev team if there are any option to remove the link. You can also submit a feature request from the plugin details page.
I appreciate your feedback.
Regards
Hi @bakhodirov ,
Thank you for sharing the details. Please note that since our MetForm is developed using the REACT framework, it will not parse invalid HTML, external HTML markups, or symbolic characters in the value. As a result, the form may not display on the frontend or give errors.
I suggest making a copy of your form and removing the input field widgets one by one while checking the preview each time. This process will help you identify which input field widgets are causing the issue.
Kind Regards
ArifHi @nimbuu,
I regret to inform you that there is no option to remove that link from the email. This link is essential for tracing the exact entries of the form. We are highly aware of security concerns, and I assure you it is entirely safe. No one can hack your site using this link.
I appreciate your understanding.
Kind Regards
Hi @0zedek0,
Please check your spam/junk folder for our email. If you still don’t see it, you can create a new ticket with another email address. Sometimes, we need to inspect the issue in your environment, but per WordPress standards and rules, we are not authorized to ask for login access here.
I appreciate your understanding.
Kind Regards
Hi @chengjianping,
You know that the Product Filter is a complete widget; there is no option to delete or split any individual controller.
I appreciate your understanding.
Kind Regards
Hi @clementna,
It’s not an issue with the plugin. Since this is a customization requirement, please contact the plugin author’s support forum. Note that some features are related to the Pro version, and per WordPress rules, we are not authorized to discuss any Pro features here.
I appreciate your understanding.
Kind Regards
Arif
Hi @0zedek0,
We received your ticket regarding the same issue and have replied to our support forum accordingly. For further assistance, please follow those tickets.
Regards
Arif
Hi @0zedek0 ,
Greetings! Hope you are well.
We received your ticket regarding the same issue and have replied from our support forum accordingly. I’ve also checked your site and noticed that the Elementor Image and Heading widget codes are present on your Store page [screenshot].
To ensure everything functions correctly, please follow these steps:
- Update All Plugins and WordPress:
- Make sure that all your plugins, including Elementor, WooCommerce, and ShopEngine, are updated to their latest versions.
- Also, ensure that your WordPress installation is up to date.
- Enable ShopEngine Templates, Widgets, and Modules:
- Go to ShopEngine > Builder Templates and verify that all relevant templates are enabled.
- Ensure that all the widgets and modules you need are activated.
Regards
Arif
Hi @syntve,
Hope you are well. You know that most of the styles are coming from the Theme you’re using. Please use this code for your Additional CSS:
//for archive page
.ct-woo-card-actions > form.cart > .ct-cart-actions {
align-items: center !important;
justify-content: center !important;
}
.ct-woo-card-actions > form.cart > .ct-cart-actions > button {
max-width: 70px;
display: inline-block;
padding: 0 !important;
margin: 0 auto;
}
//for single product page
.ct-product-add-to-cart > form.cart > .ct-cart-actions > button {
max-width: 70px !important;
padding: 0 !important;
display: inline-block;
}This will center-align the quantity field and Buy button [screenshot]. I hope this style doesn’t affect other buttons on the site.
Kind Regards
Arif
- This reply was modified 9 months ago by Md Abdullah Al Arif.
Hi,
Please follow the steps above and let us know your update.
Regards
- This reply was modified 9 months, 1 week ago by Md Abdullah Al Arif.
- Update All Plugins and WordPress: