• Resolved dfwpress

    (@dfwpress)


    Hello,

    I can change vendor page title and vendor page slug.
    But problem is that meta keys _vendor_page_title and _vendor_page_slug remain not changed. So it is not possible use them on other places in the site.

    Please do you have any solution for this?

    Thank you

Viewing 4 replies - 1 through 4 (of 4 total)
  • Rajsekhar Chatterjee

    (@rajsekharchatterjee11)

    Hi,
    You can get updated page titles and slugs from term table WordPress.
    Thanks

    Thread Starter dfwpress

    (@dfwpress)

    Hello,

    It seems that _vendor_page_title and _vendor_page_slug are not updating after change.

    Thabk you

    Plugin Author MultiVendorX

    (@wcmp)

    @dfwpress, our team is looking into this.

    Rajsekhar Chatterjee

    (@rajsekharchatterjee11)

    Hi @dfwpress,
    Store name and slug updated from term.
    you can update term like this way
    for name :

    $this->term_id = get_user_meta($this->id, '_vendor_term_id', true);
    wp_update_term($this->term_id, $MVX->taxonomy->taxonomy_name, array('name' => $title)))

    for slug :
    wp_update_term($this->term_id, $MVX->taxonomy->taxonomy_name, array('slug' => $slug))
    Thanks

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Problem with meta keys’ is closed to new replies.