novacode7
Forum Replies Created
-
Forum: Networking WordPress
In reply to: Adding a Global Menu for a Multisite installationIt’s on the link that Ipstenu posted, just above the heading “Customizing for your use”.
Forum: Plugins
In reply to: [OptionTree] [Plugin: OptionTree] Prompt to Install Message on Dashboard//OPTIONS PLUGIN CHECK wpaid_check(); function wpaid_check() { if ( !function_exists('option_tree_css_save') ) { add_thickbox(); // Required for the plugin install dialog. add_action('admin_notices', 'wpaid_check_notice'); } } add_theme_support('automatic-feed-links' ); // The Admin Notice if OptionTree not installed. function wpaid_check_notice() { ?> <div class='updated fade'> <p>The OptionTree plugin is required for this theme to function properly. <a href="<?php echo admin_url('plugin-install.php?tab=plugin-information&plugin=option-tree&TB_iframe=true&width=640&height=517'); ?>" class="thickbox onclick">Install now</a>.</p> </div> <?php }Forum: Plugins
In reply to: [OptionTree] [Plugin: OptionTree] Prompt to Install Message on DashboardI see now that my theme had a function checking for the OptionTree plugin, which does not recognize the updated version of OptionTree.
Sorry, Pprevos, but I haven’t heard anything new on this plugin. Are you aware of any alternatives?
Forum: Networking WordPress
In reply to: Multisite, Jetpack, and Networkwide MenuThanks, Ipstenu – that about sums it up!
Your moderation on WordPress.org is invaluable!
Forum: Networking WordPress
In reply to: Multisite, Jetpack, and Networkwide MenuAfter a recent Jetpack update my problem was resolved without me even having to try deactivating the modules (so I’m not certain what caused the conflict).
Forum: Themes and Templates
In reply to: [Codium Extend] [Theme: Codium Extend] Make Header ClickableThanks WPyogi. I was pretty sure there wasn’t an easy work around for this.
It is an easy switch to load it as an image via the header.php file, but I was hoping to not have to modify my theme this way. I assume that by loading the header image in this way I will no longer be able to use WP’s “Appearance” – “Header” function to change the header easily in the future.
Forum: Networking WordPress
In reply to: Multisite, Jetpack, and Networkwide MenuThe one below the logo. I just reactivated Jetpack on the 1st Grade subsite for testing. Only after reconnecting Jetpack to my WordPress.com account did the conflict occur again. It affects both the menu and the posts, which no longer appear either. Thanks for looking at this!
Forum: Networking WordPress
In reply to: Multisite, Jetpack, and Networkwide MenuThanks for your reply, Ipstenu. Here’s the website in development.
I tried renaming the subsite’s menus but to no avail. For the time being I’ve simply disabled Jetpack on the subsites (though it works fine on the main site).
Forum: Fixing WordPress
In reply to: plug in errorI am also experiencing this issue on one site. I can’t trace it to any changes that I’ve made (I have disabled all plugins that I’ve installed in the past few weeks but no change).
Same warning on the search to add a new plugin screen:
number_format() expects parameter 1 to be double, string given in …/html/…/wp-includes/functions.php on line 155
Forum: Plugins
In reply to: [Plugin: All-in-One Event Calendar] Interfering with Option TreeI’m also having this conflict between OptionTree and All-in-One Event Calendar. My theme requires OptionTree so I am hoping someone find a fix for this!
Forum: Networking WordPress
In reply to: Adding a Global Menu for a Multisite installationI had read about (and experienced) the server lag caused by switch_to_blog so I wasn’t excited about using it. I just hadn’t found any functioning alternative.
However, the plugin from WPMU Tutorials works perfectly! Thank you for that link!
Forum: Plugins
In reply to: [HungryFEED] [Plugin: HungryFEED] Can't Select an Image from RSS FeedThank you for your quick response. Using the data array feature I’ve tracked down the image. It’s only located here in the data feed:
{{data[‘child’][‘http://purl.org/rss/1.0/modules/content/’%5D%5B‘encoded’%5D%5B0%5D%5B‘data’%5D}}
Unfortunately, when I use this data array it brings over the post text and image. Is there a way to specify more precisely the image only? Here’s the relevant data dump:
[http://purl.org/rss/1.0/modules/content/] => Array ( [encoded] => Array ( [0] => Array ( [data] => <p><img class="alignleft size-full wp-image-36" title="School Crest" src="http://principal.crusaders.ourladyofhope.net/files/2012/03/School-Crest.png" alt="" width="121" height="94" />Make sure to show your Crusader pride on Spirit Day, March 28!</p> [attribs] => Array ( ) [xml_base] => [xml_base_explicit] => [xml_lang] =>I actually discovered the solution to my problem. I wasn’t properly using the distinctions between
is_home()andis_front_page().Forum: Fixing WordPress
In reply to: Custom Background Disapears in Codium-Extend Theme w/ Word 3.3Replacing <body class=”<?php codium_extend_body_class() ?>”> in header.php with <body <?php body_class(”); ?>> worked perfectly. It restored my custom background with no noticeable side effects.