trman
Forum Replies Created
-
Forum: Plugins
In reply to: [Participants Database] Improve SEO for single record pageThanks.
Unfortunately writing custom code is is beyond my abilities.
Forum: Plugins
In reply to: [Participants Database] Sorting problemThanks Roland your email fixed my problem! I will post it here so others may see the solution to my sorting problem:
—begin Roland email—-
I see what’s going on… your results are on a different page and there is no search form on that page. The shortcode on the results page needs to have the search form so the search terms can be part of the form…that way, when the page is refreshed, the search terms will be used on the new sort. Also, you may want to use the “suppress” attribute to keep it from showing all the results if the page is visited directly.[pdb_list search=true sort=true suppress=true]
If you really want the search form to be hidden. you can try doing that with CSS or use a custom template that has the search fields as hidden inputs.
—end Roland email———Forum: Plugins
In reply to: [Participants Database] Sorting problemThank you I have sent you an email.
Forum: Plugins
In reply to: [Participants Database] Sorting problemYes it does refresh.
Forum: Plugins
In reply to: [Participants Database] Sorting problemThat solved part of the problem. When I click the next page link, it no longer gives 400 records. However it still shows all 400 records when I try to change the sort to something else.
Forum: Alpha/Beta/RC
In reply to: problem with a subdomain multisite installI have a 3.0beta multi site installed into the root of a domain and have both subdomain and some true domain sites mapped and it works.
My .htaccess is:
RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] # uploaded files RewriteRule ^files/(.+) wp-includes/ms-files.php?file=$1 [L] RewriteCond %{REQUEST_FILENAME} -f [OR] RewriteCond %{REQUEST_FILENAME} -d RewriteRule ^ - [L] RewriteRule . index.php [L]
and my other multi-site code from wp-config.php to correspond with the code you posted is
define( 'MULTISITE', true ); define( 'VHOST', 'yes' ); $base = '/'; define( 'DOMAIN_CURRENT_SITE', 'myactualdomain.com' ); define( 'PATH_CURRENT_SITE', '/' ); define( 'SITE_ID_CURRENT_SITE', 1 ); define( 'BLOG_ID_CURRENT_SITE', 1 );
I don’t have a clue what your problems is, but maybe something in the above will help you figure it out.
Forum: Fixing WordPress
In reply to: All in one SEO pack – how to display keywords?I also use All in one SEO and would like to pass the keywords to a RSS feed. Can you tell me the code for the function you placed in your templates function.php file?
I am able to pass the title to an RSS feed using the built in WP function the_title but have not been able to do so for the keywords.
Thanks in advance for any help you can give!
Forum: Plugins
In reply to: Pass page title to RSSThanks Zeo.
Now I see that I need to use the content of the meta keywords tag instead of the page title for this.
Is there a get_the_keywords function that works similar to get_the_title?
Forum: Plugins
In reply to: Pass page title to RSSre: Have you reviewed Customizing_Feeds?
Thank you for you reply but that is not what I am looking for.
That link has to do with customizing the feed FROM my blog.
I am looking to display RSS feeds ON my blog pages from other sources and to pass the page title of my blog page to the RSS feeds as a variable or “keywords” to use in retrieving the feed.
Using Yahoo news feed for example:
news.search.yahoo.com/news/rss?p=my+page+title
Forum: Alpha/Beta/RC
In reply to: Clone a blog?Andrea, thank you for your reply.
I did not make myself clear.
I am not trying to make it where the new blogs can not be changed. I am just trying to set up one blog with all customized settings I want and then be able to clone that one several times (except for content)
I did not want to edit the code because when I upgrade WP versions or template versions the changes would be wiped out.
I am using the Multi User feature of the 3.0 beta.