momodulor
Forum Replies Created
-
Forum: Networking WordPress
In reply to: How to change the name in the email IDIf somebody registers his account – this person gets an e-mail from “WordPress”. I mean that WordPress is sender, which is not good. It was working good without multisite setup. I used Theme myLogin plugin. But now WordPress is sender. Do you know which file is generate the administrative emails.
Thanks
Forum: Networking WordPress
In reply to: Heading Links from Second Blog Follow to Wrong URLHi Andrea,
I just did what I described in previous post and everything began to work.Thank you very much for your support!
Forum: Networking WordPress
In reply to: Heading Links from Second Blog Follow to Wrong URLIt is possible to solve this problem this way:
1. create a copy of the current theme with different name
2. install the “new theme”
3. activate it for the second blognow permalink has whole path
WordPress has been updated to 3.0.3
Forum: Networking WordPress
In reply to: Heading Links from Second Blog Follow to Wrong URLThanks for your help and Happy New Year!
New year brought a decision to my problem:
I found when I use default theme – everything is working well. So it seems to me that free theme “Simplo” does not work with multisite installation correctlythere was the problem!
Cheers
Forum: Networking WordPress
In reply to: Heading Links from Second Blog Follow to Wrong URLpermalinks set to default. I reset it to the “Day and name” – same result. I resaved it to default the same thing again… If you can read htaccess (in the beginning of this post) may be in this file something wrong?
Thanks for quick response!
Forum: Networking WordPress
In reply to: Heading Links from Second Blog Follow to Wrong URLHi,
1.I deactivated all my plugins
2.I added new static page for the posts
3.I created home page for the second blog
4.I moved to trash all previous posts from second blog then I created new one.Result is absolutely the same – broken link to nowhere. (the middle part of the path just disappeared. I mean, the full path to the post is: example.com/subfolder/?p### but after publishing the link follows to example.com/?p### which does not exist)
What do you think about it?
Forum: Networking WordPress
In reply to: Heading Links from Second Blog Follow to Wrong URLHOW are you “installing” another subfolder site?
Sorry for terminology… I actually add it
You don’t have WordPress installed in a folder called updates while you have it ‘acting’ like it’s in the root of your site, right?
WordPress is installed in htdocs/sitename this is not an updates folder
Thanks to all,
I asked php coder – he wrote me couple lines of code to place the different text to the different blogs:
<div class="postItem"> <?php $parent_title = get_the_title($post->post_parent); ?> <div class="categs"><?php if(($parent_title!="PostName#1")&&($parent_title!="PostName#2") ) the_category(', ') ?></div> <div class="meta"> <div><?php if(($parent_title!="PostName#1")&&($parent_title!="PostName#2") ) the_time('M j, Y'); ?></div> <div class="icoAuthor"><?php if(($parent_title!="PostName#1")&&($parent_title!="PostName#2") ) the_author_link(); ?></div> <div class="icoComments"><?php if(($parent_title!="PostName#1")&&($parent_title!="PostName#2") ) comments_popup_link('No Comments', '1 Comment ', '% Comments'); ?></div> </div> <h1><a href="<?php if(($parent_title!="PostName#1")&&($parent_title!="PostName#2") ) the_permalink(); ?>"><?php if(($parent_title!="PostName#1")&&($parent_title!="PostName#2") ) the_title(); ?></a></h1> <?php the_content(__('Continue reading »')); ?> </div>
Have a good one!
Forum: Networking WordPress
In reply to: Heading Links from Second Blog Follow to Wrong URLI changed the main blog permalink to default.
But anyway, on the second blog site (subfolder) I have the post with permalink: https://bflip.ca/communitydiscussion/?p=32 but on blog page this permalink is changed to broken link https://bflip.ca/?p=32 I do not understand how is that possible.
I installed another subfolder site – the same problemForum: Networking WordPress
In reply to: Heading Links from Second Blog Follow to Wrong URLsorry, I did not removed /blog/ from my permalink I just did not copy whole structure for main site:
/blog/%postname%/do you still recommend me to change it?
thanks
Forum: Networking WordPress
In reply to: Heading Links from Second Blog Follow to Wrong URLI checked all you wrote except htaccess
here is link to the site:
main blog is:
https://bflip.ca/updates/
permalinks on this site: %postname%blog on subfolder site is:
https://bflip.ca/communitydiscussion/community-discussion/
permalink here is day and name: /%year%/%monthnum%/%day%/%postname%/my htaccess is:
# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] # uploaded files RewriteRule ^([_0-9a-zA-Z-]+/)?files/(.+) wp-includes/ms-files.php?file=$2 [L] # add a trailing slash to /wp-admin RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L] RewriteCond %{REQUEST_FILENAME} -f [OR] RewriteCond %{REQUEST_FILENAME} -d RewriteRule ^ - [L] RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-(content|admin|includes).*) $2 [L] RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L] RewriteRule . index.php [L] </IfModule> # END WordPress
thanks
Thanks for this link.
I did read it thoroughly but I still do not understand how the
“call for the normal page loop”
looks like…
Thanks, Ipstenu,
I am not a really php code person I am a graphic designer. I can read some code but I am not able to write it by myself. I use for both blogs static pages. I tried to change the template for second blog – but it does not work. It seems to me wordpress use only index.php for the posts pages, am I right?
I would prefer to have an opportunity to change this static text in wordpress editor. Because this is not my site, this is a site for local community and if I move from this area people should have an opportunity to change it without me (from Dashboard).
Could it be possible to ask you about some details you wrote:
if you use a static page, you can put in a call to the loop above it and customize the page on the admin end. That is, have the page itself hold ONLY the part you want customized, and the page template have the rest, with a call to the loop to pull in the customization.
But actually I did not understand what it means, sorry about this…