Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi,

    Open /wp-contents/plugins/contus-video-gallery/admin/models/video.php and find the below line.

    $guid = get_site_url() . '/?post_type=videogallery&p=' . $this->_wpdb->insert_id;

    and replace with

    $guid = get_site_url() . '/?post_type=videogallery&p=' . $post_ID;

    And find $this->_wpdb->update( $this->_videotable, array( 'slug' => $this->_wpdb->insert_id ), array( 'vid' => $last_insert_video_id ) );

    now replace with

    $this->_wpdb->update( $this->_videotable, array( 'slug' => $post_ID ), array( 'vid' => $last_insert_video_id ) );

    Thread Starter tjibbe

    (@tjibbe)

    Nothing changed:( , exactly the same as before,

    Hi,

    Please try with new video and check. Once you have added a video, then it will be stored in database and you cannot change the slugid of a post. So add new video and check. If you are still facing any difficulties in this, feel free to contact our supporting team at assist@apptha.com

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Weird urls, contus video gallery’ is closed to new replies.