I’m looking at our errors logs and I keep seeing OVER AND OVER again the following:
mod_fcgid: stderr: PHP Warning: Attempt to read property “term_id” on false in?/var/www/vhosts/site.com/httpdocs/wp-content/plugins/archive-control/class-archive-control.php on line 1186
Can you help please?
When I add content into After Archive List on Category, when category is displayed, content is shown at very top of the web page, even before Header.
It was working fine until now. I have been doing some changes on a STG environment but did no touch the plugin or its files whatesoever. I cannot find the source of the problem, help would be very much appreciated.
And this is how it looks like when Inspecting the element. I don’t know about coding, but I can follow instructions on where to add bits of codes in order to solve this ??
Using Nyture theme and Elementor.
Thanks in advance!
]]>Is is possible to add option for Archive Title to set php function name (that user must provide using functions.php or in some other way) that would generate text that would then be placed as Archive Title Prefix?
]]>I have Posts and Custom Posts. In Archive pages I would like to have Post Type Name as prefix to Category Archive Title. Is it possible to do with this plugin?
]]>When I add content into Before Archive List on Category, when category is displayed, content is shown at very top of the web page, even before Header.
I use the latest WP and block theme.
Hi there, loving your plugin! Simplicity is great.
I am looking for a solution excluding child item of a sub category. Example: Category Travel shows only direct attached posts for each year but not all the posts of a journey within a certain year. Do you think there is a possibility to have somthing like “exclude_child”?
The Query loop Block within a post works actually that way. Just the archive pages not.
]]>This is a nice plugin, can you release an update? The current version seems not to be working pretty well especially at the frontend
]]>Archive Control Plugin Doesn’t work on after content adding on category pages.
]]>For several months I have looked for a solution like this, to customize category and keep HTML entities in the database.
I was working on file functions.php in child theme to aim this aspect before using this plugin.
Thanks for sharing -:)
Hello to the amazing plugin developers and all the participants here:
As title describes that I am looking for help when the content has been posted and showing itself. But it has disturbed the who layout, FILMAX is the theme name which I am using, I have tried to add content at the end of the category.
Waiting for the quick and positive response!
]]>Hello,
Good day. I just installed the plugin which already makes magic for what I want to achieve, but there is no positioning at all for the functions provided by the plugin!
The featured image appeares inside the trips/posts and not in the header, i want to show it above or behind the title.
How can this be possible?
Featured image in taxonomy add/edit was not showing. After investigation, it was because the function get_taxonomies (class-archive-control.php:325) is called within the init hook.
Adjusting the priority fixed this problem :
class-archive-control.php:77
--- add_action( 'init', array( $this, 'archive_control_handle_taxonomy_fields' ) );
+++ add_action( 'init', array( $this, 'archive_control_handle_taxonomy_fields' ), 999 );
Then another problem, taxonomies images was not showing on the front-end category page, but only the archive image.
Fixed with :
class-archive-control.php:77
--- if (is_post_type_archive()) {
--- $post_type_slug = get_query_var('post_type', null);
--- }
--- if (is_tax() || is_category() || is_tag()) {
--- $term = get_queried_object();
--- $term_id = $term->term_id;
--- }
+++ if (is_tax() || is_category() || is_tag()) {
+++ $term = get_queried_object();
+++ $term_id = $term->term_id;
+++ } else if (is_post_type_archive()) {
+++ $post_type_slug = get_query_var('post_type', null);
+++ }
Topic made to help others and the creator of this plugin.
Thanks for this useful plugin, I hope you will merge this patch in your next release.
]]>The blog roll on my category page is tiled (2 columns). Instead of appearing above the columns, the “Content Before List” is appearing at the top of the first column. I am using Divi.
Any Suggestions?
Thanks
Hello, I really appreciate your plugin for the many features. Still, I need an extra feature, namely the ability to change the slug name for multiple pages in archives. I saw that the subpages have the structure “terminology/pages/number” and I wish either to eliminate the slug “pages” or to have the ability to change it to the needed terminology. This would be a great SEO improvement of the plugin!
Thanks!
Hi my friend, i wanna use your plugin but your plugin works standart category url type. But in my site i have lots of category. We are real estate website and we have lots of category and i wanna show extra informaiton before the listing. Forexample https://www.myrealestateturkey.com/property_city/bursa/ in this link how to show extra information.
]]>hy!
one of my friend recommend me to use your plugin, but before installing your plugin i just want to confirm my problem from you!
I have an e-commerce website, there are more than 200+ product categories within my website. I just want to deindex(noindex) my archive pages of product categories.
e.g https://abc.com/sports/
https://abc.com/sports/page/2/
https://abc.com/sports/page/3/
this is my sports categories pages url, i just want to index my first page not 2nd and 3rd page.
did your plugin have this option?
looking forward from you!
thanks!
I only want to make sure that it’s safe to use ?? Also, it doesn’t show up at the moment when searching the repository or search engines (just now I manually downloaded/uploaded/installed it). I am using the most recent version of WordPress, and the Divi theme. This plugin works really well, is comprehensive, and is incredibly useful. Please release an update!
]]>Is this still being supported…? Am needing this possibility, and wondering if plugin author might update/test it up to the current WP…? A big bunch of anxiety accompanies using a plugin that hasn’t been updated or followed up on in this long…
Kind regards.
]]>Would be great if the content created by this plugin in archive pages would translatable. Any plans on implemeting that feature?
]]>Is it possible to give access for editor to Edit Archive Page?
]]>How to display taxonomy image in example like this?
<?php
$args = array(
'taxonomy' => 'category',
'menu_order' => 'asc',
'hide_empty' => 0,
'hierarchical' => true,
'parent' => 0,
);
$categories = get_categories( $args ); ?>
<ul>
<?php foreach ( $categories as $category ) :
<li>
<?php the_archive_thumbnail('large') ?>
<h3><?php echo $category->name; ?></h3>
</li>
<?php endforeach; ?>
</ul>
]]>
I just finished a site conversion from HTML to WordPress, and am using this plugin for controlling the sort order of the custom taxonomies. There are 5. It is working fine, except for one little thing.
Three of the 5 are set to use the post slug for sort. The other two are using a post meta field (year). My client added two new posts, and clicked on the taxonomy links on the post. The ones with slug work, but the ones with year did not show the new post in the list of posts.
I was baffled, and went to look at the posts. It turns out that the client (new to WordPress) did not put the post meta fields in the new posts, so there was no year. Once I put that in, the posts then showed up in the list at the taxonomy link.
The question for you is: why does the sort field affect whether the post is in the list? The query is such that the post is not selected if it doesn’t have the sort criteria? I suppose I can see how that might be for a JOIN for the meta values. Is there another way to get the query to work if the meta field is missing? The post should be in the list, but not sorted.
]]>Tags Page: instead of ‘Content After List’ it displays one of my Posts like all warped up in the side.
I turned it off for now… let me know if you want me to turn it on so you can see the problem ??
Cheers
Hi!
What is needed to configure the archive page of the default blog posts archive? I have a child theme of Twentysixteen. Might has_archive be shut off?
]]>Hi, is there any way to use this plug in with ACF ?
]]>Hi,
My main goal with this plugin is to have an image displayed on social media when I share the podcast main page (which is the archive).
1. So far, the featured image I added is not being shown on FB or reddit. Any clue why?
2. It would be nice to have a presentation paragraph, but when I add it, it also displays the player with the latest episode, which is also displayed as the first item in the list. Meanwhile I removed that. If there is a way to fix that I’d be glad to know.
Thank you!
]]>Hi,
how can i set true “has_archive” and where can i set?
Thanks a lot
I really would like this to work. Could be the theme I am using, a plugin or could be I have a setting wrong or placed code wrong, lol. I do not get anything whether or not I use the loop (automatic) or a hook (manual). Nothing… The plugin is working with latest WP updates I am guessing, right?
Help would be appreciated. Thanks
]]>H guys,
after the last site update, I can’t see the “News Ticker” entry in the left-side menu in the Dashboard. The plugin is still activated and the ticker is being shown in the resulted web page, but I can’t edit the ticker content anymore. Could you help?
Regards
Henryk
]]>I have just installed this plugin and it works great. One of the features I am using it for is to display Category entries in alphabetical order rather than by date order, making the “Older posts” and “Newer posts” text of the pagination links sound not quite right. It would be great if we had the option to change this text.
Thanks!
]]>