miroslav
Forum Replies Created
-
Forum: Installing WordPress
In reply to: Creating custom installation .zip fileThanks, Viper007Bond! ??
I am assuming this takes care of the pre-installed options — point b)1. in my initial post)
How about point b)2. (pre-defined options for plugins)? Is there any way to do this all at once, as opposed to setting up options for each plugin separately? Also, is it possible to have the plugins activated by default?
Forum: Fixing WordPress
In reply to: How to check if Page exists?Last bump… ??
Nobody knows the answer to this question???
Forum: Plugins
In reply to: Pull Subscribe2 code to the sidebar – Help Please!I am going to give it a try and report back.
Worked fine! Thanks, Matty! ??
Forum: Plugins
In reply to: Show Subscribe2 form in the sidebarRegarding…
b. You can plead with Matty to tell you how to put Subscribe2 in your sidebar without widgetizing or changing your current theme.
See this thread.
Forum: Plugins
In reply to: Pull Subscribe2 code to the sidebar – Help Please!FYI, Matty just posted the non-widget Subscribe2 solution to his blog.
Here’s the code he recommends:
$content = apply_filters('the_content', '<!--subscribe2-->
');
echo $content;I am going to give it a try and report back.
Forum: Fixing WordPress
In reply to: How to check if Page exists?Bump ??
Forum: Fixing WordPress
In reply to: How to check if Page exists?Thanks, TwoMotifs, but that’s not what I need (at least, I think it’s not).
I don’t want to serve template-specific content based on the template file being called (which is what
is_page()
would be useful for)…Instead, I want to insert contents of a particular Page in my template file using
query_posts()
, provided that the Page exists in the database. If the Page doesn’t exist, I want to serve the template without the ‘query_posts()’. Along the lines of…1. Does the page ‘pagename’ exist?
2. If yes, run template withquery_posts()
.
3. If not, run template withoutquery_posts()
.Anybody?
Forum: Plugins
In reply to: Pull Subscribe2 code to the sidebar – Help Please!Matty, your poll results seem to be quite unanimous in wanting also the non-widgetized version. Do you have any plans to release it (supported or not)?
Forum: Plugins
In reply to: Show Subscribe2 form in the sidebarIf you have a widgets-enabled theme…
1. Install and activate the widgets plugin.
2. Install and activate the Subscribe2Widgets plugin.
3. Go to your WP admin panel: Presentation > Sidebar Widgets
4. Drag and drop the Subscribe2Widget box to your sidebar, as per instructions on the page (and/or info accompanying the above two plugins).
If you don’t have a widgets-enbled theme…
a. You can modify your theme to work with widgets, or…
b. You can plead with Matty to tell you how to put Subscribe2 in your sidebar without widgetizing or changing your current theme.
Hope this helps!
Forum: Plugins
In reply to: Sideblog Plugin – formatting questionI emailed Kates directly and he was kind enough to reply:
use %url%%F% %j%, %Y%%url%.
For other date format go to https://www.php.net/date.
You can omit the %url% tags if you don’t want it to be a link.Forum: Plugins
In reply to: Sideblog Plugin – formatting questionAnybody?
Forum: Fixing WordPress
In reply to: Widgetizing Theme: Multiple sidebars?@dave: Most likely you have an extra space between “?” and “php”. There should be none.
<? php
= wrong
<?php
= correctHope this helps!
Forum: Themes and Templates
In reply to: Load time vs. template filesGood points, whooami! Thanks! ??
Forum: Fixing WordPress
In reply to: Floating Inline Images with Multiple Paragraphsoption 1 is bloated, you dont need the surrounding div. I float images left and right ALL of the time with no <div>.
Yes, floating images without the surrounding div should work, in theory. However, there are browser compatibility issues involved here and it also depends on the structure of your theme’s style sheet. While not a purist’s choice, a surrounding div is definitely the safe way.
Forum: Themes and Templates
In reply to: Load time vs. template filesSo, it doesn’t take more time to asseble a page from more template files as opposed to putting it together from one template file?
Also, is there a difference (in load time) between the default WP template files (index.php, archive.php, etc.) and custom template files (called via php includes)?