产品是一种可以买卖的产品。使用此标签仅指经济或商业意义上的产品。对于产品的数学概念,请改用标签[乘法]。
如何直接在 WooCommerce 中的商店页面/产品页面上显示一些属性?
我正在尝试直接在商店页面上显示一些属性。属性全部收集在数据库中。为了更容易展示,我制作了一个屏幕截图,以便您可以更好地了解。 t...
如何直接在 Woocommerce 中的(单个)商店页面/产品页面上显示某些属性?
我正在尝试直接在商店页面上显示一些属性。属性全部收集在数据库中。为了更容易展示,我制作了一个屏幕截图,以便您可以更好地了解。 t...
我编写了一个 WooCommerce 函数,但无法正常工作。 这是代码: add_filter( 'the_posts', 'move_zero_price_products_to_end', 20, 2 ); 函数 move_zero_price_products_to_end( $pos...
我有很多属性的产品。属性值可以是大小、颜色……。我正在尝试创建自定义搜索,但无法获取提取任何产品的查询。 $产品属性 =
在 WooCommerce wc_get_products 函数中处理自定义分类法
我使用标准操作注册分类法: add_action( 'init', 'product_brand_order_taxonomy' ); 函数product_brand_order_taxonomy() { $标签=数组( ‘名字’...
如何在 Product Feed pro 中添加嵌套产品属性?
我正在 WooCommerce 的产品提要专业插件中为 Marktplaats(示例提要)生成产品提要。 Product feed pro 有一个预设的 Marktplaats feed,但它缺少一些必要的属性。
将产品标题显示为 WooCommerce 产品类别档案中的关键词
我想从 WooCommerce 产品类别存档页面获取产品名称,以将它们用作 HTML head 元标记中的关键字。 这是我的代码: 我想从 WooCommerce 产品类别存档页面获取产品名称,以将它们用作 HTML head 元标记中的关键字。 这是我的代码: <meta name="keywords" content="<?php if( is_product_category() ){ foreach ($loop_items as $item); $kewords .= ','. $product->get_name(); echo $kewords; } else $key = get_post_meta( get_the_id(), 'keywords', true); if( ! empty( $key ) ){ $meta_key = esc_html($key); echo $meta_key ; } ?>"/> 您需要循环遍历 WP_Query 帖子以获取产品标题并将其显示为关键字,例如: <meta name="keywords" content="<?php if( is_product_category() ){ global $wp_query; if ( isset($wp_query->posts) ) { $post_titles = array(); // Initializing // Loop through product post foreach ($wp_query->posts as $post) { $post_titles[] = $post->post_title; } echo implode(',', $post_titles); } } else $key = get_post_meta( get_the_id(), 'keywords', true); if( ! empty( $key ) ){ $meta_key = esc_html($key); echo $meta_key ; } ?>"/> 应该可以。
我想获取 woocommerce 产品的详细描述以将其显示在标题中 它适用于简短的描述 我想获取 woocommerce 产品的详细描述以将其显示在标题中 适用于简短描述 <head> <meta name="description" content="<?php $excerpt = ''; if (has_excerpt()) { $excerpt = wp_strip_all_tags(get_the_excerpt()); echo $excerpt; } ?>"/> 但是我想要显示长描述,所以我更改为这个,但它不起作用。 <head> <meta name="description" content="<?php $description = ''; if (has_description()) { $description = wp_strip_all_tags(get_the_description()); echo $description; } ?>"/> </head> 如何在头部显示 WooCommerce 产品长描述? 函数 has_description() 和 get_the_description() 在 WordPress 中不存在,在 WooCommerce 中也不存在。 正确使用的 WordPress 功能是:get_the_content(),例如: <head> <meta name="description" content="<?php $description = get_the_content(); if ( $description) { echo wp_strip_all_tags($description); } ?>"/> </head> 应该可以。
如何获取 WooCommerce 产品详细描述以将其显示在标题中?
我想获取 woocommerce 产品的详细描述以将其显示在标题中 它适用于简短的描述 我想获取 woocommerce 产品的详细描述以将其显示在标题中 适用于简短描述 <head> <meta name="description" content="<?php $excerpt = ''; if (has_excerpt()) { $excerpt = wp_strip_all_tags(get_the_excerpt()); echo $excerpt; } ?>"/> 但是我希望显示长描述,所以我改为此,但它不起作用。 <head> <meta name="description" content="<?php $description = ''; if (has_description()) { $description = wp_strip_all_tags(get_the_description()); echo $description; } ?>"/> </head> 如何获取 WooCommerce 产品详细描述以将其显示在标题中? 函数 has_description() 和 get_the_description() 在 WordPress 中不存在,在 WooCommerce 中也不存在。 正确使用的 WordPress 功能是:get_the_content(),例如: <head> <meta name="description" content="<?php $description = get_the_content(); if ( $description) { echo wp_strip_all_tags($description); } ?>"/> </head> 应该可以。
如何通过 WooCommerce Rest API 发送大量产品
我正在为WordPress开发一个插件。我正在从第三方 API 接收产品,但是当我向 WooCommerce REST API 发送请求时,我收到内部服务器错误或 WooCommerce HTTP cl...
Wordpress wp-电子商务插件将缺货产品移动到页面末尾
使用下面的wp-e-commerce插件: https://github.com/wp-e-commerce/WP-e-Commerce 试图弄清楚如何让所有具有“缺货”状态的产品出现在...
在 WooCommerce 设置中要求全局注册很简单,但对于我们销售的大多数产品来说,这是没有必要的,我宁愿限制登录用户。 然而对于...
如何在 Woocommerce 产品编辑器 (wp-admin) 中显示 acf 字段?
ACF 字段不会显示在产品编辑器页面上。我进入“所有产品”页面,在产品选项中单击“编辑”,然后进入该页面。在“主要”t...
修改“get_cart_contents_count()”以仅计算 WooCommerce 购物车中的特定产品 ID
我在 WooCommerce 中有 3 个门票产品,并且想要为购买的每个门票产品添加一个名称字段 - 因此,如果客户购买三张门票,则会在结账时显示 3 个名称字段以供填写。 ...
当客户之前购买过产品时,将“添加到购物车”按钮文本 + url 更改为“我的帐户”订单视图页面
这个想法是更改 WooCommerce 商店和档案页面以及单个产品页面上的“添加到购物车”按钮文本 + url。 添加到购物车的 URL 应指向查看订单详细信息页面,如果客户...
此代码在单个产品页面上(几乎)正确的位置(产品标题上方)输出产品(品牌)类别。 我如何将其(产品类别)超链接到产品类别...
当产品出现在 WooCommerce 中时,显示带有术语的标签
在 WooCommerce 单一产品页面上,通过高级自定义字段使用 true/false,我有一个标签,在文本中显示“特色”术语并且工作正常。 这... 添加动作('
我想获取单个产品页面变体下拉菜单的自定义 HTML。 我在这里得到了一些线索。 另一个参考链接 其功能位于此处 → woocommerce/includes/wc-template-functions.p...
我目前正在开发 WooCommerce 主题,并尝试向产品详细信息页面添加侧边栏。 我已经能够添加侧边栏(具体来说,这个:https://web.archive.org/web/
我想获取客户最近购买或最近购买的产品数据。 目前我有这个,但数组的结果给了我随机购买的结果......