Maria Daniel Deepak
Forum Replies Created
-
Forum: Plugins
In reply to: [Flamingo] Notification of ContactContact Form 7 sends a copy of the submitted form to the Admin by default. Are you looking to send another copy?
Forum: Plugins
In reply to: [Hide Title] Title hiding lateHey @rootsekoor,
The following plugin is a perfect fit for your use case.
https://github.com/RyanNutt/wordpress-hide-titleForum: Plugins
In reply to: [Contact Form 7] Decreasing counter, deactivate form?Looks like there is a plugin to achieve what you’re looking for.
Unfortunately it lives only in GitHub and not on www.remarpro.com plugin repo.
Forum: Plugins
In reply to: [Contact Form 7] Decreasing counter, deactivate form?Could you please let me know the use case or brief more on your intention?
Forum: Plugins
In reply to: [Contact Form 7] send fails on copy of siteI would suggest you to make sure that the test site host allows you to send emails. In other words, check your test hosts SMTP.
Forum: Plugins
In reply to: [Contact Form 7] UPPERCASE BackendCould you let me know the use case behind it?
Forum: Plugins
In reply to: [Email Log] fopen, fread, fclose warnings(1) Are you using Apache server?
(2) Also, could you share the existing file/folder permissions that you have set for files and folders under
wp-content/
directory.Forum: Plugins
In reply to: [SEO Slugs] This plugin uses the split() function, not compatible with PHP 7+I appreciate your efforts. Thanks for the reply. If the author doesn’t reply, I’ll fork the plugin and fix the issue.
Forum: Plugins
In reply to: [SEO Slugs] This plugin uses the split() function, not compatible with PHP 7+Have you tried contacting the developer?
Also, would you be interested in using a forked version of this plugin if that solves your issue?
Forum: Fixing WordPress
In reply to: Slow database queries on archiveYou can simply remove that function from your query. But before doing that, just check if you can find the
SELECT FOUND_ROWS();
query. If yes, you have to replace that withSELECT COUNT(*) FROM your_table WHERE your_filters
SELECT wp_posts.ID FROM wp_posts LEFT JOIN wp_term_relationships ON (wp_posts.ID = wp_term_relationships.object_id) WHERE 1=1 AND ( wp_term_relationships.term_taxonomy_id IN (11) ) AND wp_posts.post_type = 'post' AND (wp_posts.post_status = 'publish' OR wp_posts.post_status = 'private') GROUP BY wp_posts.ID ORDER BY wp_posts.post_date DESC LIMIT 0, 10
Hope, this helps you.
- This reply was modified 7 years, 7 months ago by Maria Daniel Deepak. Reason: Fixed typo
Forum: Fixing WordPress
In reply to: Slow database queries on archiveThe reason why your page slows down is because of the function
SQL_CALC_FOUND_ROWS
. This function fetches the values from all the rows returned and that slows down your website, as far as my knowledge.If you do not have a specific use of the total number of rows, you should remove it. If you still need to know the total number of rows in
wp_posts
table (with the filters above), you should better be doingSELECT COUNT(*) FROM your_table
References:
https://stackoverflow.com/questions/3453809/how-to-use-mysql-found-rows-in-php
https://dev.mysql.com/doc/refman/5.7/en/information-functions.htmlForum: Fixing WordPress
In reply to: Wamp server- trying to host a blogsite locallyAre you able to browse
https://localhost/
orhttps://localhost:8009/
?
The above URL should serve theIndex
file located in yourc:\wamp\www
Forum: Fixing WordPress
In reply to: New posts not appearing on front pageI just visited the site and the post appears on the front page. Kindly check and close the ticket.
Forum: Fixing WordPress
In reply to: wp-config problemsHello David,
Glad I was able to help.