rockson
Forum Replies Created
-
Forum: Plugins
In reply to: Linkedin Profile Badge on User Profiles.I figured it out.
I uploaded a copy of the “linkedin” profile badge I wanted, created a filed for the Linkedin url to my profile, and used the following code to create the “link”
if($wpum_linkedinurl != ” && $wpum_linkedinurl != ‘https://’)
$output .= “<p><img src= https://centralohioreo.com/images/li.gif></p>”;each author now has a custom link to their linkedin profile!
Forum: Plugins
In reply to: Linkedin Profile Badge on User Profiles.Forum: Fixing WordPress
In reply to: How do I get rid of double link in header navigation?That did it!!!! Thank you very much!!!!!!
Now I just need to learn why I needed to do that!!!
Thanks again!
Forum: Plugins
In reply to: Looking for workaround to pull 3 plugins together for author profile page..Michael,
https://www.likoma.com/extended-profile/ is excatly what I want to do, however I guess I am not following how he combined them all together and how and what he named his files and where the are placed in the directory.
I guess I have a bit of studying to do.
Forum: Fixing WordPress
In reply to: Author.php. I am not getting something!Found a theme that fixed it for me.
Forum: Plugins
In reply to: Add a 2nd database to the same blog.There will be multi users with this blog making post, on top of that we are in the same field (real estate). We want to be able to aggragete or listings (having them agent branded) in to our blog w/out them going in to our “main” blog site (blog 1). Tyring to figure the best way to do this.
I am going to try MU though.
Thanks
Forum: Fixing WordPress
In reply to: I have no RSS Feed publishedThis is the code from the permalink. Do you think it would hurt if if I removed the bold section?
<?php
/*
* Copyright (c) Yahoo! Inc. 2005. All Rights Reserved.
*
* This file is part of Yahoo Permalink Plugin. The Yahoo Permalink Plugin
* is free software; you can redistribute it and/or modify it under the terms
* of the GNU General Public License as published by the Free Software
* Foundation under version 2 of the License, and no other version. The Yahoo
* Permalink plugin is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with the Yahoo Permalink plugin; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
*//*
Plugin Name: Customizable Permalinks
Plugin URI: https://smallbusiness.yahoo.com/webhosting/
Description: Help drive and retain traffic to your site with the Customizable Permalinks plug-in, which enables you to give your readers easily understandable, static web addresses (URLs) for your pages. Customized permalinks make it easier for your readers to bookmark and share your blog posts.
Author: Yahoo! Web Hosting
Version: 1.0
Author URI: https://smallbusiness.yahoo.com/webhosting/
*/function update_permalink_file() {
if (isset($_POST[‘permalink_structure’]) ) {
if(empty($_POST[‘permalink_structure’]) ) {
unlink(get_home_path() . ‘.plink’);
} else {
touch(get_home_path() . ‘.plink’);
}
}if(strcmp($_GET[‘deactivate’],”true”)==0){
unlink(get_home_path() . ‘.plink’);
} else if(strcmp($_GET[‘activate’],”true”)==0){
touch(get_home_path() . ‘.plink’);
}
unlink(get_home_path() . ‘.htaccess’);
}// Now we set that function up to execute when the admin_footer action is called
add_filter(‘mod_rewrite_rules’, ‘update_permalink_file’);
add_action(‘mod_rewrite_rules’, ‘update_permalink_file’);
// Disables canonical permalinks from WP 2.3+
remove_filter(‘template_redirect’, ‘redirect_canonical’);
?>Forum: Fixing WordPress
In reply to: I have no RSS Feed publishedDo you recomend another permalink plugin?
Forum: Fixing WordPress
In reply to: I have no RSS Feed publishedYes, i deactivated my plugins, the problem is with the Customizable permalinks by yahoo webhosting.
Do I need permalinks and if I do, how do I go about fixing the prolem or is there another plugin I should load?
BTW, than you very much Moshu!!!!! Thisis the farthest I have got in a weekend, and the reason I dropped movable type!
Forum: Fixing WordPress
In reply to: I have no RSS Feed publishedI missed the “deactivate all plugins” at the bottom!
Forum: Fixing WordPress
In reply to: I have no RSS Feed publishedahhh I see what you mean with the pulgins. Duh!!!
Checkign them, thanks again!
Forum: Fixing WordPress
In reply to: I have no RSS Feed publishedMoshu, thank you. I have gone through and recieved the following information: Solution
Check your wp-rss2.php and wp-atom.php files for blank lines outside of <? and ?> bracketed sections.
Check your wp-config.php file for blank lines outside of <? and ?> bracketed sections.
Check your theme’s functions.php file for blank lines outside of <? and ?> bracketed sections.
One by one, disable plugins and revalidate until you isolate the one causing the problem.I have aliviated these lines and it still does not do the trick. Now I have to go through 1 by 1 of my plugins.
How do I tell which ones are plugins and which are not?
As well, I tried going through firefox and recieved this message.
XML Parsing Error: xml declaration not at start of external entity
Location: https://vanbrimmer.com/rocky/feed/
Line Number 2, Column 1:<?xml version=”1.0″ encoding=”UTF-8″?>
^Does this mean anything?
Thanks for your help!!!
Forum: Fixing WordPress
In reply to: I have no RSS Feed publishedWhen I click on the “Orange gizmo” as you put it, I get “Internet explorer cannot display this feed. This feed contains code errors”
Then it tells me to go back to the preivous page.
My expert analyisis is telling me that I have something jacked up or not installed correctly. The question is, what is it or how do I fix it?
Any ideas?