rifatspir
Forum Replies Created
-
Forum: Plugins
In reply to: [Customer Reviews for WooCommerce] Some fonts changed after enable short codehere’s the site url
Forum: Plugins
In reply to: [Autoptimize] Exclude Pages from AutoptimizeThanks for your fast reply.
I did that in beta version but looks like its not excluding the pages. I have set my products widget products list “Order by >> Random”.
Its show the same products, don’t show randomly. I have used wp rocket and siteground they work good as expected if the excluded that page from settings. Shows new products each time I refresh the page.
Can you help?
Forum: Plugins
In reply to: [Autoptimize] Exclude Pages from Autoptimize@optimizingmatters from where I can download beta versions? I cant find it in WordPress ADVANCED OPTIONS >> PREVIOUS VERSIONS
Forum: Plugins
In reply to: [Facebook for WooCommerce] Duplicated products are posted on FacebookForum: Plugins
In reply to: [Kadence WooCommerce Email Designer] Image alt text showing@negapo ye it is… I forgot to mention here. No need to disable it, just Exclude from Lazy Load the size of the product image. for example, i use attachment-100×50.
Not working at all. Tired all the way suggested here and also from siteground hosting support.
Now I’m using async javascript by Autoptimize and it is working fine. It has an option to completely disable defer JavaScript in cart and checkout page. Hope sg optimizer will add these features.
@wfadam I have already set your recommend rate limiting and using crawl delay in robots txt. Nothing can slow down the Facebook bot. It hits once a day and use cpu (5 core) resources in that time.
If I block the bot, my site link preview does not work when someone share links in Facebook. I do not know why wordfence cannot identify the misbehavior of the bot.
Forum: Plugins
In reply to: [Wallet for WooCommerce] Email Description Not showing@subratamal
How do I add this feature? Can you help me?I have added the new transaction php file in my child theme.
Forum: Plugins
In reply to: [Disable Right Click For WP] Affect SEO?Thanks..
is there any way to work this plugin for mobile UC Browser users?
@wfsupport These settings will be perfect for medium base WooCommerce store? Get daily 5k to 10k visits daily?
I am getting lots of hits by bots and human who’s continuously stealing my products details and images.
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] 2 sec delay in GTmetrix@kokkieh is this bug fixed in latest version ? or i need to use this scode?
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Please explain me about itWhere is the contact form? I can’t find anything in your given link.
Thanks @conschneider. Problem solved, found answer in stackoverflow.
function sv_wc_prevent_checkout_for_category() { // set the slug of the category for which we disallow checkout $category = 'sibling'; // get the product category $product_cat = get_term_by( 'slug', $category, 'product_cat' ); // sanity check to prevent fatals if the term doesn't exist if ( is_wp_error( $product_cat ) ) { return; } $category_name = '<a href="' . get_term_link( $category, 'product_cat' ) . '">' . $product_cat->name . '</a>'; // check if this category is the only thing in the cart if ( sv_wc_is_category_alone_in_cart( $category ) ) { // render a notice to explain why checkout is blocked wc_add_notice( sprintf( 'Hi there! Looks like your cart only contains products from the %1$s category – you must purchase a product from another category to check out.', $category_name ), 'error' ); } } add_action( 'woocommerce_check_cart_items', 'sv_wc_prevent_checkout_for_category' ); /** * Checks if a cart contains exclusively products in a given category * * @param string $category the slug of the product category * @return bool - true if the cart only contains the given category */ function sv_wc_is_category_alone_in_cart( $category ) { // check each cart item for our category foreach ( WC()->cart->get_cart() as $cart_item_key => $cart_item ) { // if a product is not in our category, bail out since we know the category is not alone if ( ! has_term( $category, 'product_cat', $cart_item['data']->id ) ) { return false; } } // if we're here, all items in the cart are in our category return true; }
Forum: Plugins
In reply to: [WooCommerce] Shortcode of scheduled sales products@yazdaniwp Now working and this is what i wanted. Only the columns number not working. It follows my theme default product columns number.
Thank you for your help ??
Forum: Plugins
In reply to: [WooCommerce] Shortcode of scheduled sales products@yazdaniwp Tried that, pagination not working.