shayed
Forum Replies Created
-
i think you didnt get my point. it shows on column when edited in elementor but when i publish it shows blank.
Forum: Plugins
In reply to: [WooCommerce] Sort by categoriesIs it possible to give me that custom code?
Forum: Themes and Templates
In reply to: [OceanWP] mobile header menu not alignedThanks for your response. My address kroybook.com
Forum: Plugins
In reply to: [WCFM Marketplace - Multivendor Marketplace for WooCommerce] REDIRECTIONI am using oceanwp theme. I dont know whether it has or not but from woocommerce i have activated that option.
Forum: Plugins
In reply to: [WCFM Marketplace - Multivendor Marketplace for WooCommerce] REDIRECTIONadd_filter( ‘woocommerce_add_to_cart_redirect’, function( $url, $product ) {
if( $product && is_object( $product ) && method_exists( $product, ‘get_id’ ) && function_exists( ‘wcfm_get_vendor_id_by_post’ ) ) {
$vendor_id = wcfm_get_vendor_id_by_post( $product->get_id() );
if( $vendor_id && function_exists( ‘wcfmmp_get_store_url’ ) ) {
$url = wcfmmp_get_store_url( $vendor_id );
}
}
return $url;
}, 500, 2 );Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] mu-pluginsOne more
The scheduled event, jetpack_scan_refresh_states_event, is late to run. Your site still works, but this may indicate that scheduling posts or automated updates may not work as intended.Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] mu-pluginsKroybook.com
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] mu-pluginsN one more problem
It looks like your Jetpack connection is broken. Try disconnecting from WordPress.com then reconnecting.: 400
Forum: Plugins
In reply to: [WCFM Marketplace - Multivendor Marketplace for WooCommerce] cartThanks bro i also think of that. Bro just want to know when do your products go on sales? like to buy few for my single site.
Forum: Plugins
In reply to: [WCFM Marketplace - Multivendor Marketplace for WooCommerce] cartHi thank you. Sorry to say it only works from single product page. From search result page it just adds to cart. Any idea whats wrong? i used oceanwp theme.
Forum: Plugins
In reply to: [WCFM Marketplace - Multivendor Marketplace for WooCommerce] cartI mean when a customer adds a product from woocommerce it should redirect to seller store page. Lets say customers search by biryani in woocommerce page n biryanies from different sellers come out n buyers click add to cart then briyani from x seller added to cart n seller redirect to x seller home page.
hi bro is it possible when a buyer add a product to his cart that click will direct him to seller shop page aswell?
note i am using a code where customer can buy from one seller at a timeadd_action( 'woocommerce_add_to_cart_validation', function( $is_allow, $product_id, $quantity ) { $product = get_post( $product_id ); $product_author = $product->post_author; //Iterating through each cart item foreach ( WC()->cart->get_cart() as $cart_item_key => $cart_item ) { $cart_product_id = $cart_item['product_id']; $cart_product = get_post( $cart_product_id ); $cart_product_author = $cart_product->post_author; if( $cart_product_author != $product_author ) { $is_allow = false; break; } } if( !$is_allow ){ // We display an error message wc_clear_notices(); wc_add_notice( __( " one seller at a time!", "wcfm-ecogear" ), 'error' ); } return $is_allow; }, 50, 3 );
- This reply was modified 4 years, 8 months ago by shayed.
Forum: Plugins
In reply to: [Heateor Login - Social Login Plugin] Facebook login errorgetting this after login with Facebook
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] 404 pages found at Gtmetrixi got same in for my website.
gtmetrix.com is showing following-
Avoid bad requests
The following requests are returning 404/410 responses. Either fix the broken links, or remove the references to the non-existent resources.https://kroybook.com/wp-content/plugins/jetpack/https:/stats.wp.com/s-202023.js
any idea?
note- i have installed woocommerce apps in my mobile phone.
can i use your code to my functions.php in child themes?
Bro can you tell how did u solve it?