Hi,
after noticing a huge error.log file, I discovered many errors like this:
WordPress database error Table ‘…taxopress_linked_terms’ doesn’t exist for query SELECT * FROM …taxopress_linked_terms WHERE term_id = 266 OR linked_term_id = 266 made by require(‘wp-blog-header.php’), require_once(‘wp-includes/template-loader.php’), include(‘/themes/petit10-child/single.php’), the_content, apply_filters(‘the_content’), WP_Hook->apply_filters, SimpleTags_Client_Autolinks::taxopress_autolinks_the_content, SimpleTags_Client_Autolinks::prepare_auto_link_tags, taxopress_add_linked_term_options, taxopress_get_linked_terms
Upon investigation, I found that the table in question doesn’t exist in the database and wasn’t created even after uninstalling and reinstalling the plugin.
To fix the issue, I had to add this line to the inc/functions.inc.php file in the taxopress_get_linked_terms function below the row $table_name = $wpdb->prefix . ‘taxopress_linked_terms’;:
if ($wpdb->get_var(“SHOW TABLES LIKE ‘$table_name'”) !== $table_name) {
return $linked_terms;
}
Is there any way to resolve this issue so I don’t have to modify the file after every update?
I have the latest version of your plugin and the latest version of WordPress. Let me know if you need any additional information.
Thanks a lot
]]>Hi,
Will disabling or deleting the plugin completely, remove all the existing tags etc? Our site has changed and no longer need auto tags but would like to retain the ones which were created.
Thanks
]]>[08-Nov-2024 15:00:04 UTC] PHP Fatal error: Uncaught TypeError: call_user_func_array(): Argument #1 ($callback) must be a valid callback, function “daily_cron_function” not found or invalid function name in /wp-includes/class-wp-hook.php:324
Good morning ! I would like to use categories for the pages, and i used your plugin to do add this feature in wordpress. I added categories and give it to the pages i want. I also modified in permalik settings in wordpress, to show categoies in the structure on the link (custom permalink /%category%/). But it doesn’t show any categories in the permalink!
]]>Hi Steve
Is there any way to exclude specific categories from the list of articles presented when clicking on highlighted term links in articles?
Please advise.
]]>First let me say what a great plugin this is. However after updating the the latest release the “Suggest Existing Terms / View Current Post Terms” procedure does not work any more.
After downgrading to version 3.25.1 the procedure works perfectly as it did before the upgrade. Clearly something has changed with the upgrade ?3.26.0.
Can this issue be resolved?
]]>I would like to see a new feature added.
A way have an history of merging terms with an option to set them to : auto-merge for the future.
So we will not have to do it manually each time a new unwanted term appear.
Dear Taxopress, why do you get the right to place a persistent ad spam at the top of my WP dashboard without an option to close it or make it go away?
“You’re using TaxoPress Free. The Pro version has more features and support. [Upgrade to Pro]”
With a bright blue background and ZERO options to make it go away?
View post on imgur.com
]]>
Hi
it seems that the function “Show existing terms” does not work correct since one of the last updates. I show tags, which are not in the article and does not show tags which are in the article
Here a screenshot
View post on imgur.com
It seems that always the same tags were shown, regardless the content of the article
Please help
Thank you
]]>While debugging something, I got the following messages:
Warning: Attempt to read property “labels” on bool in ROOT/wp-content/plugins/seo-by-rank-math/includes/settings/titles/taxonomies.php on line 15
Warning: Attempt to read property “singular_name” on null in ROOT/wp-content/plugins/seo-by-rank-math/includes/settings/titles/taxonomies.php on line 15
Deprecated: strtolower(): Passing null to parameter #1 ($string) of type string is deprecated in ROOT/wp-content/plugins/seo-by-rank-math/includes/settings/titles/taxonomies.php on line 72
Looking further into it, this taxonomy did not appear in the output of get_taxonomies()
, which was strange, and makes me think that, although Rank Math recognises it on its settings page, there is a point at which it isn’t defined properly.
I had install this plugin in some website, it works normally and help me a lot.
This is my new website, it can’t work when I set the auto link.
It had same setting up but it didn’t work.
this is the setting page photo:https://tutu.to/image/9Dg1k
]]>Is there any way to auto tag media for bulk uploads?
For example I want to upload 40 images from an event and tag as “Christmas Party”.
Thanks
The media tags field on media is just a text field. Any way to change it to a autocomplete dropdown to see pre-existing tags or add a new one?
Seems like this is fairly easy to mess up spelling or add duplicates if there are many tags.
It looks like the taxonomies created with TaxoPress aren’t exposed in wpgraphql under the regular taxonomies:
query Taxonomy {
taxonomies {
nodes {
description
id
name
label
public
}
}
}
// returns the following when TaxoPress is enabled:
{
"data": {
"taxonomies": {
"nodes": [
{
"description": "",
"id": "dGF4b25vbXk6Y2F0ZWdvcnk=",
"name": "category",
"label": null,
"public": null
},
{
"description": "",
"id": "dGF4b25vbXk6cG9zdF90YWc=",
"name": "post_tag",
"label": null,
"public": null
},
{
"description": "",
"id": "dGF4b25vbXk6cG9zdF9mb3JtYXQ=",
"name": "post_format",
"label": null,
"public": null
}
]
}
},
}
However you can expose the taxonomy by registering it to show in GraphQL. This may be good to add to the plugin documentation for others:
function register_media_tag_graphql()
{
register_taxonomy('media_tag', 'attachment', array(
'show_in_graphql' => true,
'graphql_single_name' => 'MediaTag',
'graphql_plural_name' => 'MediaTags',
));
}
add_action('init', 'register_media_tag_graphql');
Now I can query the tags from the taxoPress taxonomy:
query MediaTags {
mediaTags {
nodes {
databaseId
name
slug
taxonomyName
}
}
}
// returns:
{
"data": {
"mediaTags": {
"nodes": [
{
"databaseId": 7,
"name": "los angeles",
"slug": "los-angeles",
"taxonomyName": "media_tag"
},
{
"databaseId": 6,
"name": "toronto",
"slug": "toronto",
"taxonomyName": "media_tag"
}
]
}
},
}
]]>
Hello,
Taxopress is not adding auto terms taxonomies, specifically categories, for scheduled posts even though the “add terms for unpublished content” is on. Please help
]]>Hi
Im getting error on product edit page when plugin is enabled. All latest versions of WP and Woo.
Uncaught TypeError: call_user_func(): Argument #1 ($callback) must be a valid callback, function "post_auto_andmed" not found or invalid function name in /www/apache/domains/www/htdocs/wp-admin/includes/template.php:1456
Stack trace:
#0 /www/apache/domains/www/htdocs/wp-admin/edit-form-advanced.php(716): do_meta_boxes(Object(WP_Screen), 'side', Object(WP_Post))
#1 /www/apache/domains/www/htdocs/wp-admin/post.php(206): require('/www/apache/dom...')
#2 {main}
thrown in /www/apache/domains/www/htdocs/wp-admin/includes/template.php on line 1456
]]>
Is there any way to add tag to every post in a specified category? I only found a feature to add tag to all posts.
It also needs to be smart enough to not add that tag a second time because some posts in that category already have them, and it needs to keep existing tags.
]]>SEMRush is telling me….
The Issue
When it comes to URL structure, using underscores as word separators is not recommended because search engines may not interpret them correctly and may consider them to be a part of a word. Using hyphens instead of underscores makes it easier for search engines to understand what your page is about.
Although using underscores doesn’t have a huge impact on webpage visibility, it decreases your page’s chances of appearing in search results, as opposed to when hyphens are used.
For more information, please see?this Google article
How to fix it
Replace underscores with hyphens. However, if your page ranks well, we do not recommend that you do this.
This plug in doesn’t let me use hyphens in the taxonomies. Can the plugin be updated to allow hyphens?
Warning: Undefined variable $default_featured_media in?/data/www/25398/365tipu_cz/www/wp-content/plugins/simple-tags/inc/class.client.related_posts.php?on line?347
This is interesting, it shows this error just for one post. This post has everything as other posts – tags (used for related posts), and has featured media. So i a really wonder, why this code triggers:
if (empty($post_thumbnail_url)) {
$post_thumbnail_url = $default_featured_media;
}
I can switch off and it diasppears.
“Default post thumb” is not actived in settings. A
Maybe you will be able to find the bug. If any help needed, i am here to answer any questions
Daniel
]]>I have been inserting AdSense codes with the DIVI code module, and it worked fine, which looks like this
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-1338370523106415"
crossorigin="anonymous"></script>
<ins class="adsbygoogle"
style="display:block; text-align:center;"
data-ad-layout="in-article"
data-ad-format="fluid"
data-ad-client="ca-pub-1338370523106415"
data-ad-slot="6466325132"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
The update of Taxopress v.3.24.0 ruined the display. Instead of showing the ad, it showed the code since “style=…”
style="display:block; text-align:center;" data-ad-layout="in-article" data-ad-format="fluid"
After some testing, I am sure the problem is caused by Taxopress 3.24.0, since it works when I roll back to 3.23.0.
]]>I have the TaxoPress plugin installed on my WordPress site (WordPress version 6.6.1), and the plugin was working fine until recently. But now suddenly I cannot login to my WordPress Admin dashboard due to warnings generated by TaxoPress. Instead of the usual login screen at wp-admin, I am seeing the following two warnings:
—
Warning: Cannot modify header information – headers already sent by (output started at /home/map.transpast.org/wp-content/plugins/simple-tags/inc/related-posts.php:1) in?/home/map.transpast.org/wp-includes/pluggable.php?on line?1435
Warning: Cannot modify header information – headers already sent by (output started at /home/map.transpast.org/wp-content/plugins/simple-tags/inc/related-posts.php:1) in?/home/map.transpast.org/wp-includes/pluggable.php?on line?1438
—
I only see these warnings on the wp-admin page, nothing else, no login fields, no buttons, no other text, no way to login to WordPress Admin dashboard. I have the Related Posts feature enabled in TaxoPress, and this warning seems connect to that feature, but I am not sure how to fix this problem.
I would appreciate any help resolving this.
My WordPress version is 6.6.1.
]]>I upgraded TaxoPress Pro today, and it has wreaked havoc on my site. It will not let me see my images in the media library or run Duplicator backups (it stops at 5% and holds) and causes white screens when trying to deactivate it. I went through the troubleshooting steps and found that TaxoPress Pro is indeed causing the issues. Please fix it, as I am a paying customer, but I cannot have it mess up things like the current update has.
]]>taxopress integration wpforo !!
]]>Edit bulck sub category
I want to select bulk sub category in a new taxonomy category like Categorie_2 and Categorie_3
https://shop.levanchimica.it/wp-content/uploads/2024/08/sub.png
]]>Display backend tag like category in checkbox
]]>Hello,
I’m trying the plugin and it seems to work as I need BUT, the archives pages seem broken with the last official WordPress template ??
https://www.sajou.be/vincent/jeuxdesociete/ink-it/
When I click on the amount of player, I arrive on that page https://www.sajou.be/vincent/nombre_de_joueurs/1/
Which should normally look like that https://www.sajou.be/vincent/categorie-produit/non-classe/
Do you plan to fix conformity of the CSS ?
Thank you ??
]]>Hi guys, I had to update my website PHP from 7.4 to 8.0 and I see that the compatibility checker shows some issues with your plugin, marking it as not compatible:
PHP 8.0 incompatibilities: FILE: vendor/sabre/vobject/lib/Recur/RRuleIterator.php FOUND 2 ERRORS AND 0 WARNINGS AFFECTING 2 LINES
358 | ERROR | Using an unparenthesized expression containing a “.” before a “+” or “-” has been deprecated in PHP 7.4 and removed in PHP 8.0
424 | ERROR | Using an unparenthesized expression containing a “.” before a “+” or “-” has been deprecated in PHP 7.4 and removed in PHP 8.0
Are you planning to make it compatible soon? I don’t know if the current state still work or it may give problems.
Thanks.
]]>Is there any option in Taxopress to change the order in which taxonomies (not terms) are displayed in the page or post quick edit screen? It seems like the order is random (not alphabetical).
With all the other options in TaxoPress, I would have thought this feature might be available…
Thx in advance
I’m a total newb who is trying to create a library of videos using WordPress. Each video will have its own dedicated page. I would like to be able to add tags and categories to each of these pages to make it possible to find all the videos on a certain topic by clicking on a tag; or lecturer by selecting that category from a drop down menu. Taxopress has allowed me to add tags to each page, but when I click on a tag beneath a video, or select a category from the drop down menu, I get a message saying that nothing was found. Even typing a tag into the search box as a search term fails to turn up any results.
My understating is that the core WordPress functionality doesn’t allow for searching pages for tags or categories. Doesn’t Taxopress add this functionality? Or is there something else I need to do? Thanks.
]]>Hi, we have bought the pro version of your excellent plugin to try to organize our business directory and be able to put the associated provinces and towns of Spain, what would be the best way? With the zip code? Thank you very much in advance.
]]>