verlierer
Forum Replies Created
-
…another suggestion, maybe it would help to set CURLOPT_TIMEOUT, as well as, CURLOPT_CONNECTTIMEOUT in BaseFacebook
Forum: Fixing WordPress
In reply to: Exclude Category with WP Tag CloudUse the “exclude” parameter, for example:
<?php wp_tag_cloud('smallest=12&largest=20&exclude=67'); ?>
Where ’67’ is the id of the tag you want excluded.more info
wp_tag_cloud()Okay. I haven’t fixed this, yet but think I’ve figured out the problem. For me I started getting the above error after migrating to a new server.
The include that was failing was in the following condition in phplitefw.inc.php:// If proper extensions are loaded, load XML transformation plugin and record set list class if ($this->xml_ext_loaded) { echo ' YES, xml extension is loaded '; if ($this->mode == 'litefw') { $this->load_plugin('xml_transform'); include_once("$this->frame_path/core/structure/objects/rs_list.class.php"); include_once("$this->frame_path/core/structure/objects/table.class.php"); } }
So, apparently the new server doesn’t have those extensions.
Same problem for me. Lucas’s screencast isn’t loading for me. What did it say??
Forum: Plugins
In reply to: [Tabbed Widgets] [Plugin: Tabbed Widgets] Broken in WordPress 3.3Okay. I’m hardly a wordpress pro, but I got this to work on WordPress 3.3 by forcing “jquery.ui.tabs.min.js” to load by placing the following line in the addHeader() function of tabbed-widgets.php in the Tabbed Widgets plugin:
wp_enqueue_script('jquery-ui-tabs', $this->plugin_path . 'js/jquery-ui-custom.min.js', array('jquery'), false, true);
Maybe that’ll help.
Forum: Plugins
In reply to: [Tabbed Widgets] [Plugin: Tabbed Widgets] Broken in WordPress 3.3Here’s the error I’m getting with tabs. (Note: the accordian setting seems to work, and the “tabs-nav” is properly appended in init-plugin.js)
$(".tw-tabs", this).tabs is not a function wp-content/plugins/tabbed-widgets/js/init-plugin.js Line 51