Content Egg – Feed module : auto-update price & other info

Closed

Import WP Addon - Content Egg Updated 1 year ago 9 Replies

Dung asked 1 year ago on February 6, 2024 at 4:40 pm

Import WP Pro is really useful when importing thousands of products into Woocommerce.

Import WP Pro works with Offer module well.

However, I face 2 dificulties:

1. Prices are imported inaccurately.

Example:

Price in CSV file: 59.000.000 đ

Imported in Woo product: 59.000 đ

How to fix it ?

2. I use Custom Field to input keyword for auto-update (Feed Module of Content Egg Pro)

Here are custom fields I use: _cegg_global_autoupdate_keyword (Or _cegg_keywordFeed__1,..)

Everything seems ok, however, after importing keyword for auto-update , Content Egg auto-update function NOT working until I manually open/view the imported product page. After I open the product page, Content Egg is active, updates & displays info.

I import thousands of products, I can’t view all of the products pages to active Content Egg auto-update function.

How to fix it ?

Thank you,

J

James replied Support Agent

1 year ago on February 7, 2024 at 8:47 am

Hi Dung,

1) What currency is "59.000.000 đ" ? if you were to manually enter that into a price in woocommerce how would you format it?

2) To be able to understand and help you can you attach a copy of Content Egg Pro, and a screenshot of the field  / button in question, and how i would know it has been ran?

3) Are you using the content egg extention from here: https://github.com/jcollings/importwp-content-egg or was the addon included in a theme?

James

DN

Dung replied privately

1 year ago on February 7, 2024 at 4:14 pm

J

James replied Support Agent

1 year ago on February 7, 2024 at 10:27 pm

I am not familier with Vietnamese dong, but from the example value you previously mentioned, this issue is with number formatting and the use of "." in the price.

The following code snippet, will remove all non numeric values from the price, so "59.000.000 đ" would import as 59000000 (To add code snippets to your webstite: https://www.importwp.com/docs/using-code-snippets-in-wordpress/).

function iwp_fmt_dong($input = '')
{
    return preg_replace('/[^0-9]/', '', $input);
}

With the iwp_fmt_dong function added to your website, you can then use it in the importer, for example if you have the price in a column that is normally referenced like: "{1}" , instead you would use the custom methed like so: "[iwp_fmt_dong("{1}")]"

In regards to the Content egg auto update issue, you will need to contact rehub as they have there custom addon for importwp to import rehub and content egg settings.

DN

Dung replied

1 year ago on February 8, 2024 at 5:48 am

Hi James,Thanks for your quick response.

I also contacted Rehub theme & Content Egg team.

Rehub reply: "but we have only import for Offer module, about feed module better to ask support of Content egg".

Content Egg reply: "I'm unable to assist with third-party plugins. To natively import products from a CSV feed into WooCommerce, you can use the Feed module and Autoblogging feature as described here: https://ce-docs.keywordrush.com/modules/feed-modules/mass-import"

*Autoblogging of Content Egg slower & less flexible, it means Import WP better & quicker to deal with big CSV files (create & update)

I succeed in filling the keyword into the "Auto-update keywork" section of Content Egg using Import WP Pro Custom Field.

Problem is that, Content Egg auto-update only active after I open/view the imported product page. (While other product page published manually working normally)

Do you have any suggestion to solve this issue ?

Ps. I know it not easy for you to find a solution to work with another third-party plugin (Content Egg).

J

James replied Support Agent

1 year ago on February 8, 2024 at 8:57 am

I cant modify the rehub importwp plugin, but if this feature is not part of that integration i can see what is possible.

Is this "auto blogging" featured part of the free content egg plugin? If not can you attach the pro version of content egg.

To help me understand the issue, can you take screenshots of the what is missing after the importer has ran,  and then screenshots of what it looks like when its fixed after viewing the edit product screen.

Can you also make sure you are on the latest versions of ImportWP v2.11.8 and ImportWP Pro v2.9.9

DN

Dung replied privately

1 year ago on February 9, 2024 at 8:42 pm

J

James replied Support Agent

1 year ago on February 9, 2024 at 9:59 pm

Thank you for all the information, without this i would have had no idea where to look.

I found the code that triggered the button / data to be populated when you viewed the single page. This is now triggered when you update a record that has the _cegg_global_autoupdate_keyword custom field set.

Add the following code to your website where you previously added the iwp_fmt_dong method.

function iwp_cegg_updateByKeyword($post)
{

    if (empty($post))
        return;

    foreach (\ContentEgg\application\components\ModuleManager::getInstance()->getAffiliateParsers(true) as $module) {
        $is_visit_update = in_array($module->config('update_mode'), array('visit', 'visit_cron'));
        $is_data_exists = \ContentEgg\application\components\ContentManager::isDataExists($post->ID, $module->getId());

        // parse data if not exists in any case
        if (!$is_visit_update && $is_data_exists)
            continue;

        $ttl = $module->config('ttl');
        if (!$ttl && $is_data_exists)
            continue;

        if (!\ContentEgg\application\components\ContentManager::getAutoupdateKeyword($post->ID, $module->getId()))
            continue;

        $last_update = (int) \get_post_meta($post->ID, \ContentEgg\application\components\ContentManager::META_PREFIX_LAST_BYKEYWORD_UPDATE . $module->getId(), true);
        if ($last_update && time() - $last_update < $ttl)
            continue;

        \ContentEgg\application\components\ContentManager::updateByKeyword($post->ID, $module->getId());
    }
}

function iwp_cegg_updateItems($post)
{

    if (empty($post))
        return;

    foreach (\ContentEgg\application\components\ModuleManager::getInstance()->getAffiliateParsers(true) as $module) {
        if (!in_array($module->config('update_mode'), array('visit', 'visit_cron')))
            continue;

        if (!$module->isItemsUpdateAvailable())
            continue;

        if (!$ttl_items = $module->config('ttl_items'))
            continue;

        $last_items_update = (int) \get_post_meta($post->ID, \ContentEgg\application\components\ContentManager::META_PREFIX_LAST_ITEMS_UPDATE . $module->getId(), true);
        if (!$last_items_update || time() - $last_items_update < $ttl_items)
            continue;
        \ContentEgg\application\components\ContentManager::updateItems($post->ID, $module->getId());
    }
}


/**
 * After record has been imported, we should trigger content egg to update keyword and items.
 * Duplicate code from: \ContentEgg\application\ModuleUpdateVisit
 *
 * @param int $post_id
 * @param ParsedData $data
 * @param ProductTemplate $template
 * @return void
 */
function iwp_cegg_register_template_post_process($post_id, $data, $template)
{
    $post = get_post($post_id);
    if ($post && get_post_meta($post_id, '_cegg_global_autoupdate_keyword', true)) {
        iwp_cegg_updateByKeyword($post);
        iwp_cegg_updateItems($post);
    }
    return $post_id;
}

add_action('iwp/register_events', function ($event_handler) {
    $event_handler->listen('template.post_process', 'iwp_cegg_register_template_post_process');
});
DN

Dung replied

1 year ago on February 10, 2024 at 5:27 am

Thanks for your quick support.

It's working well now.

J

James replied Support Agent

1 year ago on February 10, 2024 at 3:38 pm

Thanks, Glad its working,

if you have other questions just let me know.

To help our growth and others to find this plugin, please help by leaving a review (https://wordpress.org/support/plugin/jc-importer/reviews/).