This topic has 18 replies, 4 voices, and was last updated 8 years, 3 months ago by Fem.
Viewing 19 posts - 1 through 19 (of 19 total)
There was a similar problem when I first installed this theme as well… having to do with the storeup-niche folder/files…
After upgrading now my site is inaccessible…
Fatal error: Can’t use function return value in write context in /home/content/79/9764179/html/hts/wp-content/themes/storeup-child/storeup-niche/index.php on line 233
Please help.
Thanks
You guys should really stop posting busted code. I ended up fixing this myself… again…
changed around line 233 from:
$storeup_google_api_key = get_option( 'storeup_google_api_key' ) ? 'key=' . get_option( 'storeup_google_api_key' ) :'signed_in=false';
if ( ! empty( get_option( 'storeup_google_api_key' ) ) ) {
TO
$storeup_google_api_key_option = get_option( 'storeup_google_api_key' );
$storeup_google_api_key = $storeup_google_api_key_option ? 'key=' . $storeup_google_api_key_option :'signed_in=false';
if ( ! empty( $storeup_google_api_key_option ) ) {
If you can provide us WP Logins to your website with URL then we can take a closer look at it. Make sure you set the post as a private reply so that only admin can see your wp-logins.
Note: Before providing the wp-login to any support staff, kindly please make sure you take a backup of everything including WordPress content, theme options, widgets etc.
Viewing 19 posts - 1 through 19 (of 19 total)
You must be logged in to reply to this topic.