Niwa
Forum Replies Created
-
Forum: Plugins
In reply to: [Pixel Caffeine] Mandatory Two-Factor Authentication Facebook???I would like to add – how do I turn this warning off? I already have 2FA and I would like to turn this notification off!
Forum: Plugins
In reply to: [The SEO Framework – Fast, Automated, Effortless.] Sitemap 404 errorI have indeed given up on trying to figure this out haha! I tried disabling plugins, resetting things, and just nothing works. I went ahead and did what you said about submitting the alt version and it seems to be working just fine now.
As always, thank you for your amazing support throughout the years!!!!
Forum: Plugins
In reply to: [The SEO Framework – Fast, Automated, Effortless.] Sitemap 404 errorHi ??
Thanks for helping me with this!!
I contacted my webhost and they’re trying to help me through those settings, so far nothing has resolved the issue.
I am using Cloudflare, any chance that’s having an issue with accessing the sitemap?
Forum: Plugins
In reply to: [Toolbelt] Move Related Posts BlockAwesome!!! Thank you so much ??
Forum: Plugins
In reply to: [The SEO Framework – Fast, Automated, Effortless.] SEO Options on Pages??Thank you for ALL your help Sybre!! Unfortunately it seems to have come down to a corrupted install or something. I did a fresh install on my site and it works now.
You went above and beyond to try to help me – I am a fan and supporter of your work now and forever!!!
Forum: Plugins
In reply to: [The SEO Framework – Fast, Automated, Effortless.] SEO Options on Pages??Hey there, thanks for the quick reply. I am using the Block editor, and Page SEO Settings is missing from the Advanced Panel! ?? I will disable plugins and see if I can find the culprit. ??
Edit – I have disabled all plugins ( I don’t have many) and it didn’t seem to fix the issue. Could it be theme related in any way??
Edit again – I just switched themes and nothing happens either. I don’t know what to do anymore ??
Hi Sybre,
Thanks so much for your follow up. It looks like the issue has been resolved! I ran a coverage issue report on their end to re-validate my site, and now I have 0 errors!! I guess they are just a bit behind in their reporting!
Thank you so much for your prompt reply to me though. Case solved ??
Forum: Fixing WordPress
In reply to: http to https – WP in Subfolder issuesRESOLVED
This is probably the dumbest solution but I figured out the issue. since I have the WordPress installation in a subfolder, I had some conflicting redirects in the .htaccess on the root directory.
I was not aware that the WordPress htaccess needed to be just in the folder and not on the root. Once I removed that from the root everything started working just fine.
- This reply was modified 8 years ago by Niwa.
Forum: Fixing WordPress
In reply to: http to https – WP in Subfolder issuesThanks for your reply. I have changed the code to this following that page:
RewriteEngine On RewriteCond %{HTTP_HOST} ^grandcanyonplanning\.com [NC] RewriteCond %{SERVER_PORT} 80 RewriteRule ^(.*)$ https://grandcanyonplanning/$1 [R,L] # BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPress
and I am still having the same issue.
Forum: Fixing WordPress
In reply to: http to https – WP in Subfolder issuesI can’t seem to edit my previous post, but currently I have changed my code to be this:
RewriteEngine On RewriteCond %{HTTPS} off RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L] # BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPress
Feel free to look at the site to see it in action: https://www.grandcanyonplanning.com
The WEIRD thing is that when there is a child page such as https://grandcanyonplanning.com/services/estate-planning/
it redirects it to https://grandcanyonplanning.com/gcpa/services/estate-planning/ which is not valid (notice the gcpa/ subfolder appears)
but https://grandcanyonplanning.com/services/estate-planning/ works just fine!
Weirdly enough this only affects those child pages and I am not sure HOW to fix this!
- This reply was modified 8 years ago by Niwa.
I was looking to do the same thing, and figured out how to do it. Under the gallery-template.php file, locate this area:
$args = array( 'post_type' => 'gallery', 'post_status' => 'publish', 'orderby' => 'post_date', 'posts_per_page'=> $per_page, 'paged' => $paged );
I then changed the orderby to menu_order (which is affected by the page order) and then ordered it to descending (for my purposes). It now looks like this:
$args = array( 'post_type' => 'gallery', 'post_status' => 'publish', 'orderby' => 'menu_order', 'order' => 'desc', 'posts_per_page' => $per_page, 'paged' => $paged );
Give that a shot!
Forum: Plugins
In reply to: [Front End Users] How can I edit user profile?Here is a link to mine, having the same issue: https://thewordonwealth.net/gcpatest/
I have username test with password test setup.
Forum: Plugins
In reply to: [Google Bookshelves] Grid ThumbnailsI figured it out – was looking at the wrong CSS code ??
Forum: Fixing WordPress
In reply to: Display 5 posts on front page, 6 on the restUpdate:
So I found this code on a website:
add_action( 'pre_get_posts', 'set_posts_per_page' ); function set_posts_per_page( $query ) { global $wp_the_query; if ( ( $query === $wp_the_query ) && ( $query->is_search() ) ) { $query->set( 'posts_per_page', 6 ); } elseif ( ( $query === $wp_the_query ) && ( $query->is_archive() ) ) { $query->set( 'posts_per_page', 5 ); } // Etc.. return $query; }
I used it on my site, and it works for the search page. I am just not sure how to write in “if not on the home page” portion.
Thank you!!
You are a genius! ?? I never knew the importance of WP_Footer until now. Thank you again for your help (and it probably explains why none of the other scripts were ever working) ??