boryanka
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Product gallery images do not show after upgradeThanks for the reply. Yes, this happens with the default theme too. There was no message to update the database.
And unfortunately, bulk edit does not help. I guess I would have to re-save manually.
Thanks, wfasa.
It gets stuck in a loop, yes – not trying to save options, but actually saving them, millions of times.
I just sent you the report by email and mentioned my username, I hope the report will give some insight if this is a bug or server setting issue.
I will be waiting for your reply.
ThanksYes, my db user has full privileges.
Here is what happened right when I installed the plugin again to check the Diagnostics page:
– no single plugin option could be changed – I wanted to just add my email for alerts and then stop live traffic logging and automated scans, because these are the options that I suspect may be causing this behaviour. I tried to edit this options in the moment I activated the plugin, with no success. What I kept seeing was “Wordfence is working”…
– wfConfig table had started increasing again, 2 minutes after install
– I was unable to stop this by any means, I could not even deactivate the plugin.I was quite happy with your plugin and I would like to continue using it. Please, help me identify the issue.
Thanks so much for your time. Actually, I was talking about this screen – in the page itself, where the box to link to other pages within the site appears:
Forum: Fixing WordPress
In reply to: Lost home pageDoes this theme have an options pane? If yes, check if there is a place for home page boxes in the options.
If not… Copy the following text (this is part of the text in your left box):
Our services include the Supply, Installation, Service & Repairs of all electrical systemsThen go to your admin, go to Pages, and paste the copied text in the search field in the top right hand corner. WordPress will search not only titles of pages, but also their content.
If there is no result, try searching in Posts.
Again if no result, this text may be entered in a custom field – open any page and look under the content you have custom fields pane. I am afraid you will have to check all pages manually for this.
If no result after this, you will have to check your site’s php template. As Navjot Singh said:
under your theme directory: home.php or index.php or front-page.php under wp-content/themes/Architect directory.
Forum: Fixing WordPress
In reply to: Featured Content – limit postsI think you must have an option in wp-admin (somewhere in the theme custom options) to set the number of posts, please look again.
Forum: Fixing WordPress
In reply to: older and newer entries links url is wrongI would remove the first line in the index.php template.
This one:
<?php query_posts("posts_per_page=1") ?>
After that, try setting the number of posts in wp-admin > settings > reading > Blog pages show at most… to 1
Forum: Fixing WordPress
In reply to: older and newer entries links url is wrongplus a double slash
yoursite.com//blog
Forum: Fixing WordPress
In reply to: older and newer entries links url is wrongIt seems correct.
Please, check in wp-admin under Settings > General,what are your settings for:
– WordPress address (URL)
and
– Site address (URL)Forum: Fixing WordPress
In reply to: older and newer entries links url is wrongcan you paste the php code from the template file, please? only the code for the next and previous links…
Forum: Fixing WordPress
In reply to: Lost home pageThis is not a page as a ‘regular page’.
You have all different kinds of content on your home page. You have your recent posts listed in the bottom right corner. ‘Commercial’, ‘Residential’ may be categories of posts, or they maybe hard-coded in the template file index.php.
What exactly do you want to change?
Forum: Fixing WordPress
In reply to: wp_query, offset and pagination give an extra (last) empty pageActually I was able to solve this on my own but it was kind of a compromise.
I took the ID of the featured post, and then in the loop I added the following line:
if( $post->ID == $exclude_id ) continue;
No custom functions, no post limit, just one line. The only thing is in the first page, I now have 1 post less than the setting in wp-admin, but this is so tolerable. Pagination works excellent.
I will look into your code, thanks much for replying.
Forum: Fixing WordPress
In reply to: wp_query, offset and pagination give an extra (last) empty pageThis code is in my index.php:
https://pastebin.com/DiwFRc3C