• Resolved crobbins

    (@crobbins)


    Hello everyone.

    I have been looking into this issue since 3.5 was released. For some reason, if I use the OptimizePress 1.55 theme, I am unable to use the Screen Options, Help, move right widgets, or manipulate the options added by optimizepress in the post or page editor. This pretty much totally breaks all functionality and reasons for using the OptimizePress theme.

    I have installed three blank copies of WP 3.5 and one blank copy of 3.4. Each with different databases and credentials. All on the same server. All of the 3.5 installs break once I activate the theme, and the 3.4 install behaves as expected. I have tried in Safari, Firefox, and Chrome. All the latest versions.

    I assume after looking at the master list, that this is an issue with jQuery, but I’m not sure, as my programming skills are rather weak.

    Does anyone have suggestions, or can anyone else verify this issue?

    Thanks for all of the work you guys do. WordPress is pretty much amazing.

Viewing 1 replies (of 1 total)
  • Thread Starter crobbins

    (@crobbins)

    Well it turns out that I needed to do just a little more looking around. I found how to fix this issue by using the themefuse forums here: https://themefuse.com/forum/clean-classy-corporate-html/fuseframe-update#post-86707

    Here are the relevant bits of info…

    The problem with menus and widgets.

    Go to jqueryui.com and then click on download link, from the list that you would have there make sure that all options are checked, on the bottom from Select theme field, choose No theme option and then click on Download button. You can see here a video with download and unzip process.

    Unzip the file that you would get and then open the folder and go to js folder, the files you need is called: jquery-ui-1.9.2.custom.min.js. This file need to be uploaded in library/tfuse_framework/js directory of the theme.

    After this in init_options.php file (library/tfuse_framework/admin) this code:

    <script src="<?php echo ADMIN_JS ?>/jquery.ui.core.min.js" type="text/javascript" ></script>
    <script src="<?php echo ADMIN_JS ?>/jquery.ui.widget.min.js" type="text/javascript" ></script>

    need to be replaced with:
    <script src="<?php echo ADMIN_JS ?>/jquery-ui-1.9.2.custom.min.js" type="text/javascript" ></script>
    After this changes all problems would be sorted.

    So to make it apply to the OptimizePress theme, you need to add the jquery-ui-1.9.2.custom.min.js file in the lib/admin/js folder.

    The code changes is simple… in the lib/admin directory, edit the first line of adm_config.php. Replace the jquery.min.js filename with jquery-ui-1.9.2.custom.min.js.

    This restores the full admin side functionality. I’m not sure if the other steps (or comparable ones) are needed, but I suppose I’ll find out soon enough.

Viewing 1 replies (of 1 total)
  • The topic ‘WP 3.5 and OptimizePress 1.55 is a "No Go."’ is closed to new replies.