Home › Forums › Mikmag WordPress theme › Mikmag – Multisite Slider not working
- This topic has 1 reply, 1 voice, and was last updated 12 years, 3 months ago by moya.
-
AuthorPosts
-
-
at #8859moyaMember
I can’t get the slider to work on wordpress multisite install, it only works on the regular single site.
-
at #8860moyaMember
I fixed it
—————
I had to edit a lot of theme files i changed
get_option to get_site_option
update_option to update_site_option
delete_option to delete_site_optionthen I had to make sure that the posts from the caterories i used in the slider had a featured post linked to it.
——————————–
Mikmagcoresliderslider-registry.php (28): $settings = get_site_option(‘core_slider_’ . $slug, null);
Mikmagcomments.php (53): $req = get_site_option(‘require_name_email’);
Mikmagfunctions.php (83): if (is_singular() && get_site_option(‘thread_comments’))
Mikmagfunctions.php (568): if ( ‘page’ != get_site_option( ‘show_on_front’ ) )
Mikmagfunctions.php (571): return apply_filters( ‘core_buddypress_page_on_front’, get_site_option( ‘page_on_front’ ) );
Mikmagcorecore-utils.php (52): $width = get_site_option(‘thumbnail_size_w’);
Mikmagcorecore-utils.php (54): $height = get_site_option(‘thumbnail_size_h’);
Mikmagcorecore-utils.php (56): $crop = get_site_option(‘thumbnail_crop’);
Mikmagcoreoptionsoptions-classes.php (230): $value = get_site_option($this->key, $this->default);
Mikmagincludeswoocommerce.php (155): if (get_site_option(‘js_prices_include_tax’) == ‘yes’)
Mikmagincludeswoocommerce.php (259): return get_site_option(‘core_woocommerce_product_count’);
Mikmagcoresliderslider-builder.php (67): $slider_settings = get_site_option(‘core_slider_’ .$slider_slug, ‘{}’);
—————————-Mikmagcoresliderslider-registry.php (64): update_site_option(‘core_slider_’ . $_POST[‘slug’], $_POST[‘settings’]);
Mikmagcoreoptionsoptions-theme.php (30): update_site_option($key, $value);
Mikmagcoreoptionsoptions-theme.php (35): update_site_option($key, $value);——————————-
Mikmagcoreoptionsoptions-theme.php (37): delete_site_option($key);
-
-
AuthorPosts
- You must be logged in to reply to this topic.