souravkr
Forum Replies Created
-
Hey Beda,
I have created Custom Post Type for that.
Thank you so much for reply & help.
Forum: Themes and Templates
In reply to: [Rookie] Theme in mobile viewHey Roch,
I think my phone or browser not updated, thats’s why i face this problem. but this theme is awesome for sports and news site.
thanks for reply.
Forum: Themes and Templates
In reply to: [Rookie] Theme in mobile viewHey Roch,
Thanks for reply, I am just working on the local server so, i can show you with an image and below the link:
https://drive.google.com/open?id=0BynnqTDa7hvQMTU4b0pWWk84Z1U
When you drag the screen(also in the demo site link https://demo.themeboy.com/rookie-soccer/) than you can see what exactly happens with mobile view.
Thank You.
Hey Beda,
i have created taxonomy for city, state and region. but i am not understanding that how to connect it with one to another. i am trying and watching your video tutorials so, i hope this will help me better. otherwise i’ll have to use core php with ajax and mysql.
Thanks for reply.
Forum: Plugins
In reply to: [WooCommerce] Vegetarian Markhey lorro,
thank you so much.
Forum: Plugins
In reply to: [WooCommerce] Vegetarian Markor have any alternative solution for differentiate the food… so, user can understand easily that food is veg or non-veg using woocommerce plugin extension, or woocommerce hook?
thankyou.
Forum: Plugins
In reply to: [WooCommerce] Vegetarian Markhi lorro,
thanks for reply.
Yes of course, suppose i have a food category and it’s subcategory is veg and non-veg. When we select veg than show a green symbol and when we select non-veg than show a red symbol anywhere around the product
- section.
or can we show as a text like veg or non-veg!
Forum: Plugins
In reply to: [WooCommerce] Vegetarian Markhey lorro,
thanks for reply,
for selected product(s).Forum: Plugins
In reply to: [Woo AJAX Search] Show Only Selected Categoryyou are welcome.
Hi Maciek,
I am trying following code, but not working….
function myfun() {
echo “Code for output”;
}
add_action( ‘woocommerce_after_single_product_summary ‘, ‘myfun’, 16 );thanks.
Forum: Plugins
In reply to: [WooCommerce] Override woocommerce add_to_cart link (shop page)Hi,
Please try following code working or not with your theme…
add following code within your theme’s functions.php file.
———————————————————————–function srv_woocommerce_product_add_to_cart_text() {
global $product;$product_type = $product->product_type;
switch ( $product_type ) {
case ‘external’:
return __( ‘More Details’, ‘woocommerce’ );
break;
case ‘grouped’:
return __( ‘More Details’, ‘woocommerce’ );
break;
case ‘simple’:
return __( ‘More Details’, ‘woocommerce’ );
break;
case ‘variable’:
return __( ‘More Details’, ‘woocommerce’ );
break;
default:
return __( ‘More Details’, ‘woocommerce’ );
}}
add_filter( ‘woocommerce_loop_add_to_cart_link’, ‘srv_add_product_link’ );
function srv_add_product_link( $link ) {
global $product;
$product_id = $product->id;
$product_sku = $product->get_sku();
$link = ‘‘.srv_woocommerce_product_add_to_cart_text().’‘;
return $link;
}thankyou.
Forum: Plugins
In reply to: [WooCommerce] Change Related Products text??hey,
you can use following code within your theme’s functions.php file:
——————————————————————————-
function srv_related_products_strings( $translated_text, $text, $domain ) {
switch ( $translated_text ) {
case ‘Related Products’ :
$translated_text = __( ‘WE THINK YOU’LL ?’, ‘woocommerce’ );
break;
}
return $translated_text;
}add_filter( ‘gettext’, ‘srv_related_products_strings’, 20, 3 );
Forum: Plugins
In reply to: [Extra Product Sorting Options for WooCommerce] Woocommerce Sort ByNo problem…
i’ll choose any other option for this.
thanks.
Forum: Plugins
In reply to: [WooCommerce] Override woocommerce add_to_cart link (shop page)hi,
please put following code within functions.php file of your theme…
//—————————————————————————-
add_filter( ‘woocommerce_loop_add_to_cart_link’, ‘srv_add_product_link’ );
function srv_add_product_link( $link ) {
global $product;
$product_id = $product->id;
$product_sku = $product->get_sku();
$link = ‘‘.srv_woocommerce_product_add_to_cart_text().’‘;
return $link;
}- This reply was modified 8 years, 2 months ago by souravkr.
Forum: Plugins
In reply to: [WooCommerce] Override woocommerce add_to_cart link (shop page)hi,
please put following code within functions.php file of your theme…
//—————————————————————————-
add_filter( ‘woocommerce_loop_add_to_cart_link’, ‘srv_add_product_link’ );
function srv_add_product_link( $link ) {
global $product;
$product_id = $product->id;
$product_sku = $product->get_sku();
$link = ‘‘.sfws_woocommerce_product_add_to_cart_text().’‘;
return $link;
} - section.