Results 1 to 5 of 5

Trackback Template Modification

This is a discussion on Trackback Template Modification within the Template Modifications forums, part of the vBulletin SEO Discussion category; I'm trying to to modify the track back template in my vBulletin template. I did a search in the languages ...

  1. #1
    Member
    Join Date
    Dec 2005
    Posts
    40
    Liked
    0 times

    Trackback Template Modification

    I'm trying to to modify the track back template in my vBulletin template.

    I did a search in the languages and phrases and one phrase is called "vbseo_send_trackbacks_to". I did a template search and not a single template uses this code. Where could the template for this be?

    Thanks,

  2. #2
    vBSEO Staff Brian Cummiskey's Avatar
    Real Name
    Brian Cummiskey
    Join Date
    Jul 2009
    Location
    btwn NYC and Boston
    Posts
    12,789
    Liked
    657 times
    Blog Entries
    2
    There is a template group call vbseo. all the vbseo linkback templates are in there.

  3. #3
    Member
    Join Date
    Dec 2005
    Posts
    40
    Liked
    0 times
    Quote Originally Posted by Brian Cummiskey View Post
    There is a template group call vbseo. all the vbseo linkback templates are in there.
    I did a search for the key values in the template, the field set code and even the phrase names. 0 results. Also looked in that category you recommended, there are templates for linkback, none of which modify the LinkBack code found on the newreply template.

  4. #4
    vBSEO Staff Brian Cummiskey's Avatar
    Real Name
    Brian Cummiskey
    Join Date
    Jul 2009
    Location
    btwn NYC and Boston
    Posts
    12,789
    Liked
    657 times
    Blog Entries
    2
    I mis-read your question....

    These are hard-coded in the php files.

    assuming 3.5.1,

    around line 1030 of
    vbseo/includes/functions_vbseo_hook.php

    Code:
    if(VBSEO_VB4)
    {
    $vbseo_tracklegend = '
    <div class="blockrow">
    <label for="trackbackto">' . $vbphrase['vbseo_trackback'] . '</label>
    <input type="text" class="primary textbox" size="50" name="sendtrackbacks" value="' . $_REQUEST['sendtrackbacks'] . '" id="trackbackto" tabindex="1" />
    <p class="description">' . $vbphrase['vbseo_send_trackbacks_to'] . '</p>
    ' . $plist . '
    </div>
    ';
    }
    else
    {
    $vbseo_tracklegend = '
    <fieldset class="fieldset">
    <legend>' . $vbphrase['vbseo_trackback'] . '</legend>
    <div style="padding:' . $stylevar['formspacer'] . 'px">
    ' . $vbphrase['vbseo_send_trackbacks_to'] . ':
    <div><label for="trackbackto"><input type="text" class="bginput" size="50" name="sendtrackbacks" value="' . $_REQUEST['sendtrackbacks'] . '" id="trackbackto" tabindex="1" /></label> </div>
    ' . $plist . '
    </div>
    </fieldset>
    ';
    }
    you can make your changes there.

  5. #5
    Member
    Join Date
    Dec 2005
    Posts
    40
    Liked
    0 times
    Ah perfect. Thank you Brian.

Similar Threads

  1. Replies: 25
    Last Post: 03-03-2010, 02:23 PM
  2. 'What's Going On?' Modification
    By Martyn in forum Template Modifications
    Replies: 8
    Last Post: 07-12-2008, 08:39 PM
  3. Trackback link in custom postbit template
    By sinucello in forum General Discussion
    Replies: 6
    Last Post: 05-22-2008, 07:32 AM

Posting Permissions

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