Toygar Niron
Forum Replies Created
-
Forum: Plugins
In reply to: [Facebook for WooCommerce] Facebook store reset and category limitHello Pepe,
Actually it shouldn’t be that hard ?? Facebook has a really complex structure. I managed to delete all my catalogs and my Facebook store was closed. I think everything is fine so far. As far as I can see, I no longer have a store, any catalog or product on my Facebook page. Am I going right?
Now I’m going to start all over. I’m going to create a new WooCommerce feed on Facebook and sync it with my website and link it to my page, hoping everything works out. Isn’t that true?
Side note: Based on the thread response here, it appears that this is for a new production site. If possible, could you check the functionality on a staging/development site as well?
We launched this site. It is no longer a developer site.
Thank you
Forum: Plugins
In reply to: [Facebook for WooCommerce] Facebook store reset and category limitHello Igor,
I checked and realized that I am already using version 3.0.5 We make a backup of our website and update it as soon as new versions are released. I’m not sure what version I’m using when this support ticket is opened. Do you still want me to start a new sync operation?
Thank you
- This reply was modified 2 years, 2 months ago by Toygar Niron.
Hello Tariq,
Yes I have some custom encodings for both. I’m forwarding the list;
For Woocommerce;
add_filter( 'woocommerce_cart_item_name', 'jfs_checkout_show_product_thumbnail', 10, 2 ); function jfs_checkout_show_product_thumbnail( $name, $cart_item ) { if ( ! is_checkout() ) return $name; $thumbnail = '<span class="product-name__thumbnail" style="float: left; padding-right: 15px">' . get_the_post_thumbnail( $cart_item['product_id'], array( 60, 120 ) ) . '</span>'; return $thumbnail . '<span class="product-name__text">' . $name . '</span>'; }
function remove_image_zoom_support() { remove_theme_support( 'wc-product-gallery-zoom' ); } add_action( 'wp', 'remove_image_zoom_support', 100 );
add_action( 'after_setup_theme', 'remove_wc_gallery_lightbox', 100 ); function remove_wc_gallery_lightbox() { remove_theme_support( 'wc-product-gallery-lightbox' ); }
add_filter( 'woocommerce_single_product_image_thumbnail_html', 'custom_remove_product_link' ); function custom_remove_product_link( $html ) { return strip_tags( $html, '<div><img>' ); }
function my_wc_hide_in_stock_message( $html, $text, $product ) { $availability = $product->get_availability(); if ( isset( $availability['class'] ) && 'in-stock' === $availability['class'] ) { return ''; } return $html; } add_filter( 'woocommerce_stock_html', 'my_wc_hide_in_stock_message', 10, 3 );
add_action( 'woocommerce_register_form', 'add_terms_and_conditions_to_registration', 20 ); function add_terms_and_conditions_to_registration() { if ( wc_get_page_id( 'terms' ) > 0 && is_account_page() ) { ?> <p class="form-row terms wc-terms-and-conditions"> <label class="woocommerce-form__label woocommerce-form__label-for-checkbox checkbox"> <input type="checkbox" class="woocommerce-form__input woocommerce-form__input-checkbox input-checkbox" name="terms" <?php checked( apply_filters( 'woocommerce_terms_is_checked_default', isset( $_POST['terms'] ) ), true ); ?> id="terms" /> <span><?php printf( __( 'I’ve read and accept the <a href="%s" target="_blank" class="woocommerce-terms-and-conditions-link">terms & conditions</a>', 'woocommerce' ), esc_url( wc_get_page_permalink( 'terms' ) ) ); ?></span> <span class="required">*</span> </label> <input type="hidden" name="terms-field" value="1" /> </p> <?php } }
For Mycred;
function mycred_pro_reward_order_percentage( $order_id ) { if ( ! function_exists( 'mycred' ) ) return; // Get Order $order = wc_get_order( $order_id ); $cost = $order->get_subtotal(); // Do not payout if order was paid using points if ( $order->payment_method == 'mycred' ) return; // The percentage to payout $percent = 100; // Load myCRED $mycred = mycred(); // Make sure user only gets points once per order if ( $mycred->has_entry( 'reward', $order_id, $order->user_id ) ) return; // Reward example 25% in points. $reward = $cost * ( $percent / 100 ); // Add reward $mycred->add_creds( 'reward', $order->user_id, $reward, 'Reward for store purchase', $order_id, array( 'ref_type' => 'post' ) ); } add_action( 'woocommerce_order_status_completed', 'mycred_pro_reward_order_percentage' );
Forum: Plugins
In reply to: [Facebook for WooCommerce] Facebook store reset and category limitHello Pepe,
Unfortunately disabling the plugin didn’t work. Still, I want to give the plugin a chance. How can I completely reset my store? I couldn’t do that with the instructions you gave. I’m not sure if the codes I added are working or not. If I delete woocommerce in the feed option defined on Facebook, can I delete my store? Or more simply, how can I start from scratch?
Thank you
Forum: Plugins
In reply to: [Facebook for WooCommerce] Facebook store reset and category limitHello Pepe,
I implemented the first option. I disabled the ‘Asset Cleanup’ plugin, cleared my cache and re-run Facebook sync. Since there is no time criterion, I will wait 24 to 48 hours and share the situation with you.
Thank you
Forum: Plugins
In reply to: [Facebook for WooCommerce] Facebook store reset and category limitHello Pepe,
*I understand that when a new product is added, then it syncs to your Facebook page, but without displaying in any category -even though it is added to one, on the WooCommerce side. Correct?
Yes that is right. It is listed independently of any category. (you saw the settings, all correct)
I had previously followed your instructions to completely remove my Facebook store, but with no results. Or It worked, but I didn’t wait long enough to see this action on Facebook. Should the action happen immediately when I follow these instructions? So, does the whole store get deleted in a few minutes, or does it have to be stuck in a cache and wait for a certain time?
I can completely disable the “Asset Clean Up” plugin and request a resync. Do you want me to try this first?
Thank you
Forum: Plugins
In reply to: [Facebook for WooCommerce] Facebook store reset and category limitHello Igor,
Below I share screenshots of all the categories I created for facebook, which ones to exclude and how I made adjustments in these categories.
When I add a new product, this Facebook store also appears, but it is not displayed under the category or category it is connected to.
https://nakvaryum.com/wp-content/uploads/Ekran-Resmi-2022-12-03-12.40.03.png
https://nakvaryum.com/wp-content/uploads/Ekran-Resmi-2022-12-03-12.39.42.png
https://nakvaryum.com/wp-content/uploads/Ekran-Resmi-2022-12-03-12.44.13.png
Thank you
Hello Tariq,
I wanted to remind myself. Any progress?
Thank you
Forum: Plugins
In reply to: [Facebook for WooCommerce] Facebook store reset and category limitHello Pepe,
Sorry for my late reply. It took me a while to figure out how to do this. But I followed the instructions and got no results. In this process, I added new products, but I’m having problems with them as well.
For example, I am adding new products, they are not listed in the category I defined. Obviously, they do not belong to any category.
Another problem is that some categories are still not listed. I’ve asked this before but got no answer. Is there a category limit on the Facebook store? Can I open as many categories as I want?
I want to suggest a different solution. Our current store doesn’t really matter. I want to be able to delete everything and resync, but I can’t do that either. I followed the instructions you gave for this, but I couldn’t get any results.
Thank you
Forum: Plugins
In reply to: [Facebook for WooCommerce] Facebook store reset and category limitHello Igor,
Our old site was in TR language and its currency was TL. Since the new site was designed from scratch and did not take any content from the old site, its infrastructure and language were completely prepared in EN and currency in USD.
Products are synced with WPML and USD currency is valid for EN language (default language). We now use the USD currency on Facebook as well. If the user selects the TR language, the currency also changes to TL.
I think all the products causing the problem are displayed in TL currency.
Thank you
Forum: Plugins
In reply to: [Facebook for WooCommerce] Facebook store reset and category limitHello Igor,
### WordPress Environment ### WordPress address (URL): https://nakvaryum.com Site address (URL): https://nakvaryum.com WC Version: 7.1.0 REST API Version: ? 7.1.0 WC Blocks Version: ? 8.7.5 Action Scheduler Version: ? 3.5.3 Log Directory Writable: ? WP Version: 6.1.1 WP Multisite: – WP Memory Limit: 2 GB WP Debug Mode: – WP Cron: ? Language: en_US External object cache: – ### Server Environment ### Server Info: LiteSpeed PHP Version: 7.4.33 PHP Post Max Size: 128 MB PHP Time Limit: 3000 PHP Max Input Vars: 10000 cURL Version: 7.71.0 OpenSSL/1.1.1p SUHOSIN Installed: – MySQL Version: 5.7.39-cll-lve Max Upload Size: 128 MB Default Timezone is UTC: ? fsockopen/cURL: ? SoapClient: ? DOMDocument: ? GZip: ? Multibyte String: ? Remote Post: ? Remote Get: ? ### Database ### WC Database Version: 7.1.0 WC Database Prefix: wpsz_ Total Database Size: 218.47MB Database Data Size: 202.27MB Database Index Size: 16.20MB wpsz_woocommerce_sessions: Data: 0.78MB + Index: 0.02MB + Engine MyISAM wpsz_woocommerce_api_keys: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wpsz_woocommerce_attribute_taxonomies: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wpsz_woocommerce_downloadable_product_permissions: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wpsz_woocommerce_order_items: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wpsz_woocommerce_order_itemmeta: Data: 0.00MB + Index: 0.01MB + Engine MyISAM wpsz_woocommerce_tax_rates: Data: 0.00MB + Index: 0.01MB + Engine MyISAM wpsz_woocommerce_tax_rate_locations: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wpsz_woocommerce_shipping_zones: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wpsz_woocommerce_shipping_zone_locations: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wpsz_woocommerce_shipping_zone_methods: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wpsz_woocommerce_payment_tokens: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wpsz_woocommerce_payment_tokenmeta: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wpsz_woocommerce_log: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wpsz_actionscheduler_actions: Data: 0.73MB + Index: 0.25MB + Engine MyISAM wpsz_actionscheduler_claims: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wpsz_actionscheduler_groups: Data: 0.00MB + Index: 0.01MB + Engine MyISAM wpsz_actionscheduler_logs: Data: 0.44MB + Index: 0.32MB + Engine MyISAM wpsz_commentmeta: Data: 0.00MB + Index: 0.01MB + Engine MyISAM wpsz_comments: Data: 0.04MB + Index: 0.01MB + Engine MyISAM wpsz_dokan_announcement: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wpsz_dokan_delivery_time: Data: 0.02MB + Index: 0.05MB + Engine InnoDB wpsz_dokan_distance_rate_shipping: Data: 0.02MB + Index: 0.05MB + Engine InnoDB wpsz_dokan_follow_store_followers: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wpsz_dokan_orders: Data: 0.02MB + Index: 0.03MB + Engine InnoDB wpsz_dokan_product_map: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wpsz_dokan_refund: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wpsz_dokan_report_abuse_reports: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wpsz_dokan_reverse_withdrawal: Data: 0.02MB + Index: 0.08MB + Engine InnoDB wpsz_dokan_rma_conversations: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wpsz_dokan_rma_request: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wpsz_dokan_rma_request_product: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wpsz_dokan_shipping_tracking: Data: 0.02MB + Index: 0.03MB + Engine InnoDB wpsz_dokan_shipping_zone_locations: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wpsz_dokan_shipping_zone_methods: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wpsz_dokan_table_rate_shipping: Data: 0.02MB + Index: 0.05MB + Engine InnoDB wpsz_dokan_vendor_balance: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wpsz_dokan_withdraw: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wpsz_e_events: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wpsz_e_notes: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wpsz_e_notes_users_relations: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wpsz_e_submissions: Data: 0.00MB + Index: 0.03MB + Engine MyISAM wpsz_e_submissions_actions_log: Data: 0.00MB + Index: 0.01MB + Engine MyISAM wpsz_e_submissions_values: Data: 0.00MB + Index: 0.01MB + Engine MyISAM wpsz_icl_content_status: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wpsz_icl_core_status: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wpsz_icl_flags: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wpsz_icl_languages: Data: 0.00MB + Index: 0.01MB + Engine MyISAM wpsz_icl_languages_translations: Data: 0.11MB + Index: 0.08MB + Engine MyISAM wpsz_icl_locale_map: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wpsz_icl_message_status: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wpsz_icl_mo_files_domains: Data: 0.01MB + Index: 0.01MB + Engine MyISAM wpsz_icl_node: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wpsz_icl_reminders: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wpsz_icl_strings: Data: 8.75MB + Index: 4.69MB + Engine MyISAM wpsz_icl_string_batches: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wpsz_icl_string_packages: Data: 0.03MB + Index: 0.01MB + Engine MyISAM wpsz_icl_string_positions: Data: 0.32MB + Index: 0.09MB + Engine MyISAM wpsz_icl_string_status: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wpsz_icl_string_translations: Data: 1.90MB + Index: 0.74MB + Engine MyISAM wpsz_icl_translate: Data: 15.84MB + Index: 0.27MB + Engine MyISAM wpsz_icl_translate_job: Data: 0.04MB + Index: 0.02MB + Engine MyISAM wpsz_icl_translations: Data: 0.15MB + Index: 0.23MB + Engine MyISAM wpsz_icl_translation_batches: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wpsz_icl_translation_downloads: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wpsz_icl_translation_status: Data: 6.48MB + Index: 0.02MB + Engine MyISAM wpsz_jet_post_types: Data: 0.02MB + Index: 0.00MB + Engine MyISAM wpsz_jet_smart_filters_indexer: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wpsz_jet_taxonomies: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wpsz_links: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wpsz_litespeed_avatar: Data: 0.00MB + Index: 0.01MB + Engine MyISAM wpsz_litespeed_url: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wpsz_litespeed_url_file: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wpsz_myCRED_log: Data: 0.01MB + Index: 0.00MB + Engine MyISAM wpsz_options: Data: 3.55MB + Index: 0.19MB + Engine MyISAM wpsz_postmeta: Data: 122.14MB + Index: 2.59MB + Engine MyISAM wpsz_posts: Data: 15.88MB + Index: 0.21MB + Engine MyISAM wpsz_rank_math_404_logs: Data: 0.00MB + Index: 0.01MB + Engine MyISAM wpsz_rank_math_analytics_ga: Data: 0.16MB + Index: 0.07MB + Engine MyISAM wpsz_rank_math_analytics_gsc: Data: 1.85MB + Index: 0.81MB + Engine MyISAM wpsz_rank_math_analytics_inspections: Data: 0.20MB + Index: 0.03MB + Engine MyISAM wpsz_rank_math_analytics_keyword_manager: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wpsz_rank_math_analytics_objects: Data: 0.07MB + Index: 0.04MB + Engine MyISAM wpsz_rank_math_internal_links: Data: 0.17MB + Index: 0.04MB + Engine MyISAM wpsz_rank_math_internal_meta: Data: 0.02MB + Index: 0.01MB + Engine MyISAM wpsz_rank_math_redirections: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wpsz_rank_math_redirections_cache: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wpsz_rcb_asset_seo_redirect: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wpsz_rcb_blocker_thumbnails: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wpsz_rcb_consent: Data: 0.27MB + Index: 0.10MB + Engine MyISAM wpsz_rcb_presets: Data: 0.43MB + Index: 0.05MB + Engine MyISAM wpsz_rcb_revision: Data: 0.01MB + Index: 0.00MB + Engine MyISAM wpsz_rcb_revision_independent: Data: 0.08MB + Index: 0.00MB + Engine MyISAM wpsz_rcb_scan: Data: 0.39MB + Index: 0.16MB + Engine MyISAM wpsz_rcb_scan_markup: Data: 0.17MB + Index: 0.03MB + Engine MyISAM wpsz_rcb_stats: Data: 0.01MB + Index: 0.01MB + Engine MyISAM wpsz_rcb_tcf_features: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wpsz_rcb_tcf_purposes: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wpsz_rcb_tcf_special_features: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wpsz_rcb_tcf_special_purposes: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wpsz_rcb_tcf_stacks: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wpsz_rcb_tcf_vendors: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wpsz_real_queue: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wpsz_termmeta: Data: 0.03MB + Index: 0.03MB + Engine MyISAM wpsz_terms: Data: 0.02MB + Index: 0.04MB + Engine MyISAM wpsz_term_relationships: Data: 0.07MB + Index: 0.12MB + Engine MyISAM wpsz_term_taxonomy: Data: 0.03MB + Index: 0.03MB + Engine MyISAM wpsz_usermeta: Data: 1.43MB + Index: 0.32MB + Engine MyISAM wpsz_users: Data: 0.05MB + Index: 0.04MB + Engine MyISAM wpsz_wc_admin_notes: Data: 0.02MB + Index: 0.00MB + Engine MyISAM wpsz_wc_admin_note_actions: Data: 0.01MB + Index: 0.01MB + Engine MyISAM wpsz_wc_category_lookup: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wpsz_wc_customer_lookup: Data: 0.00MB + Index: 0.01MB + Engine MyISAM wpsz_wc_download_log: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wpsz_wc_order_coupon_lookup: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wpsz_wc_order_product_lookup: Data: 0.00MB + Index: 0.01MB + Engine MyISAM wpsz_wc_order_stats: Data: 0.00MB + Index: 0.01MB + Engine MyISAM wpsz_wc_order_tax_lookup: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wpsz_wc_product_attributes_lookup: Data: 0.02MB + Index: 0.03MB + Engine MyISAM wpsz_wc_product_download_directories: Data: 0.00MB + Index: 0.01MB + Engine MyISAM wpsz_wc_product_meta_lookup: Data: 0.03MB + Index: 0.04MB + Engine MyISAM wpsz_wc_rate_limits: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wpsz_wc_reserved_stock: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wpsz_wc_tax_rate_classes: Data: 0.00MB + Index: 0.01MB + Engine MyISAM wpsz_wc_webhooks: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wpsz_wfblockediplog: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wpsz_wfblocks7: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wpsz_wfconfig: Data: 2.34MB + Index: 0.01MB + Engine MyISAM wpsz_wfcrawlers: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wpsz_wffilechanges: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wpsz_wffilemods: Data: 9.15MB + Index: 1.09MB + Engine MyISAM wpsz_wfhits: Data: 0.20MB + Index: 0.02MB + Engine MyISAM wpsz_wfhoover: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wpsz_wfissues: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wpsz_wfknownfilelist: Data: 6.64MB + Index: 0.33MB + Engine MyISAM wpsz_wflivetraffichuman: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wpsz_wflocs: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wpsz_wflogins: Data: 0.01MB + Index: 0.00MB + Engine MyISAM wpsz_wfls_2fa_secrets: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wpsz_wfls_settings: Data: 0.02MB + Index: 0.00MB + Engine InnoDB wpsz_wfnotifications: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wpsz_wfpendingissues: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wpsz_wfreversecache: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wpsz_wfsnipcache: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wpsz_wfstatus: Data: 0.16MB + Index: 0.06MB + Engine MyISAM wpsz_wftrafficrates: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wpsz_wpforo_5_activity: Data: 0.02MB + Index: 0.08MB + Engine InnoDB wpsz_wpforo_5_forums: Data: 0.02MB + Index: 0.09MB + Engine InnoDB wpsz_wpforo_5_languages: Data: 0.00MB + Index: 0.01MB + Engine MyISAM wpsz_wpforo_5_phrases: Data: 0.05MB + Index: 0.07MB + Engine MyISAM wpsz_wpforo_5_postmeta: Data: 0.02MB + Index: 0.09MB + Engine InnoDB wpsz_wpforo_5_posts: Data: 0.02MB + Index: 0.28MB + Engine InnoDB wpsz_wpforo_5_post_revisions: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wpsz_wpforo_5_reactions: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wpsz_wpforo_5_subscribes: Data: 0.02MB + Index: 0.06MB + Engine InnoDB wpsz_wpforo_5_tags: Data: 0.00MB + Index: 0.01MB + Engine MyISAM wpsz_wpforo_5_topics: Data: 0.02MB + Index: 0.25MB + Engine InnoDB wpsz_wpforo_5_visits: Data: 0.02MB + Index: 0.13MB + Engine InnoDB wpsz_wpforo_accesses: Data: 0.00MB + Index: 0.01MB + Engine MyISAM wpsz_wpforo_activity: Data: 0.02MB + Index: 0.08MB + Engine InnoDB wpsz_wpforo_boards: Data: 0.02MB + Index: 0.03MB + Engine InnoDB wpsz_wpforo_bookmarks: Data: 0.02MB + Index: 0.03MB + Engine InnoDB wpsz_wpforo_follows: Data: 0.02MB + Index: 0.06MB + Engine InnoDB wpsz_wpforo_forums: Data: 0.02MB + Index: 0.09MB + Engine InnoDB wpsz_wpforo_languages: Data: 0.00MB + Index: 0.01MB + Engine MyISAM wpsz_wpforo_logs: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wpsz_wpforo_phrases: Data: 0.05MB + Index: 0.07MB + Engine MyISAM wpsz_wpforo_postmeta: Data: 0.02MB + Index: 0.09MB + Engine InnoDB wpsz_wpforo_posts: Data: 0.02MB + Index: 0.28MB + Engine InnoDB wpsz_wpforo_post_revisions: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wpsz_wpforo_profiles: Data: 0.08MB + Index: 0.08MB + Engine InnoDB wpsz_wpforo_reactions: Data: 0.02MB + Index: 0.02MB + Engine InnoDB wpsz_wpforo_subscribes: Data: 0.02MB + Index: 0.06MB + Engine InnoDB wpsz_wpforo_tags: Data: 0.00MB + Index: 0.00MB + Engine MyISAM wpsz_wpforo_topics: Data: 0.02MB + Index: 0.25MB + Engine InnoDB wpsz_wpforo_usergroups: Data: 0.00MB + Index: 0.01MB + Engine MyISAM wpsz_wpforo_visits: Data: 0.02MB + Index: 0.13MB + Engine InnoDB wpsz_wt_iew_action_history: Data: 0.01MB + Index: 0.00MB + Engine MyISAM wpsz_wt_iew_mapping_template: Data: 0.00MB + Index: 0.00MB + Engine MyISAM ### Post Type Counts ### attachment: 903 custom_css: 1 customize_changeset: 1 easy_contract: 3 elementor_font: 3 elementor_library: 42 elementor_snippet: 14 encyclopedia: 93 jet-engine: 6 jet-engine-booking: 1 jet-smart-filters: 2 jet-woo-builder: 10 mycred_rank: 1 nav_menu_item: 120 oembed_cache: 52 page: 51 post: 154 product: 226 product_variation: 354 rcb-cookie: 1 revision: 389 shop_order: 5 user_request: 1 wp_global_styles: 3 ### Security ### Secure connection (HTTPS): ? Hide errors from visitors: ? ### Active Plugins (26) ### WPML Multilingual CMS: by OnTheGoSystems – 4.5.14 Dokan: by weDevs – 3.7.6 Dokan Pro: by weDevs – 3.7.9 Dokan - WPML Integration: by weDevs – 1.0.6 Easy Contract: by Gurmewoo – 0.0.1 Elementor Pro: by Elementor.com – 3.8.2 Elementor: by Elementor.com – 3.8.1 Facebook for WooCommerce: by Facebook – 3.0.4 iyziBazaar: by GurmeWoo.com – 1.8.3 JetEngine: by Crocoblock – 3.0.7 JetSearch: by Crocoblock – 3.0.2 JetSmartFilters: by Crocoblock – 3.0.1 JetWooBuilder For Elementor: by Crocoblock – 2.0.5 LiteSpeed Cache: by LiteSpeed Technologies – 5.3 myCred: by myCred – 2.4.10 Real Cookie Banner: by devowl.io – 3.4.4 Rank Math SEO PRO: by Rank Math – 3.0.24 Rank Math SEO: by Rank Math – 1.0.102.1 User Switching: by John Blackbourn & contributors – 1.7.0 Variation Swatches for WooCommerce: by Emran Ahmed – 2.0.13 WooCommerce Multilingual & Multicurrency: by OnTheGoSystems – 5.0.2 WooCommerce: by Automattic – 7.1.0 Wordfence Security: by Wordfence – 7.7.1 Asset CleanUp Pro: Page Speed Booster: by Gabe Livan – 1.2.2.7 wpForo: by gVectors Team – 2.1.1 WPML String Translation: by OnTheGoSystems – 3.2.3 ### Inactive Plugins (0) ### ### Must Use Plugins (1) ### Asset CleanUp Pro: Plugin Filtering: by Gabriel Livan – 1.0 ### Settings ### API Enabled: – Force SSL: – Currency: USD ($) Currency Position: left Thousand Separator: . Decimal Separator: , Number of Decimals: 2 Taxonomies: Product Types: external (external) grouped (grouped) product_pack (product_pack) simple (simple) variable (variable) Taxonomies: Product Visibility: exclude-from-catalog (exclude-from-catalog) exclude-from-search (exclude-from-search) featured (featured) outofstock (outofstock) rated-1 (rated-1) rated-2 (rated-2) rated-3 (rated-3) rated-4 (rated-4) rated-5 (rated-5) Connected to WooCommerce.com: – Enforce Approved Product Download Directories: ? ### WC Pages ### Shop base: #22 - /saltwater-aquarium-marketplace/ Cart: ? Page does not contain the [woocommerce_cart] shortcode or the woocommerce/cart block. Checkout: ? Page does not contain the [woocommerce_checkout] shortcode or the woocommerce/checkout block. My account: #25 - /my-account/ Terms and conditions: #65170 - /terms-conditions/ ### Theme ### Name: Hello Elementor Child Version: 1.0.1 Author URL: https://elementor.com/ Child Theme: ? Parent Theme Name: Hello Elementor Parent Theme Version: 2.6.1 Parent Theme Author URL: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash WooCommerce Support: ? ### Templates ### Overrides: /home/nakvaryu/public_html/wp-content/plugins/jet-woo-builder/templates/woocommerce/myaccount/dashboard.php /home/nakvaryu/public_html/wp-content/plugins/jet-woo-builder/templates/woocommerce/myaccount/form-edit-account.php version 3.5.0 is out of date. The core version is 7.0.1 /home/nakvaryu/public_html/wp-content/plugins/jet-woo-builder/templates/woocommerce/myaccount/form-login.php version 4.1.0 is out of date. The core version is 7.0.1 /home/nakvaryu/public_html/wp-content/plugins/jet-woo-builder/templates/woocommerce/myaccount/my-account.php /home/nakvaryu/public_html/wp-content/plugins/jet-woo-builder/templates/woocommerce/myaccount/my-address.php /home/nakvaryu/public_html/wp-content/plugins/jet-woo-builder/templates/woocommerce/myaccount/orders.php version 3.7.0 is out of date. The core version is 7.0.1 Outdated Templates: ? Learn how to update ### Admin ### Enabled Features: activity-panels analytics coupons customer-effort-score-tracks experimental-products-task experimental-import-products-task experimental-fashion-sample-products shipping-smart-defaults shipping-setting-tour homescreen marketing multichannel-marketing mobile-app-banner navigation onboarding onboarding-tasks remote-inbox-notifications remote-free-extensions payment-gateway-suggestions shipping-label-banner subscriptions store-alerts transient-notices woo-mobile-welcome wc-pay-promotion wc-pay-welcome-page Disabled Features: minified-js new-product-management-experience settings Daily Cron: ? Next scheduled: 2022-11-28 22:02:36 +00:00 Options: ? Notes: 42 Onboarding: completed ### Action Scheduler ### Canceled: 7 Oldest: 2022-11-03 20:56:35 +0000 Newest: 2022-11-03 20:56:35 +0000 Complete: 2,647 Oldest: 2022-11-05 20:42:21 +0000 Newest: 2022-11-28 12:35:40 +0000 Failed: 23 Oldest: 2022-09-18 19:30:22 +0000 Newest: 2022-11-09 09:22:59 +0000 Pending: 6 Oldest: 2022-11-28 14:00:51 +0000 Newest: 2022-12-04 00:00:19 +0000 ### Status report information ### Generated at: 2022-11-28 13:06:04 +00:00
And i can see only one report for your plugin,
11-08-2022 @ 12:27:19 – Unable to detect valid feed configuration: No catalog ID
thank you
Forum: Plugins
In reply to: [Facebook for WooCommerce] Facebook store reset and category limitHello Abhi,
Since there is no such product on the site anymore, I can edit from the facebook page, but the product falls to 404 pages. Delete product option is not active on Facebook.
Thank you
Hello Tariq,
Sorry, I missed your first answer. I did a plugin conflict test, but no results. I removed everything except the plugins below. I also switched to the default theme. but the result did not change.
Elementor
Elementor Pro
WooCommerce
MyCredThank you
Forum: Plugins
In reply to: [Facebook for WooCommerce] Facebook store reset and category limitHello Saif,
I have a little problem here. We excluded these products when we moved the website to the new design (No Longer Sold). So these products are no longer available ?? That’s why I can’t use both alternatives. But I can recreate the product with the same url structure and try. Will it work if I do this?
I also had an additional question regarding the category limitation.
Thank you
Forum: Plugins
In reply to: [Facebook for WooCommerce] Brand and legacy productsHello Pepe,
Thank you for your time for me. I’ll update the title if I can find a solution.
Thank you for your support