michaelnewsomejr
Forum Replies Created
-
We are having this issue, as well. It seems to be limited to existing pages, we didn’t see it when on new pages that were created after the update.
I created that directory, it also shows no members. It was created with no search/filter forms, no customization, etc. It is just a default “new directory” with a custom UM role (Fellow, nearly 500 members) selected.
Thanks,
We don’t have any customization to the UM hooks, and it does still occur when it’s the only active plugin.
Thanks,
@champsupertramp I did that, but the directory still shows blank on the front end: https://kenanfellows.org/fellows/
That checkbox was already checked, as well. I re-saved that setting and cleared the user cache, but I don’t see an option to run an update.
Thanks,
MichaelForum: Plugins
In reply to: [Classic Editor] Yoast SEOYes, I can confirm I am seeing the same issue, as well.
Forum: Plugins
In reply to: [Classic Editor] Incompatible with Yoast@vaszeit we are seeing the same conflict between the Yoast and the WP Classic Editor plugin. I can see the content editor box, but I can not interact with it.
I am using the All Import plugin to import with.
Currently, they on my localhost for testing. I’m not sure where the live sites will be hosted. What is the plugin?
Forum: Plugins
In reply to: [WooCommerce] Rest API Add to Cart/PurchaseHow would I keep them synced with the API? Would something like this work?
function sync_products( $post_id ) { //API CODE TO POST CHANGES TO OTHER STORE } add_action( 'save_post_product', 'sync_products', 10, 3 );
Forum: Plugins
In reply to: [WordPress Popular Posts] Don’t crop but resize thumbnailsI have the same issue. If I use the “parameters” code to make the image height 150×150, then it just stretched the smaller image to that size and it looks awful.
Forum: Plugins
In reply to: [YITH Infinite Scrolling] Inserting Google ads after every 8th postAfter some testing, I’ve isolated the issue to being that the 16th post is after the initial page load, so it is on “page 2” of the Infinite Scroll.
The page initially loads with 12 posts. I can hook in as many ads as I like after any post I life, but only within those first 12 posts (page 1 of Infinite Scroll). Anything after 12 will give me problems.
Forum: Fixing WordPress
In reply to: Parse error: syntax error, unexpected 'get_header' (T_STRING)Anybody ever seen this error?
Forum: Fixing WordPress
In reply to: Function results displaying before HTML tagsAnyone able to help?
Forum: Fixing WordPress
In reply to: Show 1 product from each categoryBy the way, here is my code in question more organized:
<?php $taxonomy = 'product_cat'; $orderby = 'slug'; $show_count = 0; // 1 for yes, 0 for no $pad_counts = 0; // 1 for yes, 0 for no $hierarchical = 1; // 1 for yes, 0 for no $title = ''; $empty = 0; $args = array( //'taxonomy' => $taxonomy, 'orderby' => $orderby, 'show_count' => $show_count, 'pad_counts' => $pad_counts, 'hierarchical' => $hierarchical, 'title_li' => $title, 'hide_empty' => $empty ); ?> <?php $all_categories = get_categories( $args ); foreach($all_categories as $category) { $posts=get_posts('taxonomy=product_cat&hierarchical=1&showposts=1&cat='.$category->term_id); if ($posts) { echo '<div id="'.$category->slug.'"><p>Category: <a href="' . get_category_link( $category->term_id ) . '" title="' . sprintf( __( "View all posts in %s" ), $category->name ) . '" ' . '>'.$category->name.'</a> </p> </div>'; foreach($posts as $post) { setup_postdata($post); ?> <p><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></p> <?php } // foreach($posts } // if ($posts } // foreach($categories ?>