Recent content by WearableTechForums.com

  1. W

    XF 1.4 Add Breadcrumb Bit

    I am currently controlling the content of a page node via an included PHP file. The file generates many separate pages, via a string of variables at the end of the URL. Is it possible to add and control a final breadcrumb bit in the template, using my PHP file, or somehow using the node...
  2. W

    Error: Undefined Variable

    Line 341: $reviewSite = str_replace('.com', '', $URLparts[2]); // a search foreach($reviewSites) in $URLparts[2] would be more efficient Line 344: $reviewSiteName = $reviewSites[$reviewSite]; <?php // Build array of selections $getSelections=array()...
  3. W

    Error: Undefined Variable

    Okay, trying that. Thanks.
  4. W

    Error: Undefined Variable

    Line 345 is: $spec[$column] .= "<a class=\"specialButton sB00 sB-sm sB-block sB-left sB-marginTop review$reviewNum\" href=\"" . $reviewURL . "\" target=\"_blank\" rel=\"nofollow\"><i class=\"fa fa-external-link\"></i>&nbsp; " . $reviewSiteName . "</a>"; Which array do...
  5. W

    Error: Undefined Variable

    This may be the last one:
  6. W

    Error: Undefined Variable

    Ok, thanks. Resolved those issues. I'll clear the error log and see where we're at.
  7. W

    Similar Threads

    To update, can I simply overwrite the files? Thanks.
  8. W

    Error: Undefined Variable

    Thanks. I'll implement a couple changes and see what errors come back.
  9. W

    Error: Undefined Variable

    Happy New Year. <?php // Build array of selections $getSelections=array(); if($_SERVER['QUERY_STRING']!="") { $params = explode('&', $_SERVER['QUERY_STRING']); foreach ($params as $param) { $name_value = explode('=', $param); $name = $name_value[0]; $value =...
  10. W

    XF 1.4 Possible to Change Page Node <Title> Dynamically?

    Thanks! Based on the various instructions you've provided across the site, I was able to figure it out!
  11. W

    Error: Undefined Variable

    I'll try that, thanks. I have a bunch of these errors for various variables. Is there a reason I can't unset my own variables?
  12. W

    Error: Undefined Variable

    /libary/XenForo/Pages/Specs.php: <?php class XenForo_Pages_Specs { public static function includeFile(XenForo_ControllerPublic_Abstract $controller, XenForo_ControllerResponse_Abstract &$response) { ob_start(); require('/home3/jes269/public_html/pages/specs.php')...
Top Bottom