Jump to content

basicguy

Member
  • Posts

    5
  • Joined

  • Last visited

basicguy's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Still refuses to work for me... followed your tutorial to the letter but zip! I am assuming that where it states: {include file='templates/content.recaptcha.head.php'}that smarty will automatically know to search in, for example: skins\kurouto\templates ?
  2. Thank you for the assistance. I'm checking for the 'announcement' div which is the 'Welcoming Text' on the home page within the home page document... but am still not getting the correct result At the footer of main.php I include: test.js Contents: if ($(".announcement" ) ) { alert('does exist'); // Appears correctly //writeObjects(); // Script Starter } else { alert('does not exist'); } Have subsequently tried this with: content_homepage, home_wrapper, latest_product plus several others that ONLY appear on the home page and yet the 'Peel' Still appears on every page. Help!! I am a schmoe! Wrote the jQuery wrong! Should have been: if ($('#announcement').length > 0) { writeObjects(); } Note the two stoooopid errors! Thanks again for the help! All working now.
  3. Hi, I'm trying to place a 'Page Peel' script onto my website to advertise Sale Items - Got the 'Peel' working but the problem is, I only want it to appear on the 'Home' Page. I've tried adding a basic bit of PHP to determine the URL but I think that the 'HTTPS' combined with the '.htaccess' are preventing me getting the correct one, so my if/else script doesn't work. Can anyone assist?
  4. Followed the advice given here... still can't get the New Recaptcha (Google) to work. Any assistance gratefully accepted.
  5. Hi, I'm trying to adapt a new File Manager that I purchased in order to enhance functionality. The file manager requires that I set up an Auth function similar to the one below, can anyone give me help on this? function auth() { if(isset($_SESSION['authenticated']) && $_SESSION['user_type'] == 'admin') return true; else return false; }
×
×
  • Create New...