sfrangos
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: 503: Service Temporarily UnavailableBUMP: Same problem now and host says it is a WP problem. Solutions?
Forum: Plugins
In reply to: [MaxRef-Widgets] MaxRef-Widget Broken in WPHello –
Thanks for the thorough reporting of your problem. We are going to review your list of problems, but I can tell you that we have MaxRef loaded and running fine on about 25 WP 3.1.3 , installations of our own along with about 8 on WP version 3.2 with no problems at all.
It looks like you using XAMPP for Windows — correct? If so, this could be why we see no similar problems on any Linux based installations.
I will confer with our engineering team and report back.
Cheers –
Scott
Scott Frangos, CMS Developer & Optimizer
WebFadds.com – Optimize ? Connect ? ConvertForum: Plugins
In reply to: [Redirection] Redirection Problem after Permalink ChangeOddly, I turned Redirection back on and the problem came back, even though there are no redirections set for that specific page or URL with the problem.
So, if Redirection does not deal with permalinks, then I am thinking there must be something going on in the database. If you have any ideas about what we could check, that would be appreciated.
– Scott
Forum: Plugins
In reply to: [Redirection] Redirection Problem after Permalink ChangeThanks for the reply, John — I will review what you suggest and follow-up with what I find.
Hello Braekling and Colleagues –
We are looking at using your plugin also in a multi-site installation, and have the following questions:
- Where can we make a donation for your good development work?
- What are your future plans to test and update beyond “experimental” (beta?) for multi-site?
Thanks!
Scott
Forum: Themes and Templates
In reply to: Hooks and multiple loopsHi Andrew –
This Guide could help in a general sense: https://thematicmondo.com/2011/03/new-guide-understanding-thematic-hook-and-widget-locations/
You are right that there are both Thematic action hooks that relate to different locations in your child themes (see guide), and also WordPress hooks which are more extensive — see: https://codex.www.ads-software.com/Plugin_API/Action_Reference
You should also note that the range of what is possible is broad, limited only by the functions you write.
Lastly, as to your specific solution for adding a second loop — thanks for posting it. We sometimes use a query to pull content from a particular category — as in this example to get posts from category 13 and place them on the home page:
if (is_home()) {
query_posts( $query_string . '&cat=13&monthnum=' . date( 'n', current_time( 'timestamp' ) ) );
}
(from: https://codex.www.ads-software.com/Function_Reference/query_posts)Cheers –
Scott