c2cero
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Astra] Featured image not showing in blog postsDone ??
Forum: Themes and Templates
In reply to: [Astra] Featured image not showing in blog postsThank you Herman, that has been it! ??
Forum: Plugins
In reply to: [Titan Anti-spam & Security] Undefined indexSame for me.
I patched the line this way:
if ( isset($_POST[‘antspm-d’]) && (trim($_POST[‘antspm-d’]) != date(‘Y’)) ) { // …
This should do the job while the plugin gets fixed, at least your gets not filled with useless warnings
- This reply was modified 8 years, 6 months ago by c2cero.
By the way, that didn’t keep the plugin from working, but this should be addressed
Forum: Plugins
In reply to: [WP-PostRatings] Structured data testing tool errorsMe too, take a look a the errors of this page:
https://www.ciudadano2cero.com/aprender-programar-wordpress/
I don’t see the relationship with the theme of the site, it’s the article block generated by WP-Postratings
On the other hand, there are many other sites which have the same problem which. This is another site of mine that uses another theme and has the same problem:
https://www.hostingatope.com/optimizar-espacio-disco-hosting-wordpress/
Forum: Plugins
In reply to: [Copy or Move Comments] Wrong comment countSeems that the comment count gets mixed up sometimes by this and other plugins.
Found a nice Fix that worked fine for here:
Nevertheless you should fix this in your plugin.
Here the code of the post slightly modified by me since it was tied to a specific database name:
/* Query for checking before and after fixing posts/pages with wrong count */
SELECT wpp.id, wpp.post_title, wpp.comment_count, wpc.cnt
FROM wp_posts wpp
LEFT JOIN
(SELECT comment_post_id AS c_post_id, count(*) AS cnt FROM wp_comments
WHERE comment_approved = 1 GROUP BY comment_post_id) wpc
ON wpp.id=wpc.c_post_id
WHERE wpp.post_type IN (‘post’, ‘page’)
AND (wpp.comment_count!=wpc.cnt OR (wpp.comment_count != 0 AND wpc.cnt IS NULL));/* Query for actually fixing the count for all affected posts */
UPDATE wp_posts wpp
LEFT JOIN
(SELECT comment_post_id AS c_post_id, count(*) AS cnt FROM wp_comments
WHERE comment_approved = 1 GROUP BY comment_post_id) wpc
ON wpp.id=wpc.c_post_id
SET wpp.comment_count=wpc.cnt
WHERE wpp.post_type IN (‘post’, ‘page’)
AND (wpp.comment_count!=wpc.cnt OR (wpp.comment_count != 0 AND wpc.cnt IS NULL));Forum: Plugins
In reply to: [Yoast SEO] Yoast is the King of crap!Completly agree with you, it is incredible how buggy this plugin is ??
Ok, thank you. Since some days, things got back to normal again ??
Today stats are skyrocketing again, this is crazy ??
Did you find the issue?
Today stats seem back to normal ??
Cheers,
BertoHi Ryan,
I have not made mayor changes to the sites these days, the only changes are minor plugin updates.
Here is the list of my plugins (I have also sobre home-grown plugins which are not included but I haven’t changed them lately):
Advanced Responsive Video Embedder
Akismet
Anti-spam
Better WordPress Minify
Broken Link Checker
Comment Notifier
Comment Redirect by Yoast
Configure SMTP
Contact Form 7
Cookie Law Info
Crayon Syntax Highlighter
Fanciest Author Box
Hide Broken Shortcodes
ITRO Popup Plugin
Jetpack por WordPress.com
Lazy Load
Link shield
Members
Optimize Database after Deleting Revisions
P3 (Plugin Performance Profiler)
PageLines Googlefonts
Popular Posts Bars
Pretty Link Pro
Responsive Lightbox
Revive Old Post (Former Tweet Old Post)
SEO Smart Links
Table of Contents Plus
The New WordPress.com smileys
UpdraftPlus – Backup/Restore
Wordfence Security
WordPress SEO
WP-PostRatings
WP Sitemap Page
WP Smush
WP Super Cache
WP Twitter Enhancer
WP-Usuario-Avatar
Yet Another Related Posts PluginRegards,
BertoHi again,
Take also a look to this image, perhaps it may be helpful:
https://drive.google.com/file/d/0B3gA74uXfVMlcnNyN09RUmduZFU/view?usp=sharing
Cheers,
BertoHi Ryan,
I track my visits also with Google Analytics and there you can see the normal traffic figures.
Regards and thanks,
BertoHi again Jeremy, thank you so much!
It was a silly mistake of mine, I’m sorry for that ??
Since I’m using a page template I was searching the post by its title (which is coded in the templete itself, I’m simply testing it). I forgot that I didn’t use exactly the same title in the WordPress page, therefore I didn’t find the page on the stats.
Thank you again ??
See you,
BertoThank you again for your support ??
https://ciudadano2cero.com/curso-wordpress-online
Regards,
Berto