roadlink
Forum Replies Created
-
But I don’t use sale price.
Which means it is empty for all products.
I also don’t use sale price related items in feed.
If I exclude sale price empty product, it will mean exclude all products?
PS: I use same template since weeks, this happened after new updatesHi there,
I also found some records on wp-options table.
Should I rename them too?
What I want is to see all lower cases in URL.- This reply was modified 1 month, 1 week ago by roadlink.
Forum: Plugins
In reply to: [GutSlider - All in One Block Slider] static slider responsive issueAlso, couldn’t find a way to add link to whole slider instead of button.
Make it simple;
I want to use it with images and links on them.I don’t want to share my personal information while reporting a bug in public.
In this case, I will not continue to follow this case.Hi Steve,
Is there any way to reach you by mail?Here it is. link
Hi there,
- WordPress is Latest. 6.6.2
- Meta slider is Latest. 3.91.0
- Yes, Gutenberg blocks plugin is generateblocks.
- Error can be seen in browser console or here. https://pagespeed.web.dev/
Forum: Plugins
In reply to: [Google for WooCommerce] Do I need Google Analytics for WooCommerce now?Thanks, well explained.
Hi,
This is what I see in console and pagespeed.web.dev website.
Both of my websites.
I added slider as block but NOT shortcut.Forum: Plugins
In reply to: [Google for WooCommerce] grant access issyueyes, it is solved. Thanks
Forum: Plugins
In reply to: [Google for WooCommerce] Custom stock status issueThis seems solution both for google and facebook plugins.
// Check if the function from Facebook for woocommerce plugin exists
if ( class_exists( 'WC_Facebookcommerce_Integration' ) ) {
add_filter( 'facebook_for_woocommerce_integration_prepare_product_data', 'adjust_facebook_availability_for_eol_products', 10, 2 );
}
function adjust_facebook_availability_for_eol_products( $product_data, $product ) {
if ( 'EOL' === $product->get_stock_status() || 'EOL' === $product->get_meta( '_stock_status' ) ) {
$product_data['availability'] = 'out of stock';
}
return $product_data;
}
// Check if the function from Google for woocommerce plugin exists
if ( function_exists( 'woocommerce_gla_product_attribute' ) ) {
add_filter( 'woocommerce_gla_product_attribute', 'adjust_google_availability_for_eol_products', 10, 3 );
}
function adjust_google_availability_for_eol_products( $value, $product, $attribute ) {
if ( 'availability' === $attribute ) {
if ( 'EOL' === $product->get_stock_status() || 'EOL' === $product->get_meta( '_stock_status' ) ) {
$value = 'out of stock';
}
}
return $value;
}Forum: Plugins
In reply to: [Google for WooCommerce] grant access issyueThis is solution.
Forum: Plugins
In reply to: [Two-Factor] Cannot revalidate session to update the optionssame for me.
Forum: Plugins
In reply to: [Google for WooCommerce] Do I need Google Analytics for WooCommerce now?As mentioned in here, google for facebook also follows purchase event.
In this case do I have 2 plugins for same job?https://github.com/woocommerce/google-listings-and-ads/issues/2465#issuecomment-2342869256
- This reply was modified 2 months ago by roadlink.
Forum: Plugins
In reply to: [Google for WooCommerce] Do I need Google Analytics for WooCommerce now?It is not google analytics but google analytics for woocommerce.
It follow sales etc.
Still need it?