Anthony D'Arco
Forum Replies Created
-
Alright, I did that, now I’m not 100% sure I know what I’m looking at. Here is a link
However, here is the weird part, once I installed the control plugin the feeds filled in. I’m not sure if the plugin made this happen or if it was just a coincidence. Can you take a look at my screenshot and let me know if that is how everything is supposed to be running and/or if the control plugin could have resolved this?
Thank you,
Anthony[Moderator Note: Please ensure that you are embedding links correctly in your posts. Link corrected.]
I was just following up on this to see if there was any additional information I could provide.
Thank you,
AnthonyNo it is empty.
Thank you,
AnthonySorry for my delay in responding, I’ve been out of town.
I double checked the documentation you included, and they did not help. The debugging information is as follows:
### Begin System Info ### ## Please include this information when posting support requests ## Multi-site: Yes SITE_URL: https://domcentral.staging.wpengine.com HOME_URL: https://domcentral.staging.wpengine.com Plugin Version: 4.1.4 WordPress Version: 3.9.1 Platform: Apple Browser Name: Safari Browser Version: 7.0.4 User Agent String: Mozilla/5.0 (Macintosh; Intel Ma c OS X 10_9_3) AppleWebKit/537.7 6.4 (KHTML, like Gecko) Version/ 7.0.4 Safari/537.76.4 PHP Version: 5.3.2-1ubuntu4.22 MySQL Version: 5.5.35-33.0-log Web Server Info: Apache PHP Safe Mode: No PHP Memory Limit: 256M PHP Post Max Size: 75M PHP Time Limit: 3600 WP_DEBUG: Disabled WP Table Prefix: Length: 3 Status: Acceptable Show On Front: posts Page On Front: #0 Page For Posts: #0 Session: Enabled Session Name: PHPSESSID Cookie Path: / Save Path: /var/lib/php5 Use Cookies: On Use Only Cookies: On UPLOAD_MAX_FILESIZE: 75MB POST_MAX_SIZE: 75MB WordPress Memory Limit: 64MB DISPLAY ERRORS: N/A FSOCKOPEN: Your server supports fsockopen. ACTIVE PLUGINS: Advanced Custom Fields: 4.3.8 Advanced Export: 2.9 Compact Audio Player: 1.9.2 Contact Form 7: 3.8.1 Contact Form DB: 2.7.5 Custom Post Type UI: 0.8.2 FBF - Facebook Page Feed Widget: 1.2.1 Gravity Forms Change Entry Creator Add-on: 3.6.1.2 Gravity Forms Directory & Addons: 3.6.1.2 Gravity Forms MailChimp Add-On: 2.4 InfiniteWP - Client: 1.2.14 LambertGroup - AllInOne - Content Slider: 3.1 Post Expirator: 2.1.3 Relevanssi: 3.3.5 Share Buttons by AddToAny: 1.3.2 Soliloquy: 2.3.2 Soliloquy - CSS Addon: 2.1.0 Soliloquy - Featured Content Addon: 2.1.6 Soliloquy Crop Addon: 1.0.3.1 Soliloquy Preview Addon: 1.2.1 Twitter Widget Pro: 2.6.0 UberMenu 2 - WordPress Mega Menu Plugin: 2.0.1.0 Velvet Blues Update URLs: 3.2.2 WordPress Importer: 0.6.1 WP Google Analytics: 1.4.1 WP RSS Aggregator: 4.1.4 NETWORK ACTIVE PLUGINS: Envira Gallery: 1.1.7.1 Gravity Forms: 1.8.8 CURRENT THEME: : ### End System Info ###
[Moderator Note: Please post log files between backticks or use the code button.]
Forum: Plugins
In reply to: [Private Only] Why do I keep getting thrown to login page (after migration)I apologize, I ment to post on this thread. I am having the same problem, was wondering if any headway has been made?
This also happens to me when users are switching sites within my multi-site (but they are logged into all sites like a super admin).
Thank you,
AnthonyForum: Plugins
In reply to: [Private Only] Hide WordPress Dashboard on Upper Left of Screen after log inThanks for the tip, I will check it out.
Forum: Plugins
In reply to: [Private Only] Hide WordPress Dashboard on Upper Left of Screen after log inI am having the same problem, was wondering if any headway has been made?
Thank you,
AnthonyForum: Themes and Templates
In reply to: Show all custom post types organized by custom taxonomyMariusz,
Overall, I’m a bit confused. It maybe just an issue of semantics, but is enough for me not to understand the question. When you say, “I need to list post types from current category divided by category…” Are we dealing with custom post types/taxonomies? If so, the all the functions associated with categories, don’t work. (Please someone correct me if my this is incorrect), the category functions only work with posts and not custom post types.
So, my original code should work for you if you are working with custom post types/taxonomies, but won’t work if they are simply categories with the post section. For the categories the link I included should work (although I did not test it out).
Let me know if that helps.
Thank you,
AnthonyForum: Themes and Templates
In reply to: Show all custom post types organized by custom taxonomyI’m not sure if I understand your question. If you are using category.php you are only going to be able to sort the categories within the posts. The purpose of the code above is for custom post types with custom taxonomies, so the above code would need to added to some other template than your category.php.
If you are looking to do this for each category (for Posts only), then this resource should help you out: https://eisabainyo.net/weblog/2010/03/10/display-5-latest-posts-in-each-category-in-wordpress/
I hope that helps,
AnthonyForum: Plugins
In reply to: [Custom Post Type RSS feed] Right, plugin, but I need more info.I was wondering what your thoughts were on the above code on if your plugin can help/what is wrong with the above code on why your suggestion won’t work. I feel like I’m missing something stupid.
Thank you,
AnthonyForum: Plugins
In reply to: [Custom Post Type RSS feed] Right, plugin, but I need more info.Actually, I do register the custom post types, my code looks like this:
//register custom post type Funerals content register_post_type( 'sjc-funeral', array( 'labels' => array( 'name' => __( 'Funerals' ), //this name will be used when will will call the investments in our theme 'singular_name' => __( 'Funerals' ), 'add_new' => _x('Add New', 'Funerals'), 'add_new_item' => __('Add Funerals'), //custom name to show up instead of Add New Post. Same for the following 'edit_item' => __('Edit Funerals'), 'new_item' => __('New Funerals'), 'view_item' => __('View Funerals'), ), 'has_archive' => true, 'public' => true, 'menu_position' => 100, 'show_ui' => true, 'hierarchical' => false, //it means we cannot have parent and sub pages 'capability_type' => 'post', //will act like a normal post 'rewrite' => array('slug' => 'sjc-funerals'), //this is used for rewriting the permalinks 'query_var' => false, 'supports' => array( 'title', 'editor', 'thumbnail', 'excerpts', 'revisions','author') //the editing regions that will support ) );
when I tried: https://www.stjohnofthecross.org/sjc-funerals/ I am getting 404. Same when I added the /feed.
That is why I came to your plugin, I was under the impression that would fix my problem. However, now I’m not sure how to fix this.
Thank you,
AnthonyForum: Plugins
In reply to: [Custom Post Type RSS feed] Right, plugin, but I need more info.I hate to be a pest, but I was really hoping to get further explanation on how this actually works. I know its the plugin I need, but I need it to work per my previous question.
Thank you,
AnthonyI tried the above solutions and it works perfectly. However, I would love to have the image appear at the top of the description so the text can float around the image. Right now it just sorta hangs out at the bottom of the post.
Alternately, I could use it at the end if the image was responsive (or at least larger say at least 400px wide).
Thank you,
AnthonyForum: Themes and Templates
In reply to: Show all custom post types organized by custom taxonomyI had the same problem. I did a ton of research, and honestly, I couldn’t find an answer, however, I tried copy and pasting from your link and then copied the tax_query from this post: https://wordpress.stackexchange.com/questions/49185/tax-query-parameter-not-working-with-wp-query
Some how it worked…I honestly don’t know what the difference was, but here was my raw code:
<?php //get all categories then display all posts in each term $taxonomy = 'vc-memorial'; $term_args=array( 'orderby' => 'name', 'order' => 'ASC' ); $terms = get_terms($taxonomy,$term_args); if ($terms) { foreach( $terms as $term ) { $args=array( 'post_type' => 'vc-memorial-us', 'post_status' => 'publish', 'posts_per_page' => -1, 'caller_get_posts'=> 1, 'tax_query' => array( array( 'taxonomy' => 'vc-memorial', 'terms' => array($term->term_id), 'include_children' => true, 'operator' => 'IN' ) ) ); $my_query = null; $my_query = new WP_Query($args); if( $my_query->have_posts() ) { ?> <div class="category section"> <h3><?php echo 'Category '.$term->name;?></h3> <ul> <?php while ($my_query->have_posts()) : $my_query->the_post(); ?> <li><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></li> <div><?php the_excerpt ?></div> <?php endwhile; ?> </ul> </div> <?php } } } wp_reset_query(); // Restore global post data stomped by the_post(). ?>
Here are the final results with just adding some design to it: https://viatorians.wpengine.com/resources/in-memoriam/
I hope that helps.
Thank you,
Anthony