Recently I encountered an issue with my order form not working and decided to do a fresh reinstall of Wordpress with the RSP plugin and themes. After this I began getting an error message on the VPS and dedicated hosting pages as shown in the attached image.
I looked at the line 24 throwing the error and it's code is:
I fixed this by changing the code to:
I just thought I'd share this fix in case anyone else begins to experience this with their RSP Wordpress themes.
I looked at the line 24 throwing the error and it's code is:
Code:
if ($custom_meta['rpwp_header_type'][0]=='dedicated') $video_path = 'http://'.rp_store_info(array(key=>'store_name')).'.duoservers.com/videos/DuoServers-dedicated-640-var.new1.mp4';
Code:
if ($custom_meta['rpwp_header_type'][0]=='dedicated') $video_path = 'https://YOURSTORENAME.duoservers.com/videos/DuoServers-dedicated-640-var.new1.mp4';
Comment