• Hello,
    thank you very much for this very good plugin

    I’m looking for a solution to export the rules of a site to import them on another site.

    How can I proceed ? I have searched a bit in the database but I can’t find the corresponding table.

    Thank you in advance for your help

Viewing 1 replies (of 1 total)
  • Plugin Author Arno Welzel

    (@awelzel)

    Unfortunately it is not that simple.

    There is no specific table for that as the timed content rules are stored as custom post type “timed_content_rule” and the rule details as meta data for these posts.

    So you may try the following:

    Get posts records where post_type is timed_content_rule:

    select * from wp_posts where post_type='timed_content_rule'

    Get the associated metadata:

    select * from wp_postmeta where post_id in (select id from wp_posts where post_type='timed_content_rule')

    Then you see how the data is stored and may be able to transfer that to another database – propably you need to adjust the ID of the post if the other databases already contains posts with that ID.

    For future updates I may add an export/import feature to make this easier.

Viewing 1 replies (of 1 total)

The topic ‘How can i export Timed Content rules’ is closed to new replies.