Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter jomo

    (@jonathanmoorebcsorg)

    there are 14 new releases in the last month, however simple issues like these are not addressed. I can’t reasonably recheck and reapply these 14 times per month either.

    Plugin Author Ohidul Islam

    (@wahid0003)

    Hi,

    The variation product title issue is solved a few months ago. Have you checked the output? If you still have the problem then contact our support team.

    ShortCode Process: If we remove shortcode then customer complains that sometimes product description getting blank and merchant giving errors. Most of the plugin user don’t think deeply. So we decided to process the shortcode instead of strip. You can manually change the code.

    Thread Starter jomo

    (@jonathanmoorebcsorg)

    1. variation titles, the incorrect code is still there:
    class-woo-feed-products.php in two places, l.542 and l.725 :
    $variationTitle= $parentInfo['title'];
    This should be
    $variationTitle = $variation->get_name();
    In the first instance l.542 the result is ignored and the title is correctly set a few lines later on l.559 as:
    $this->productsList[ $this->pi ]["title"] = $variation->get_name();
    So this instance has been fixed – but not very efficiently because it is still doing $parentInfo=$variation->get_parent_data(); which is unnecessary because the parentinfo is no longer needed here.

    In the second case, l.725, this correction is not applied and the parent title is still used directly.

    2. removal or execution of shortcodes: this should be an option, and a filter. Plugins like Relevannsi have a list of shortcodes which should be stripped, configurable in settings and overridable via a filter.

    >You can manually change the code.
    There were 15 releases in April.
    It is not practical for site managers to be accepting new versions of plugins, making manual code changes and testing multiple times per week.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘couple of simple problems from last year still open’ is closed to new replies.