NaFi
Forum Replies Created
-
It looks like a bug on your plugin, I managed to solve this by doing some workaround on class-taxonomy.php
foreach ( $taxonomies as $taxonomy_name => $object ) {
$or_meta_query = ! Helper::is_taxonomy_indexable( $taxonomy_name ) ? [] :
[
'key' => 'rank_math_robots',
'compare' => 'NOT EXISTS',
];
$term_hide_empty = $hide_empty;
if ( Helper::get_settings( 'sitemap.tax_' . $taxonomy_name . '_include_empty' ) ) {
$term_hide_empty = false;
}
$all_taxonomies[ $taxonomy_name ] = get_terms(
[
'taxonomy' => $taxonomy_name,
'hide_empty' => $term_hide_empty,
'fields' => 'ids',
'orderby' => 'name',
'meta_query' => [
'relation' => 'OR',
[
'key' => 'rank_math_robots',
'value' => 'noindex',
'compare' => 'NOT LIKE',
],
$or_meta_query,
],
]
);
}Forum: Plugins
In reply to: [LiteSpeed Cache] wp_enqueue_script based on countrycool , will test that out so the solution is to server cache data based on user geo location ?
Forum: Plugins
In reply to: [WCFM - Frontend Manager for WooCommerce] Issue with Variations Not Showingif you use comma on attributes value, this happens. For example 40No’s. this create problem. when WCFM save the variable it save as 40No\’s. No idea why this happen. we might need clarification from the developer
@taillards any luck, i guess this case on nginix server
Forum: Plugins
In reply to: [WCFM - Frontend Manager for WooCommerce] WCFM Vendor RegistrationUnderstand may b you may consider that as a feature suggestion, And an possibility to allow multiple file upload Custom Fields ?
anywhere in admin dashboard either on wc or wcfm, so that admin can trigger this action in case vendor request to resend email notification
Thanks, I would suggest to add a button to trigger this on the next update
Could you please help me on the snippet, for a custom order status “WC-Resend” ?
Forum: Plugins
In reply to: [Sequential Order Numbers for WooCommerce] Not wokringwhere can i set postfix, it’s seems plugin option is mission im on WP 5.3.2
Forum: Plugins
In reply to: [WPCargo Track & Trace] emails not being senti guess its a bug or whatever, when ever i try to track a shipment it keep on sending tracking details email but when open email dont have details actually
Forum: Plugins
In reply to: [WPCargo Track & Trace] emails not being sentsame issue on my site too, @vallatest can help me? How did u solve that?