pdoteam
Forum Replies Created
-
Forum: Plugins
In reply to: [Admin Menu Editor] Admin menu bar is not working for multisiteit’s weird. it works for all sites, but I can’t configure it from the network admin. i have to configure it from a site.
Forum: Plugins
In reply to: [Admin Menu Editor] Admin menu bar is not working for multisiteI’m running into the same issue. In my wp-config the WPMU_PLUGIN_DIR and WPMU_PLUGIN_URL were not present so I added those, but it didn’t seem to help (maybe I did it wrong). Basically, once I put the admin menu folder in the mu-plugins folder, it’s like wordpress doesn’t see it at all. No errors that I can find or anything.
Forum: Plugins
In reply to: [Ajax Load More – Infinite Scroll, Load More, & Lazy Load] strtolower errorthe latest link worked for not showing the error.
Through the process of elimination, I discovered it’s the DW Question Answer plugin that makes the error show. Not sure what to do about it though.Below is my system info
// Generated by the Send System Info Plugin //ACTIVE PLUGINS:
WP-SpamShield: 1.9.6.8
NETWORK ACTIVE PLUGINS:
Admin Menu Editor :1.5
Ajax Load More :2.8.6
All In One SEO Pack :2.2.7.5
BackWPup :3.2.2
Better User Search :1.0.2
Contact Form 7 :4.3.1
DW Question Answer – Embed Question :1.0.0
DW Question Answer :1.3.6
Jetpack by WordPress.com :3.8.2
LearnDash Pro Panel :1.5.4
LearnDash Course Grid :1.1
Link Library :5.9.12
List category posts :0.67.1
Login With Ajax :3.1.5
Members :1.1.0
Multi-Site Site List Shortcode :5.5.1
Multisite: Passwort Reset on Local Blog :1.0.0
Multisite User Management :1.1
Nav Menu Roles :1.7.4
Network Privacy :0.1.5
Pricing Table by Supsystic :1.2.2
Recent Posts Slider :1.1
Redirection :2.4.3
S3 Media Maestro :1.8
Send System Info :1.2
LearnDash LMS :2.1.6
Simple Network Login Log :0.6.3
Slack Integration for WordPress :1.7.1
Unconfirmed :1.2.7
User Role Editor :4.21.1
W3 Total Cache :0.9.4.1
Widgets on Pages :0.0.12
WordPress MU Domain Mapping :0.5.5.1
WP Add Custom CSS :0.9.7
WP-DBManager :2.78
WP Multisite SSO :1.0.2
WP Support Plus Pro :6.1.9
WPS Hide Login :1.1.3Forum: Plugins
In reply to: [Ajax Load More – Infinite Scroll, Load More, & Lazy Load] strtolower errorWP_DEBUG is already set to false
Forum: Plugins
In reply to: [Ajax Load More – Infinite Scroll, Load More, & Lazy Load] strtolower errorAh, ok. Fixing those two.
Here’s my updated repeater. The tiers are still weird as they go down the page instead of across.
<li <?php if (!has_post_thumbnail()) { ?> class=”no-img”<?php } ?>><?php if ( has_post_thumbnail() ) { the_post_thumbnail(array(150,150));}?><h3>” title=”<?php the_title(); ?>”><?php the_title(); ?></h3><p class=”entry-meta”></p><?php the_content(); ?>
Forum: Plugins
In reply to: [Ajax Load More – Infinite Scroll, Load More, & Lazy Load] strtolower errorIt’s live on my site right now.
http://mycadadmin.com/The first page listed looks like this: http://mycadadmin.com/subscription-tiers/, but that’s not how the ajax shows it.
Forum: Plugins
In reply to: [Shiftee Basic - Employee and Staff Scheduling] Add ExpenseThat worked, thanks!
Forum: Plugins
In reply to: [Shiftee Basic - Employee and Staff Scheduling] Add ExpenseGreat! Thanks!
Forum: Plugins
In reply to: [VS Knowledge Base] Display topics by subcategoryok.
Forum: Plugins
In reply to: [VS Knowledge Base] Display topics by subcategoryYes, it works. Thanks!
Forum: Plugins
In reply to: [VS Knowledge Base] Display topics by subcategoryGreat, thanks!
Forum: Plugins
In reply to: [VS Knowledge Base] Display topics by subcategoryAgain, copied code from a sample. I assumed it was casting the result to an array. I don’t work in Python that frequently. I love this plugin, b/c it’s a better way to present articles that have been written over the last few years.
The only other thing I’d like to see is a way to make the categories with a lot of articles display better, they do get long.
Forum: Plugins
In reply to: [VS Knowledge Base] Display topics by subcategoryThe cat_ID/term_id was a matter of preference. The while seemed to be used in more of the documentation than the foreach. I just tried to match what the documentation I was reading showed.
Here’s a sample of the most updated code, it now shows all posts (was limited to 10 per category before).
<?php // Creating the shortcode for three columns function vskb_three_columns_by_subcategory() { $return = ""; $return .= '<div id="vskb-three">'; //can exclude categories by ids // $excludecats = array(3,4,15,21,22,28,34,35,53,58,68,85,117); $vskb_cat_args = array( 'hide_empty'=>1, 'orderby'=>'name', 'order'=>'asc', 'exclude'=>$excludecats ); $vskb_cats = get_categories($vskb_cat_args); foreach ($vskb_cats as $cat){ //get the array of child categories $child_cat = (array)get_term_children($cat->cat_ID,'category'); $return .= '<ul class="vskb-cat-list"><li class="vskb-cat-name"><a href="'. get_category_link( $cat->cat_ID) .'" title="'. $cat->name .'" >'. $cat->name .'</a></li>'; $args = array( 'category__in' => $cat->cat_ID, 'posts_per_page'=>-1, 'orderby'=>'date', 'category__not_in'=> $child_cat); $vskb_posts = new WP_Query($args); while($vskb_posts->have_posts()) : $vskb_posts->the_post(); $return .= '<li class="vskb-post-name">'; $return .= '<a href="'. get_the_permalink() .'" rel="bookmark" title="'. get_the_title( ) .'">'. get_the_title() .'</a>'; $return .= '</li>'; endwhile; $return .= '</ul>'; } $return .= '</div>'; return $return; } add_shortcode('knowledgebase-three-subcats', 'vskb_three_columns_by_subcategory'); ?>Forum: Plugins
In reply to: [VS Knowledge Base] Display topics by subcategoryHere’s the effect: http://www.pdoteam.com/knowledgebase/
If you look at the footer of our site, there is a categories drop down. Without moving the articles to only show in subcategories, the list for some of them would be way too long to be useful. This allows breaking it down in manageable chunks. I’ve updated a few things, left me know if you want the new code.
Forum: Themes and Templates
In reply to: [CW Magazine] Can't customize on Multi-siteOk, it’s not a theme issue as it’s occurring for other themes. I’ll have to dig further. Yay. Thanks.