Revolution slide selection with Multisite installation
Hi,
Could you change line 42 of /functions/meta-functions.php so that you can select the revolution sliders that are active/present for the current multisite.
Currently it only show the revolution slide from the base website.
from
$table_name = $wpdb->base_prefix . "revslider_sliders";
to
$table_name = $wpdb->prefix . "revslider_sliders";
Thanks
Marcellino
Could you change line 42 of /functions/meta-functions.php so that you can select the revolution sliders that are active/present for the current multisite.
Currently it only show the revolution slide from the base website.
from
$table_name = $wpdb->base_prefix . "revslider_sliders";
to
$table_name = $wpdb->prefix . "revslider_sliders";
Thanks
Marcellino
Comments
unfortunately we can't because this problem touch maybe 1% of users who uses multisite installation. We know this problem but for most people current solution works. This was better explained on http://forum.muffingroup.com/betheme/discussion/386/be-landing-slider-disappears-after-edit-rev-slider-multisite-issue
Thanks
But i believe changing this doesn't affect a standard install (not multisite) and you can still select your revolution slider in a standard install (?)
Thanks
Marcellino
Thanks!
Idea:
Wouldn't it be possible to add a setting to the BeTheme Options within the dashboard where you select something like 'Multisite Revolution Slider' ON/OFF (standard OFF)
The file meta-functions.php will retrieve this value to set:
$table_name = $wpdb->base_prefix . "revslider_sliders"; (OFF)
$table_name = $wpdb->prefix . "revslider_sliders"; (ON)
It's really a shame that just this 'setting' needs to be updated through the meta-functions.php file itself (manually).
Thanks
Marcellino