• Resolved webdevplan

    (@webdevplan)


    Hi,

    i have installed your plugin in a multisite environment. On the mainsite everything is fine. On any other site your plugin is working (that is great), but it has some small issues:
    1. categories section in sidebar is missing (admin), no site-specific categories possible
    2. categorized (necessary/non-necessary) cookies will not be displayed in privacy overview table

    For the first problem, I don’t have an error description or a solution at hand right now.

    The second issue is caused by handling of the array $atts in function cookielawinfo_table_shortcode( $atts ):

    It is assumed to be an associative array. This is only true for the main page. Other pages use a numeric array, example:

    0 => ‘style=”winter”‘,
    1 => ‘category=”non-necessary”‘

    In this case, the table is generated with all cookies.

    Correct would be however:

    ‘style’ => ‘winter’,
    ‘category’ => ‘non-necessary’,

    Maybe it is possible to fix these errors in the near future.

    Thank you

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author WebToffee

    (@webtoffee)

    Hi @webdevplan,

    We will test the scenario in multisite and review the code accordingly.

    Plugin Author WebToffee

    (@webtoffee)

    Hi @webdevplan,

    Could you please confirm that you have done the database migration required to support the new dynamic categories in the subsites? If not done, please go to GDPR Cookie Consent > Cookie Scanner page and click the migrate database link to update the db entries.

    Plugin Author WebToffee

    (@webtoffee)

    Hi @webdevplan,

    This thread has been inactive for a bit, so we are going to mark it as resolved now. Please feel free to open a new thread or follow up if you have any further questions or still need help.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘No dynamic categories in multisite installation’ is closed to new replies.