Boris Otasevic
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Store Locator] How to hide start location marker?Thanks Tijmen. It worked fine.
Forum: Plugins
In reply to: [WordPress MU Domain Mapping] Share login session between subsitesIt is working perfectly now. You log in just once and can access admin pages of all sub-sites to which you have been grantet access.
Thanks again Ron.
Boris
Forum: Plugins
In reply to: [WordPress MU Domain Mapping] Share login session between subsitesThanks Ron. I will test your suggestion, because our system mapped domains are indeed all subdomains of same domain.
Forum: Fixing WordPress
In reply to: Fatal error: Cannot use object of type WP_Error as arrayI had same problem and found a way to fix it so I can keep sexybookmarks plugin active.
If you want to do same here is how:[1]
Find file /wp-content/plugins/sexybookmarks/includes/helper-functions.php
– go to line #36 ($response = wp_remote_retrieve_response_code($request);)
– insert new line just before it:$response = (array)$response;[2]
Find file /wp-content/plugins/sexybookmarks/includes/public.php
– go to line 19 ($url_request = wp_remote_request($url, $request_params);)
– change that line to this:$url_request = (array)wp_remote_request($url, $request_params);As you can see its just matter of type casting.