• I have a community blog and the permalink is not pointint to their sub blog. Instead it is pointing to the main blog.

    The code being used is:

    $txt = str_replace('{title}', '<a href="' .get_blog_permalink($post["blog_id"], $post["id"]).'">'.$p->post_title.'</a>' , $txt);
    			$txt = str_replace('{more}', '<a href="' .get_blog_permalink($post["blog_id"], $post["id"]).'">'.$wgt_mtext.'</a>' , $txt);
    			$txt = str_replace('{title_txt}', $p->post_title , $txt);
    			$txt = str_replace('{date}', date_i18n($wgt_dt, strtotime($p->post_date)), $txt);
    			$txt = str_replace('{excerpt}', $ex , $txt);
    			$txt = str_replace('{author}', get_userdata($p->post_author)->nickname, $txt);
    			$txt = str_replace('{avatar}', $av , $txt);
    			$txt = str_replace('{blog}', get_blog_option($post["blog_id"], 'blogname') , $txt);

    Example:
    sublog.mainblog.com/posttoday

    is going to mainblog.com/posttoday

    When clicked there is no content, because there is no such post on the mainblog.

    Thanks in advance.

Viewing 13 replies - 1 through 13 (of 13 total)
  • Are you perchance using an Artseer theme?

    Thread Starter tfblog

    (@tfblog)

    No, I’m using a wpmu theme.

    The website is http://thefertilityblogs.com

    If you go over to this page, you’ll see what I mean:
    http://thefertilityblogs.com/categories/members-recent-posts/

    Moderator Ipstenu (Mika Epstein)

    (@ipstenu)

    🏳️‍🌈 Advisor and Activist

    Your site is really slow. I mean REALLY slow.

    Your theme is a premium theme from http://premium.wpmudev.org

    You’ll need to talk to them for help with it.

    Thread Starter tfblog

    (@tfblog)

    I realize it is slow, my server is having technical problems today.

    Is there anything in the above code you can spot that would be an issue?

    Moderator Ipstenu (Mika Epstein)

    (@ipstenu)

    🏳️‍🌈 Advisor and Activist

    No, but that’s in part because I can’t see your WHOLE theme. I’m not paying for it, so I have no access to the source code. When you purchase a theme, you go to them for support 🙂 They’re supposed to know how to help you.

    Thread Starter tfblog

    (@tfblog)

    It is actually because of a plugin. All other plugins have worked just fine.

    I tried getting support through the plugin forum directly but the request has been ignored. I tried here hoping someone would have a word of advice.

    Moderator Ipstenu (Mika Epstein)

    (@ipstenu)

    🏳️‍🌈 Advisor and Activist

    It is actually because of a plugin. All other plugins have worked just fine.

    You could have said THAT in the beginning you know. 🙂 What plugin? LINK to it, please, as a lot have similar names, and I don’t care to waste time trying to guess.

    Thread Starter tfblog

    (@tfblog)

    http://thefertilityblogs.com/categories/members-recent-posts/ is the page where the plugin appears.

    Diamond MultiSite Plugin is the culprit:
    http://wordpress.org/extend/plugins/diamond-multisite-widgets/

    The portion of the code I think is responsible is in the original section of this thread. If you need more info, just let me know

    Thanks.

    Thread Starter tfblog

    (@tfblog)

    @ipstenu

    I provided the information you had asked for. Any suggestions?

    Moderator Ipstenu (Mika Epstein)

    (@ipstenu)

    🏳️‍🌈 Advisor and Activist

    Yes – Be patient 😉 Andrea and I both have real jobs and lives, and often take weekends off volunteer work.

    Step 1) Ask at wpmudev if they already know of conflicts between their theme and the plugin.

    Step 2) Tag this post with ‘diamond-multisite-widgets’ so the plugin author gets alerted (I see that’s done)

    Knowing that the plugin works fine on the default theme I’m inclined to say it’s a theme/plugin conflict, which probably means the theme is calling things in a way unexpected to the plugin.

    Quick test: revert to twentyten, turn all all plugins *except* for this one. Does it work?

    I had to modify the permalink returned by get_blog_permalink($post[“blog_id”], $post[“id”]) to work for my sub directory blog. Here is the change I made to diamond-recent-posts.php.

    //Code to create correct permalinks for sub directory multisite blogs
    $burl = get_blog_option($post["blog_id"], 'home');
    $permalink = str_replace('<em>input here your domain with the incorrect /blog</em>', $burl.'/', get_blog_permalink($post["blog_id"], $post["id"]));
    $txt = str_replace('{title}', '<a href="'.$permalink.'">'.$p->post_title.'</a>' , $txt);
    $txt = str_replace('{more}', '<a href="'.$permalink.'">'.$wgt_mtext.'</a>' , $txt);

    Thank you!

    Daniel

Viewing 13 replies - 1 through 13 (of 13 total)
  • The topic ‘Permalink not pointing to users sublog’ is closed to new replies.