Support Forum
dont know how to fix/workaround the WP theme yet.... so no ETA... working on the more critical issue with the cancel function call...
Visit Cruise Talk Central and Mr Papa's World
okay, think I may have a way around this themes and bootstrap breaking wp jquery ui... but need help testing...
a handful of small changes...
in file simple-press/sp-startup/sp-load-forum.php, find this line
add_action('wp_enqueue_scripts', 'sp_load_forum_scripts', 1);
and add this line right after it:
add_action('wp_enqueue_scripts', 'sp_load_forum_footer_scripts', 9999);
then in file simple-press/sp-startup/forum/sp-forum-framework.php, find these lines and remove them:
# load up forum front end javascript that must be in footer $footer_dep = array('jquery'); if ($tooltips) $footer_dep = array_merge($footer_dep, array('jquery-ui-core', 'jquery-ui-widget', 'jquery-ui-tooltip')); $script = (defined('SP_SCRIPTS_DEBUG') && SP_SCRIPTS_DEBUG) ? SFJSCRIPT.'sp-forum-footer-dev.js' : SFJSCRIPT.'sp-forum-footer.js'; wp_enqueue_script('spforumfooter', $script, $footer_dep, false, true); # sp_platform_vars is not static so cannot be in combined js cache but can be localized $platform = array( 'focus' => 'forum', 'mobile' => $spMobile, 'device' => $spDevice, 'tooltips' => $tooltips, 'mobiletheme' => (current_theme_supports('sp-theme-responsive')) ? 1 : 0, 'headpadding' => ($spMobile) ? 0 : sp_get_option('spheaderspace'), 'saveprocess' => 0, 'checkiframe' => $iframe, 'pageview' => $spVars['pageview'], 'editor' => $spGlobals['editor'], 'waitimage' => sp_paint_file_icon(SPFIMAGES, 'sp_Wait.png'), 'successimage' => sp_paint_file_icon(SPFIMAGES, 'sp_Success.png'), 'failimage' => sp_paint_file_icon(SPFIMAGES, 'sp_Failure.png'), 'customizertest' => isset($_GET['sp-customizer-test']), 'autoupdate' => $sfauto['sfautoupdate'], 'autoupdatelist' => $arg, 'autoupdatetime' => $timer ); $platform = apply_filters('sph_platform_vars', $platform); wp_localize_script('spforumfooter', 'sp_platform_vars', $platform);
now, in same file, scroll down a bit to the end of this routine and find this code:
do_action('sph_scripts_end', $footer); } function sp_load_plugin_styles($ahahCall = false) {
and then change it to:
do_action('sph_scripts_end', $footer, $tooltips); } function sp_load_forum_footer_scripts() { $tooltips = (defined('SP_TOOLTIPS') && SP_TOOLTIPS == false) ? 0 : 1; do_action('sph_scripts_footer_start', $tooltips); # load up forum front end javascript that must be in footer $footer_dep = array('jquery'); if ($tooltips) $footer_dep = array_merge($footer_dep, array('jquery-ui-core', 'jquery-ui-widget', 'jquery-ui-tooltip')); $script = (defined('SP_SCRIPTS_DEBUG') && SP_SCRIPTS_DEBUG) ? SFJSCRIPT.'sp-forum-footer-dev.js' : SFJSCRIPT.'sp-forum-footer.js'; wp_enqueue_script('spforumfooter', $script, $footer_dep, false, true); # sp_platform_vars is not static so cannot be in combined js cache but can be localized $platform = array( 'focus' => 'forum', 'mobile' => $spMobile, 'device' => $spDevice, 'tooltips' => $tooltips, 'mobiletheme' => (current_theme_supports('sp-theme-responsive')) ? 1 : 0, 'headpadding' => ($spMobile) ? 0 : sp_get_option('spheaderspace'), 'saveprocess' => 0, 'checkiframe' => $iframe, 'pageview' => $spVars['pageview'], 'editor' => $spGlobals['editor'], 'waitimage' => sp_paint_file_icon(SPFIMAGES, 'sp_Wait.png'), 'successimage' => sp_paint_file_icon(SPFIMAGES, 'sp_Success.png'), 'failimage' => sp_paint_file_icon(SPFIMAGES, 'sp_Failure.png'), 'customizertest' => isset($_GET['sp-customizer-test']), 'autoupdate' => $sfauto['sfautoupdate'], 'autoupdatelist' => $arg, 'autoupdatetime' => $timer ); $platform = apply_filters('sph_platform_vars', $platform); wp_localize_script('spforumfooter', 'sp_platform_vars', $platform); do_action('sph_scripts_footer_end', $tooltips); } function sp_load_plugin_styles($ahahCall = false) {
we are inserting a new routine here after the first one.... save both files, clear your combined js caches and your browser caches, and give it a whirl...
would appreciate some feedback, please....
Visit Cruise Talk Central and Mr Papa's World
I have verified it corrects the problem... I would ask if the changes were made properly... did you copy the raw code popup and not from the post? otherwise, you may have gotten invalid characters...
all caches cleared as requested?
is your site viewable?
Visit Cruise Talk Central and Mr Papa's World
meta data???? not sure there would be any in there...
I am unsure how this discussion got around to bootstrap... I dont believe it has anything to do with bootstrap... think its simply that you have jquery errors on your site... you alluded to them in post 9... but dont think they have anything to do with bootstrap... in fact, the code change you made would have resolved that... but those jquery errors are stopping things from working...
namely: Error: cannot call methods on button prior to initialization; attempted to call method 'enable'
but believe this is going to be related to the wp 4.5 change and not simple press... wp jumped the jquery version multiple versions in this release... did you update your wp theme and other wp plugins? its possible one is still out of date or needs an update to be compatible with wp 4.5...
do you still have this problem if you temp switch to the default wp theme? if so, what about with all other wp plugins disabled?
Visit Cruise Talk Central and Mr Papa's World
I changed WP theme and that fixed this issue.
It turns out, many of the themes from those theme developers have this issue; I tried several from that company and all had the same issue.
Still having problems with the post Edit button, which we'll continue to work out on the related support forum.
When viewing your profile > attachments, you should be able to expand the tree (starting with date), select an image and use the 'Remove Selected Image Attachment' button.
Seeing as I was logged in to your site from the previous thread I double checked and it all seems to be working - Not that I've deleted anything!
1 Guest(s)