Results 1 to 7 of 7

Thread: Annoying permalink

  1. #1
    Join Date
    Feb 2009
    Posts
    50
    Thanks
    12
    Thanked 0 Times in 0 Posts

    Default Annoying permalink

    On this site I'm working on: http://www.mcg-blog.com/

    Beneath the header entitled "Articles" there is a small red vertical box above the text. It is a link, I'm pretty sure it's permalink. I'm having an issue getting rid of it. This site is run on Wordpress and I'm trying to figure what file this is located in and how to get rid of it.

    Thanks

  2. #2
    Join Date
    Mar 2006
    Location
    Illinois, USA
    Posts
    12,164
    Thanks
    265
    Thanked 690 Times in 678 Posts

    Default

    Have you looked at your template file for wordpress? I don't know wordpress that well, but for most systems like that the final place for handling that type of link is in the template file. Note that you may not be looking for "Articles" specifically, but some vaguely-named parameter/variable that is output at that point. View the source code for your page and use the HTML to locate the section in the template. For example find an identifying class name. Then you'll find some reference to a set of links and one of those is probably Articles. It might be complex to remove it (depending on your level of PHP knowledge), but it's possible.
    It's hard to guess what it'll look like. For example, since there are a few links it might be in a loop where all 4 of those are generated so none of them is reference specifically, but rather through that loop. But you'd still be able to do something about it.

    And of course before you start changing the code too much, remember that you might be able to find some controls for this in the configuration for wordpress. It's got a lot of options for customization, so try there first.

    Also, if you do want specific help with this type of question (related to a specific piece of software) the best help will be available at the support forums for the product. Here we can help, but our knowledge is with PHP in general and whatever random experience any of us may have with the software. Wordpress is common enough someone may know it, but there's certainly no guarantee.
    Daniel - Freelance Web Design | <?php?> | <html>| español | Deutsch | italiano | português | català | un peu de français | some knowledge of several other languages: I can sometimes help translate here on DD | Linguistics Forum

  3. #3
    Join Date
    Nov 2006
    Location
    chertsey, a small town 25 miles south west of london, england.
    Posts
    1,920
    Thanks
    2
    Thanked 267 Times in 262 Posts

    Default

    Hi there sparklingsky,

    the cause of your problem is highlighted here...
    Code:
    
    <div class="jla-post-item-entry">
    <a href="http://www.mcg-blog.com/2009/12/quantitative-virtual-reality/"><img class="header" src="http://www.mcg-blog.com/wp-content/themes/minimax/functions/thumb/thumb.php?src=http://minimaxblog.com/wp-content/uploads/2009/11/MATLAB.JPG&amp;w=115&amp;h=115&amp;zc=1" alt=""></a>
    <h3><a href="http://www.mcg-blog.com/2009/12/quantitative-virtual-reality/">Quantitative Virtual Reality</a></h3>
    
    It's removal is the cure.

    Also note that your page has 37 coding errors that require your attention...


    coothead

  4. #4
    Join Date
    Mar 2006
    Location
    Illinois, USA
    Posts
    12,164
    Thanks
    265
    Thanked 690 Times in 678 Posts

    Default

    coothead, looks like we posted at the same time.

    That looks correct, but do you know if that link is directly in the source code or if it is generated by PHP in a non-transparent way? Removing it might be difficult if so...
    Daniel - Freelance Web Design | <?php?> | <html>| español | Deutsch | italiano | português | català | un peu de français | some knowledge of several other languages: I can sometimes help translate here on DD | Linguistics Forum

  5. #5
    Join Date
    Nov 2006
    Location
    chertsey, a small town 25 miles south west of london, england.
    Posts
    1,920
    Thanks
    2
    Thanked 267 Times in 262 Posts

    Default

    Hi there djr33,

    I found the problem directly from the "Source Code".
    Further the img src in the link returned a "File Not Found" warning.

    coothead

  6. #6
    Join Date
    Nov 2006
    Location
    chertsey, a small town 25 miles south west of london, england.
    Posts
    1,920
    Thanks
    2
    Thanked 267 Times in 262 Posts

    Default

    Hi there sparklingsky

    you may, alternatively just want to replace the "dead img src", that I mentioned, with this one...
    Code:
    http://www.mcg-blog.com/wp-content/themes/minimax/images/thumbnail.jpg
    coothead

  7. #7
    Join Date
    Oct 2009
    Posts
    845
    Thanks
    14
    Thanked 189 Times in 188 Posts

    Default

    Hi sparklingsky
    the link is generated by php in wordpress from the mysql database. It refers to a thumbnailphoto on the taget page ( post) that must have been uploaded before. I would guess that if you go in the post editor in the wordpress backend and open the post "Quantitative Virtual Reality" you might find reference to that thumbnail/image here (matlab.jpg) and maybe you can just delete it there. I see the same problem on many other of your posts (Gambler’s Fallacy etc). It seems like images have been uploaded to the posts earlier and then later deleted from the media library but without removing the reference in the post. Just my guess

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •