benny Vasquez
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Swell Lite] php syntax errorThat did it. It’s annoying, because I like to keep things up to date, but at least it’s working again.
Forum: Networking WordPress
In reply to: Change Domains Results in Redirect LoopI did this (for me it was from .net to .com) with some .htaccess love. So for you, this should work:
#redirect .net to .com RewriteEngine On RewriteCond %{http_host} calvary-ministries\.com$ [NC] RewriteRule ^(.*)$ https://calvaryministries.com/$1 [R=301,NC,QSA,L]
Just add that to your .htaccess and give it a test
Forum: Fixing WordPress
In reply to: I am still struggling with blog@wpyogi Good catch. Those directions aren’t applicable at all!
Forum: Themes and Templates
In reply to: Widget Font SizeYou should be able to do that with CSS. Here’s a good, recent, discussion about one way to do it:
https://www.ads-software.com/support/topic/modifying-font-of-text-widget-in-custom-sidebar?replies=6
There might be one or two plugins that could help you accomplish that as well, if you aren’t familiar with adding code to your site.
Forum: Fixing WordPress
In reply to: I am still struggling with blogThe best way to ensure something is working is to test it. What emails are you expecting to work? You can add a blogroll by following these directions:
https://en.support.wordpress.com/blogroll/add-a-blogroll-link/
Based on you last post, though, I’m going to bet that you’re looking for people to add to that list, too, right? If that’s true, just do a google search for topics that you’re interested in along with the word ‘blog’, and you should be able to come up with a good list of people to start with.
Forum: Plugins
In reply to: [WooCommerce] How to purge old orders?I was able to figure this one out on my own. I mistakenly was thinking that it was counting a total number of sales. Zeroing out the total_sales column in the postmeta for the appropriate product corrected the problem.