doc4
Forum Replies Created
-
popwireless,
What are you referring to when you say “WASSUP”?
Forum: Plugins
In reply to: [Woopra Analytics Plugin] [Plugin: Woopra Analytics Plugin] admin link goneI’m seeing the same thing. Anyone catch where the API Key goes now because that page seems to be missing as well. Dropping this plugin for the time being.
Thanks for updating so quickly Ozh. Can you add a z-index for the pop up bubbles, they’re getting caught behind the new WordPress bar.
#ozhmenu li a #awaiting-mod span, #ozhmenu li a .update-plugins span { color: #444; top: -0.4em; <?php echo $opdir; ?>: -0.5em; position: absolute; display: block; height: 1.3em; line-height: 1.4em; padding: 0 0.8em; background-color: #bbb;#2583AD; -moz-border-radius: 4px; -khtml-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px; z-index: 999999; }Revision to the above CSS. Take out that relative position and replace it with a negative margin:
#ozhmenu_wrap { z-index: 43000; overflow: hidden; width: 100%; /*clear: both; REMOVED */ margin: -1px 0 0; /* NEW */ }Recommended quick fix which should straighten out the menu being in a bit of an awkward spot. I would expect the next release will make better corrections. We are also using: add_filter(‘admin_notices’ on line: 129 of the file: “wp_wp_ozh_adminmenu.php” as the hook. The previous hook is apparently depreciated, I wasn’t aware of this either.
The hooks in their entirety should look like this:
if ( is_admin() ){ global $wp_ozh_adminmenu; require_once(dirname(__FILE__).'/inc/core.php'); add_action('admin_init', 'wp_ozh_adminmenu_init', -1000); // Init plugin defaults or read options add_action('admin_menu', 'wp_ozh_adminmenu_add_page', -999); // Add option page add_action('admin_head', 'wp_ozh_adminmenu_head', 999); // Insert CSS & JS in <head> add_action('in_admin_footer', 'wp_ozh_adminmenu_footer'); // Add unobstrusive credits in footer add_filter('plugin_action_links_'.plugin_basename(__FILE__), 'wp_ozh_adminmenu_plugin_actions', -10); // Add Config link to plugin list add_filter('ozh_adminmenu_icon_ozh_admin_menu', 'wp_ozh_adminmenu_customicon'); // This plugin will have its own icon of course add_filter('admin_notices', 'wp_ozh_adminmenu', -9999); // Add the new admin menu right after the header area. Make sure we're first. }After the hook has been changed do the following:
1. Open file “inc/adminmenu.css”2. Change the following CSS styles:
#ozhmenu_wrap { z-index: 43000; overflow: hidden; width: 100%; clear: both; position: relative; /* NEW */ top: -23px; /* NEW */ }3. Add the following CSS style:
#screen-meta-links { position: relative; top: 25px; }Thanks for the heads up, we’ll get this updated in the next release.
Since we can’t seem to segregate using category, I’ve found a strange work around. Assign each category a specific author name and use this as a means to display a single category. Example below:
<?php $my_query = new WP_Query(array ('post_type' => 'tribe_events', 'author' => 2 ) ); while ($my_query->have_posts()) : $my_query->the_post(); $do_not_duplicate[] = $post->ID ?>Tested and working, however I would rather use categories, this will work for my purposes now.
Forum: Plugins
In reply to: [The Events Calendar] [Plugin: The Events Calendar] Event category templatekatzw,
That doesn’t work, haven’t found anything useful yet.
katzw,
I may have spoken too soon. Seems this isn’t working correctly. I’m considering writing a short tutorial on my own website next week. This issue however is unsolved at the moment. I need to display a single category myself so if I find something I’ll post it here.
katzw,
Give this a try:
<?php $my_query = new WP_Query(array ('post_type' => array( 'Your Category Name Here', 'tribe_events' ) ) ); while ($my_query->have_posts()) : $my_query->the_post(); $do_not_duplicate[] = $post->ID ?>This is working for me and it would be really nice if the creators of this plugin could give some code examples. I’m honestly shocked at the above discussion, you ran off to ask your coder and returned with nothing. How about not keeping everything a mystery, especially if you want us to purchase the upgrade.
Forum: Fixing WordPress
In reply to: Chrome issues, Always crashesJust tried the site in Chrome and it does in fact crash (oh snap). try removing all the javascript links in the header and see if this causing the problem. Just copy and paste the code into a text file and copy it back when you’re finished. See if this fixes anything.
Forum: Fixing WordPress
In reply to: Chrome issues, Always crashesYou could always try turning of your plugins one by one and see if this solves the problem.
Forum: Fixing WordPress
In reply to: a little help for a newbeeThe body_class function is detailed here: http://codex.wordpress.org/Function_Reference/body_class
Forum: Fixing WordPress
In reply to: Photos not appearing after reinstallCan you explain this a little more? Are the images missing from the live site or from the dashboard?
Forum: Fixing WordPress
In reply to: Browsers unable to load my siteThe point here is that WordPress is using custom PHP and Blogger is incompatible in that sense, assuming Blogger is even using PHP. Think a little, I’m attempting to help and we don’t need this petty nonsense.