informerfrk
Forum Replies Created
-
Noe, the IP address was the destination site while migrating. And the source website was with domain.
Forum: Plugins
In reply to: [MSG91 SMS Lite - for WooCommerce] How to add phone verify on my account pageWell, This plugin doesn’t verify phone number. Here are all the features of this plugin – https://www.eyeswift.com/msg91-woocommerce-sms-notification-plugin/
Forum: Plugins
In reply to: [MSG91 SMS Lite - for WooCommerce] How to buy the pro version?Here is the link to buy pro version – https://gum.co/yicLO. You can pay using PayPal or credit card to buy the pro version.
Forum: Reviews
In reply to: [MSG91 SMS Lite - for WooCommerce] I am facing issue with your Pro PluginSorry, but the plugin doesn’t contain any OTP sending functionality in pro version that is available as you can read in WordPress official plugin page, all the pro features are listed and no where mention about OTP. But I have extended the functionality and added the OTP sending functionality for the pro plugin. Please contact me to get this plugin. There is no need to pay for the pro plugin. Please contact with the email that you used to buy the pro plugin.
okay, I have found the problem and fixed it. There was a problem in my coding where I wrote code to nofollow all external link during loading the content.
Forum: Plugins
In reply to: [WooCommerce] Woocommerce search result showing all the productsThis post is 4 month old and I can’ remember.
Forum: Themes and Templates
In reply to: Should I remove site name from tag for better SEO result?See the current title structure of my site – https://www.eyeswift.com/2016/08/greenland-or-white-greenland-or-icy-greenland/ , You can see >>Sitename
Forum: Fixing WordPress
In reply to: Images of post contents not responsive.thanks
Forum: Fixing WordPress
In reply to: Images of post contents not responsive.Well I have develop the theme. May be their are some mistake. I will check it. Preciously I made a theme which had no problem like this
Forum: Fixing WordPress
In reply to: Images of post contents not responsive.Hello, i don’t want to use plugin. I want the code. And CSS will not work as I am getting width=”600″ and height=”347″ in the HTML when I see source code..
Forum: Fixing WordPress
In reply to: Images of post contents not responsive.Forum: Plugins
In reply to: [WooCommerce] Add to cart redirect to cart page only for single productJust copied and past this code. but nothing work …
add_filter( 'woocommerce_add_to_cart_redirect', 'wc_custom_cart_redirect' ); function wc_custom_cart_redirect( $url ) { if ( is_singular( 'product' ) ) { return get_permalink( wc_get_page_id( 'shop' ) ); } else { return $url; } }
My Add to cart template code is –
<?php /** * Custom Loop Add to Cart. * * Template with quantity and ajax. */ if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly. global $product; ?> <?php if ( ! $product->is_in_stock() ) : ?> <a href="<?php echo apply_filters( 'out_of_stock_add_to_cart_url', get_permalink( $product->id ) ); ?>" class="button"><?php echo apply_filters( 'out_of_stock_add_to_cart_text', __( 'Read More', 'woocommerce' ) ); ?></a> <?php else : ?> <?php $link = array( 'url' => '', 'label' => '', 'class' => '' ); switch ( $product->product_type ) { case "variable" : $link['url'] = apply_filters( 'variable_add_to_cart_url', get_permalink( $product->id ) ); $link['label'] = apply_filters( 'variable_add_to_cart_text', __( 'Select options', 'woocommerce' ) ); break; case "grouped" : $link['url'] = apply_filters( 'grouped_add_to_cart_url', get_permalink( $product->id ) ); $link['label'] = apply_filters( 'grouped_add_to_cart_text', __( 'View options', 'woocommerce' ) ); break; case "external" : $link['url'] = apply_filters( 'external_add_to_cart_url', get_permalink( $product->id ) ); $link['label'] = apply_filters( 'external_add_to_cart_text', __( 'Read More', 'woocommerce' ) ); break; default : if ( $product->is_purchasable() ) { $link['url'] = apply_filters( 'add_to_cart_url', esc_url( $product->add_to_cart_url() ) ); $link['label'] = apply_filters( 'add_to_cart_text', __( 'Add to cart', 'woocommerce' ) ); $link['class'] = apply_filters( 'add_to_cart_class', 'add_to_cart_button' ); } else { $link['url'] = apply_filters( 'not_purchasable_url', get_permalink( $product->id ) ); $link['label'] = apply_filters( 'not_purchasable_text', __( 'Read More', 'woocommerce' ) ); } break; } // If there is a simple product. if ( $product->product_type == 'simple' ) { ?> <form action="<?php echo esc_url( $product->add_to_cart_url() ); ?>" class="cart" method="post" enctype="multipart/form-data"> <?php // Displays the quantity box. ?> <div class="quantitybx"><?php woocommerce_quantity_input(); ?></div> <?php // Display the submit button. echo sprintf( '<button type="submit" data-product_id="%s" data-product_sku="%s" data-quantity="1" class="%s button product_type_simple adcartbtnsingle">%s</button>', esc_attr( $product->id ), esc_attr( $product->get_sku() ), esc_attr( $link['class'] ), esc_html( $link['label'] ) ); ?> </form> <?php } else { echo apply_filters( 'woocommerce_loop_add_to_cart_link', sprintf('<a href="%s" rel="nofollow" data-product_id="%s" data-product_sku="%s" class="%s button product_type_%s">%s</a>', esc_url( $link['url'] ), esc_attr( $product->id ), esc_attr( $product->get_sku() ), esc_attr( $link['class'] ), esc_attr( $product->product_type ), esc_html( $link['label'] ) ), $product, $link ); } ?> <?php endif; ?>
Forum: Plugins
In reply to: [WooCommerce] Add to cart redirect to cart page only for single productI want to run this code for single product –
add_filter( 'woocommerce_add_to_cart_redirect', 'wc_custom_cart_redirect' ); function wc_custom_cart_redirect() { return get_permalink( wc_get_page_id( 'shop' ) ); }
Forum: Plugins
In reply to: [WooCommerce] Add to cart redirect to cart page only for single productNothing happened with this.. This is not working at all
Forum: Plugins
In reply to: [WooCommerce] Add to cart redirect to cart page only for single productI am not good in coding. Can you please send me whole the code so that I will just copy and paste inside functions.php and it will start work ?